Corporation Name
{{ profile ? profile.companyName : 'No fiscal profile selected' }}
Employer Identification Number (EIN)
{{ profile.taxIdValue ?? 'N/A' }}
Tax Year
{{ tax_year }}
State of Incorporation
Wyoming (WY)
30
Taxable Income (Total Income minus Total Deductions)
{{ form_data.taxable_income|format_currency(display_currency()) }}
32
Total Tax (Line 30 × 21%)
{{ form_data.total_tax|format_currency(display_currency()) }}
{% if form_data.estimated_payments_made is defined %}
33
Estimated Payments Made (Form 1120-W)
({{ form_data.estimated_payments_made|format_currency(display_currency()) }})
{% set balance = form_data.total_tax - (form_data.estimated_payments_made ?? 0) %}
{% if balance > 0 %}
34
Balance Due (Line 32 − Line 33)
{{ balance|format_currency(display_currency()) }} DUE
{% else %}
34
Overpayment (Line 33 − Line 32)
{{ balance|abs|format_currency(display_currency()) }} CREDIT
{% endif %}
{% endif %}
{% if form_data.schedule_m1 is defined %}