💰 Finance

Paycheck Calculator Rhode Island

Calculate Paycheck Calculator Rhode Island instantly with accurate financial formulas

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Paycheck Calculator Rhode Island
Net Pay Per Period
$0.00
Annual Net: $0.00
function calculate() { const grossAnnual = parseFloat(document.getElementById("i1").value) || 0; const payFreq = document.getElementById("i2").value; const fedAllow = parseInt(document.getElementById("i3").value) || 0; const addFed = parseFloat(document.getElementById("i4").value) || 0; const riAllow = parseInt(document.getElementById("i5").value) || 0; const addRI = parseFloat(document.getElementById("i6").value) || 0; const preTax = parseFloat(document.getElementById("i7").value) || 0; const postTax = parseFloat(document.getElementById("i8").value) || 0; if (grossAnnual <= 0) { document.getElementById("res-value").innerHTML = "Enter valid salary"; document.getElementById("res-sub").innerHTML = ""; document.getElementById("result-grid").innerHTML = ""; document.getElementById("breakdown-wrap").innerHTML = ""; return; } const periods = { weekly: 52, biweekly: 26, semimonthly: 24, monthly: 12 }; const pp = periods[payFreq]; const grossPerPeriod = grossAnnual / pp; // Federal tax calculation (simplified 2024 brackets for single filer, standard deduction ~$14,600) const stdDeduction = 14600; const fedTaxableAnnual = Math.max(0, grossAnnual - stdDeduction - (fedAllow * 4300)); let fedTaxAnnual = 0; if (fedTaxableAnnual > 0) { if (fedTaxableAnnual <= 11600) fedTaxAnnual = fedTaxableAnnual * 0.10; else if (fedTaxableAnnual <= 47150) fedTaxAnnual = 1160 + (fedTaxableAnnual - 11600) * 0.12; else if (fedTaxableAnnual <= 100525) fedTaxAnnual = 5426 + (fedTaxableAnnual - 47150) * 0.22; else if (fedTaxableAnnual <= 191950) fedTaxAnnual = 17168.50 + (fedTaxableAnnual - 100525) * 0.24; else if (fedTaxableAnnual <= 243725) fedTaxAnnual = 39110.50 + (fedTaxableAnnual - 191950) * 0.32; else if (fedTaxableAnnual <= 609350) fedTaxAnnual = 55678.50 + (fedTaxableAnnual - 243725) * 0.35; else fedTaxAnnual = 183647.25 + (fedTaxableAnnual - 609350) * 0.37; } const fedPerPeriod = (fedTaxAnnual / pp) + addFed; // Rhode Island state tax (2024 brackets: 3.75% on first $74,450, 4.75% on remainder for single) const riTaxableAnnual = Math.max(0, grossAnnual - (riAllow * 4000)); let riTaxAnnual = 0; if (riTaxableAnnual > 0) { if (riTaxableAnnual <= 74450) riTaxAnnual = riTaxableAnnual * 0.0375; else riTaxAnnual = 2791.875 + (riTaxableAnnual - 74450) * 0.0475; } const riPerPeriod = (riTaxAnnual / pp) + addRI; // FICA (Social Security 6.2% up to $168,600, Medicare 1.45%) const ssWageBase = 168600; const ssAnnual = Math.min(grossAnnual, ssWageBase) * 0.062; const medicareAnnual = grossAnnual * 0.0145; const ficaPerPeriod = (ssAnnual + medicareAnnual) / pp; // Net pay calculation const totalDeductionsPerPeriod = fedPerPeriod + riPerPeriod + ficaPerPeriod + preTax + postTax; const netPerPeriod = grossPerPeriod - totalDeductionsPerPeriod; const netAnnual = netPerPeriod * pp; // Results const grossDisplay = grossPerPeriod.toLocaleString("en-US", { style: "currency", currency: "USD" }); const netDisplay = netPerPeriod.toLocaleString("en-US", { style: "currency", currency: "USD" }); const netAnnDisplay = netAnnual.toLocaleString("en-US", { style: "currency", currency: "USD" }); const fedDisplay = fedPerPeriod.toLocaleString("en-US", { style: "currency", currency: "USD" }); const riDisplay = riPerPeriod.toLocaleString("en-US", { style: "currency", currency: "USD" }); const ficaDisplay = ficaPerPeriod.toLocaleString("en-US", { style: "currency", currency: "USD" }); const preDisplay = preTax.toLocaleString("en-US", { style: "currency", currency: "USD" }); const postDisplay = postTax.toLocaleString("en-US", { style: "currency", currency: "USD" }); const totalDedDisplay = totalDeductionsPerPeriod.toLocaleString("en-US", { style: "currency", currency: "USD" }); const taxRate = grossAnnual > 0 ? ((fedTaxAnnual + riTaxAnnual + ssAnnual + medicareAnnual) / grossAnnual * 100).toFixed(1) : 0; let netColor = "green"; if (netPerPeriod < grossPerPeriod * 0.5) netColor = "red"; else if (netPerPeriod < grossPerPeriod * 0.65) netColor = "yellow"; let fedColor = "yellow"; if (fedPerPeriod > grossPerPeriod * 0.2) fedColor = "red"; else if (fedPerPeriod < grossPerPeriod * 0.05) fedColor = "green"; let riColor = "green"; if (riPerPeriod > grossPerPeriod * 0.06) riColor = "red"; else if (riPerPeriod > grossPerPeriod * 0.03) riColor = "yellow"; let ficaColor = "yellow"; if (ficaPerPeriod > grossPerPeriod * 0.08) ficaColor = "red"; document.getElementById("res-label").innerHTML = "Net Pay Per Period"; document.getElementById("res-value").innerHTML = netDisplay; document.getElementById("res-value").style.color = netColor === "green" ? "#2e7d32" : netColor === "yellow" ? "#f9a825" : "#c62828"; document.getElementById("res-sub").innerHTML = `Annual Net: ${netAnnDisplay} (Effective Tax Rate: ${taxRate}%)`; const gridHTML = `
Gross Pay${grossDisplay}
Federal Tax- ${fedDisplay}
RI State Tax- ${riDisplay}
FICA (SS + Medicare)- ${ficaDisplay}
Pre-Tax Deductions- ${preDisplay}
Post-Tax Deductions- ${postDisplay}
Total Deductions- ${totalDedDisplay}
`; document.getElementById("result-grid").innerHTML = gridHTML; // Breakdown table const breakdownHTML = `
ItemPer PeriodAnnual
Gross Pay${grossDisplay}${grossAnnual.toLocaleString("en-US", { style: "currency", currency: "USD" })}
Federal Tax${fedDisplay}${fedTaxAnnual.toLocaleString("en-US", { style: "currency", currency: "USD" })}
Rhode Island State Tax${riDisplay}${riTaxAnnual.toLocaleString("en-US", { style: "currency", currency: "USD" })}
Social Security (6.2%)${(ssAnnual/pp).toLocaleString("en-US", { style: "currency", currency: "USD" })}${ssAnnual.toLocaleString("en-US", { style: "currency", currency: "USD" })}
Medicare (1.45%)${(medicareAnnual/pp).toLocaleString("en-US", { style: "currency", currency: "USD" })}${medicareAnnual.toLocaleString("en-US", { style: "currency", currency: "USD" })}
Pre-Tax
📊 Rhode Island Paycheck Breakdown: Gross Pay vs. Deductions (Weekly, $1,200 Gross)

What is Paycheck Calculator Rhode Island?

A Paycheck Calculator Rhode Island is a specialized financial tool designed to estimate an employee’s net pay after deducting federal taxes, state-specific taxes, FICA (Social Security and Medicare), and other withholdings applicable to the Ocean State. Unlike generic paycheck calculators, this tool incorporates Rhode Island’s unique state income tax brackets, which range from 3.75% to 5.99% as of 2024, as well as local nuances like the state’s temporary disability insurance (TDI) and caregiver insurance (TCI) programs. For workers in Providence, Warwick, or Cranston, this means the difference between a gross salary of $60,000 and a take-home pay of roughly $44,000 can be accurately predicted, enabling real-world budgeting for rent, groceries, or savings.

This calculator is used by a diverse audience including hourly employees in Rhode Island’s healthcare and manufacturing sectors, salaried professionals in the education or tech fields, and small business owners in Newport or Pawtucket who need to forecast payroll expenses. Freelancers and gig workers also rely on it to set aside the correct amount for quarterly estimated tax payments. The tool matters because Rhode Island’s tax structure—combined with federal withholdings and local deductions—can be confusing, and a single miscalculation can lead to underpayment penalties or cash flow surprises.

This free online paycheck calculator for Rhode Island provides instant, accurate results without requiring any software downloads or account registration. Simply input your gross pay, pay frequency, filing status, and any pre-tax deductions to receive a detailed breakdown of your net income, taxes withheld, and employer contributions. It is designed to be intuitive for both first-time users and seasoned payroll professionals.

How to Use This Paycheck Calculator Rhode Island

Using this tool is straightforward and requires only a few key pieces of information about your employment and tax situation. Follow these five steps to get an accurate estimate of your Rhode Island paycheck in under two minutes.

  1. Enter Your Gross Pay Amount: Start by typing in your gross earnings for the pay period. This is the total amount before any deductions, including your base salary or hourly wages plus overtime, commissions, or bonuses. For example, if you earn $25 per hour and work 40 hours, enter $1,000. Be precise—rounding up or down can skew your net pay estimate by tens of dollars.
  2. Select Your Pay Frequency: Choose how often you receive a paycheck from the dropdown menu: weekly (52 pay periods per year), bi-weekly (26), semi-monthly (24), or monthly (12). This is critical because Rhode Island’s tax withholding tables are based on annualized income, and the calculator adjusts deductions proportionally. A bi-weekly employee earning $2,000 per check will have different state tax withheld than a monthly employee earning $4,000, even if annual income is the same.
  3. Specify Your Filing Status: Indicate whether you file as Single, Married Filing Jointly, Head of Household, or Married Filing Separately. Rhode Island uses the same filing status categories as the federal government for state income tax purposes. Your status directly impacts which tax bracket applies to your income. For instance, a single filer earning $80,000 annually falls into a higher marginal rate than a married joint filer with the same income.
  4. Input Pre-Tax Deductions: Enter any amounts you contribute to pre-tax accounts such as a 401(k), traditional IRA, health savings account (HSA), or flexible spending account (FSA). These deductions reduce your taxable income for both federal and Rhode Island state taxes. For example, if you contribute $200 per pay period to a 401(k), your taxable income drops by that amount, lowering your overall tax liability. Also include any Rhode Island-specific deductions like the state’s retirement income exclusion if applicable.
  5. Review Withholding Allowances and Additional Withholding: Enter the number of withholding allowances you claim on your RI W-4 form (or the federal W-4 equivalent). More allowances mean less tax withheld from each paycheck. You can also specify any additional dollar amount you want withheld from each check for state or federal taxes. This is useful if you had a tax bill last year and want to avoid a repeat. Click “Calculate” to see your net pay, itemized deductions, and employer-side taxes.

For best results, have your most recent pay stub handy to cross-reference your current withholdings. The calculator also allows you to adjust for year-to-date (YTD) figures if you want to estimate remaining paychecks for the year. Remember that this tool provides estimates—actual withholdings may vary slightly due to employer-specific policies or mid-year tax law changes.

Formula and Calculation Method

The Paycheck Calculator Rhode Island uses a multi-step formula that combines federal tax calculations with Rhode Island’s progressive state income tax system. The core logic follows the IRS Publication 15-T guidelines for federal withholding and the Rhode Island Division of Taxation’s withholding tables for state taxes. The formula is designed to compute net pay as gross income minus all applicable deductions, taxes, and contributions.

Formula
Net Pay = Gross Pay – (Federal Income Tax + Social Security Tax + Medicare Tax + Rhode Island State Income Tax + Rhode Island TDI/TCI + Pre-Tax Deductions + Post-Tax Deductions)

Each variable in this formula represents a specific deduction calculated independently. Federal income tax is determined using the percentage method based on your filing status and allowances. Social Security tax is a flat 6.2% of gross wages up to the annual wage base limit ($168,600 in 2024). Medicare tax is 1.45% with an additional 0.9% surtax on wages over $200,000 for single filers. Rhode Island state income tax uses three brackets: 3.75% on the first $74,450 of taxable income for single filers, 4.75% on income between $74,451 and $169,550, and 5.99% on income above $169,550 (adjusted annually for inflation). The state also requires a Temporary Disability Insurance (TDI) tax of 1.1% on the first $74,000 in wages and a Temporary Caregiver Insurance (TCI) tax of 0.15% on the same wage base, both employee-paid.

Understanding the Variables

Gross Pay is your total earnings before any deductions, including regular wages, overtime, tips, commissions, and bonuses. Pre-Tax Deductions reduce your taxable income for both federal and state purposes—common examples include 401(k) contributions, health insurance premiums, and HSA contributions. Post-Tax Deductions, such as Roth IRA contributions or wage garnishments, are subtracted after taxes are calculated. Filing Status determines which tax brackets apply and the standard deduction amount. Withholding Allowances affect how much federal and state tax is withheld—each allowance reduces taxable income by a fixed amount per year. Rhode Island TDI and TCI are mandatory state insurance programs that provide partial wage replacement for disability or family leave; the rates are set annually by the state.

Step-by-Step Calculation

First, the calculator determines your annualized gross income by multiplying your per-period gross pay by the number of pay periods in a year. Next, it subtracts any pre-tax deductions to find your adjusted gross income (AGI). Federal income tax is computed using the IRS percentage method: the AGI is reduced by the standard deduction based on filing status (e.g., $14,600 for single in 2024), then the remaining taxable income is applied to federal tax brackets (10%, 12%, 22%, etc.). Social Security and Medicare taxes are calculated as flat percentages of gross wages, with the Social Security wage cap applied. For Rhode Island state tax, the calculator reduces the AGI by the state standard deduction ($9,500 for single filers in 2024) and applies the progressive bracket rates. The TDI/TCI taxes are computed as a percentage of gross wages up to the state wage base. Finally, all deductions are summed and subtracted from gross pay to arrive at net pay. The tool also calculates employer-side taxes (FICA matching, FUTA, SUTA) for employers using the calculator.

Example Calculation

Let’s walk through a realistic scenario to see exactly how the Paycheck Calculator Rhode Island works in practice. This example uses common figures for a typical worker in the state’s service industry.

Example Scenario: Maria is a single filer living in Providence, Rhode Island. She works as a registered nurse at a hospital and earns a gross salary of $4,500 per bi-weekly pay period (26 pay periods per year, annual salary of $117,000). She contributes $250 per pay period to her 401(k) and $50 per pay period to an HSA. She claims 2 withholding allowances on her federal W-4 and the same on her state RI W-4. She has no additional withholding.

Step 1: Calculate annualized figures. Gross annual income = $4,500 x 26 = $117,000. Annual pre-tax deductions = ($250 + $50) x 26 = $7,800. Adjusted gross income (AGI) = $117,000 - $7,800 = $109,200.

Step 2: Federal income tax. Standard deduction for single 2024 = $14,600. Federal taxable income = $109,200 - $14,600 = $94,600. Using 2024 brackets: 10% on first $11,600 ($1,160), 12% on $11,601 to $47,150 ($4,266), 22% on $47,151 to $94,600 ($10,439). Total federal tax = $1,160 + $4,266 + $10,439 = $15,865 annually. Per bi-weekly period = $15,865 / 26 = $610.19.

Step 3: FICA taxes. Social Security (6.2% of $4,500) = $279.00. Medicare (1.45% of $4,500) = $65.25. No additional Medicare surtax since income under $200,000. Total FICA per period = $344.25.

Step 4: Rhode Island state income tax. RI standard deduction for single 2024 = $9,500. RI taxable income = $109,200 - $9,500 = $99,700. RI brackets: 3.75% on first $74,450 = $2,791.88; 4.75% on $74,451 to $99,700 = ($99,700 - $74,450) x 4.75% = $1,199.38. Total state tax = $2,791.88 + $1,199.38 = $3,991.26 annually. Per bi-weekly = $3,991.26 / 26 = $153.51.

Step 5: TDI and TCI. TDI = 1.1% of $4,500 = $49.50. TCI = 0.15% of $4,500 = $6.75. Total state insurance = $56.25 per period.

Step 6: Net pay. Gross $4,500 – 401(k) $250 – HSA $50 – Federal tax $610.19 – Social Security $279.00 – Medicare $65.25 – State tax $153.51 – TDI/TCI $56.25 = $3,035.80 per bi-weekly check.

Maria’s net pay is approximately $3,035.80 every two weeks. This means her annual take-home income is about $78,930.80, which is roughly 67.5% of her gross salary. She can use this number to budget for rent, student loans, and savings in the high-cost Providence area.

Another Example

Consider a different scenario: James is a married filer (jointly) living in Warwick, Rhode Island. He earns $22 per hour and works 35 hours per week, paid weekly. His gross weekly pay is $770. He contributes $75 per week to a traditional IRA (pre-tax) and has no other deductions. He claims 3 allowances. Annual gross = $770 x 52 = $40,040. Annual pre-tax IRA = $75 x 52 = $3,900. AGI = $36,140. Federal taxable income after standard deduction for married joint ($29,200) = $6,940. Federal tax = 10% of $6,940 = $694 annually, or $13.35 per week. Social Security = $770 x 6.2% = $47.74. Medicare = $770 x 1.45% = $11.17. RI taxable income after state standard deduction for married joint ($19,000) = $17,140. RI tax = 3.75% of $17,140 = $642.75 annually, or $12.36 per week. TDI = $770 x 1.1% = $8.47. TCI = $770 x 0.15% = $1.16. Net weekly pay = $770 – $75 – $13.35 – $47.74 – $11.17 – $12.36 – $8.47 – $1.16 = $600.75. James takes home about $601 per week, or $31,239 annually, which is 78% of his gross—a higher percentage than Maria because he is in a lower tax bracket.

Benefits of Using Paycheck Calculator Rhode Island

Using a dedicated Paycheck Calculator Rhode Island offers significant advantages over generic calculators or manual estimation. It provides precision, saves time, and empowers better financial decisions tailored to the state’s specific tax environment. Here are five key benefits that make this tool indispensable for Rhode Island workers and employers.

  • Accurate State Tax Withholding: Rhode Island’s progressive income tax system with three brackets and separate TDI/TCI taxes is easy to miscalculate. This calculator automatically applies the correct rates based on your income and filing status, preventing under-withholding that could lead to a surprise tax bill in April. For example, a single filer earning $85,000 might incorrectly use the 3.75% rate on all income, but the calculator correctly applies the 4.75% bracket on the portion above $74,450.
  • Realistic Budgeting and Financial Planning: Knowing your exact net pay allows you to create a realistic monthly budget for housing, utilities, transportation, and discretionary spending. Whether you are renting an apartment in Newport or saving for a down payment in Cranston, accurate take-home pay figures prevent overspending and help you set achievable savings goals. The calculator also accounts for pre-tax deductions like 401(k) contributions, so you can see how increasing retirement savings affects your current cash flow.
  • Employer Payroll Forecasting: Small business owners and HR professionals in Rhode Island can use this tool to estimate total payroll costs, including employer-side FICA (7.65% matching), federal unemployment tax (FUTA), and state unemployment insurance (SUTA) rates, which in Rhode Island range from 1.1% to 9.8% depending on experience rating. This helps in pricing services, setting salaries, and ensuring compliance with state wage and tax laws without expensive accounting software.
  • Tax Planning and Withholding Adjustments: The calculator allows you to experiment with different withholding allowances or additional withholding amounts to see how they affect your net pay. If you anticipate a tax refund last year, you can reduce your allowances to increase take-home pay. Conversely, if you owed money, you can add extra withholding to avoid a penalty. This flexibility is particularly valuable for freelancers or those with multiple jobs who need to fine-tune their estimated tax payments.
  • Time Savings and Error Reduction: Manually calculating Rhode Island taxes using the state’s 16-page withholding tables is tedious and prone to arithmetic errors. This free tool performs all calculations in seconds, reducing the risk of mistakes that could cost you money or trigger IRS or state notices. It also updates automatically for tax law changes, such as the annual inflation adjustments to brackets and standard deductions, so you don’t have to track legislative updates.

Tips and Tricks for Best Results

To get the most accurate and useful results from your Paycheck Calculator Rhode Island, follow these expert tips and avoid common pitfalls. These strategies will help you use the tool like a payroll professional.

Pro Tips

  • Always use your most recent pay stub to verify your current pre-tax deductions (401(k), health insurance, HSA) and withholding allowances. The calculator is only as accurate as the data you input—using estimates from memory can lead to a 5-10% variance in net pay.
  • If you have multiple jobs or a working spouse, use the “Married but withhold at single rate” option or input additional income manually. Rhode Island’s withholding tables assume this is your only job, so failing to account for a second income can result in significant under-withholding.
  • Check the “Year-to-Date” feature if available. Input your YTD gross pay and taxes withheld to see if you are on track for your target refund or balance due. This is especially useful mid-year when you can still adjust your W-4 to correct any discrepancies.
  • For hourly workers with variable schedules, use an average of your last four weeks of hours to get a realistic estimate. The calculator allows you to input different gross amounts per period, so you can run multiple scenarios for low-season and high

    Frequently Asked Questions

    The Paycheck Calculator Rhode Island is a specialized online tool that estimates your net pay after accounting for Rhode Island-specific deductions. Beyond federal income tax and FICA, it calculates the Rhode Island state income tax (which uses a progressive rate from 3.75% to 5.99% for 2024), the state temporary disability insurance (TDI) at 1.1% of the first $74,800 in wages, and the state unemployment insurance (SUI) contributions. For example, a single filer earning $60,000 annually would see approximately $1,200 withheld for Rhode Island state tax and $823 for TDI.

    The calculator applies Rhode Island's progressive tax brackets: 3.75% on taxable income up to $77,100 (single) or $154,200 (married filing jointly), and 5.99% on income above those thresholds. The formula subtracts the standard deduction (currently $10,550 for single filers in 2024) and personal exemptions from gross income, then applies the bracket rates. For example, if taxable income after deductions is $50,000, the calculator computes $50,000 x 0.0375 = $1,875 state tax, then adds TDI at 1.1% on wages up to $74,800.

    For a Rhode Island earner with a median household income of approximately $74,000, the Paycheck Calculator typically shows a net pay range of 72% to 78% of gross income. This accounts for 12.4% Social Security (up to $168,600), 2.9% Medicare, 3.75% state income tax, 1.1% TDI, and federal income tax based on filing status. A single person earning $74,000 with standard deductions might net around $54,000 annually, or roughly 73% of gross pay.

    The calculator is highly accurate for standard W-2 employees, typically within 1-2% of actual pay stubs, as it uses the same IRS Circular E and Rhode Island Division of Taxation withholding tables. However, accuracy decreases if you have pre-tax deductions like 401(k) contributions, health insurance premiums, or flexible spending accounts that the calculator may not capture precisely. For a typical employee with no pre-tax benefits, the difference is often less than $10 per paycheck.

    The calculator does not account for Rhode Island's property tax relief credit, earned income tax credit, or the state's child and dependent care credit, which can reduce actual withholding. It also ignores local taxes, such as the 1% tax in Providence for residents who work in the city. Additionally, it cannot handle irregular income like bonuses, commissions, or overtime with specific Rhode Island tax treatment, potentially overestimating withholding by 5-10% for those with complex compensation.

    The calculator is essentially an automated version of the official RI Division of Taxation's withholding tables (Form RI-W4 and accompanying tax tables), so results are nearly identical—within 0.5%—when inputs match. A CPA's manual calculation might be slightly more accurate for complex situations involving multiple jobs, non-resident status, or itemized deductions, as they can apply nuanced state-specific rules. For most single-job employees, the calculator is as reliable as professional manual methods, but CPAs can adjust for Rhode Island's unique "no local tax reciprocity" with Massachusetts.

    No, this is a frequent misunderstanding. The Paycheck Calculator Rhode Island does not include the 1% Providence local income tax, which applies only to residents of Providence (not other cities) and is not withheld automatically by all employers. Many users assume the calculator captures all Rhode Island taxes, but the Providence tax is a separate municipal levy not reflected in state withholding tables. To get an accurate net pay, Providence residents must manually subtract 1% of their taxable income from the calculator's result.

    A remote worker living in Rhode Island but working for a Massachusetts-based employer should use the Paycheck Calculator Rhode Island to estimate their actual state tax liability, as they owe Rhode Island income tax on all wages, not Massachusetts tax. The calculator helps them adjust their W-4 with their employer to avoid over-withholding to Massachusetts (which has no reciprocity with RI). For example, if they earn $80,000, the calculator shows roughly $3,000 in RI state tax, and they can request their employer withhold at the RI rate instead of MA's 5% rate, preventing double taxation and a large refund.

    Last updated: May 29, 2026 · Bookmark this page for quick access

    🔗 You May Also Like