@supports(display: grid) {
:root {
--sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19);
--body-width-on-desktop: 45.75rem;
}
@media only screen and (min-width: 769px) {
#side-bar .close-menu {
display: block;
position: fixed;
top: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
background: unset;
opacity: 1;
pointer-events: all;
z-index: -1;
}
#side-bar .close-menu img {
color: transparent;
}
#side-bar .close-menu::before,
#side-bar .close-menu::after {
content: "";
box-sizing: border-box;
position: fixed;
display: block;
top: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
padding: 0;
margin: 0;
text-align: center;
pointer-events: all;
cursor: pointer;
transition:
opacity var(--sidebar-transition-timing);
}
#side-bar .close-menu::before {
--mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E");
z-index: -1;
background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important;
-webkit-mask: var(--mask);
mask: var(--mask);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 50% 50%;
mask-position: 50% 50%;
-webkit-mask-size: 60%;
mask-size: 60%;
}
#side-bar .close-menu::after {
z-index: -2;
background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important;
border-radius: var(--toggle-roundness, 50%);
border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid;
}
#side-bar:focus-within .close-menu,
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu {
pointer-events: none;
}
#side-bar:focus-within .close-menu::before,
#side-bar:focus-within .close-menu::after {
opacity: 0;
pointer-events: none;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before,
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after {
opacity: 0;
pointer-events: none;
}
#side-bar {
display: block;
position: fixed;
top: 0;
left: calc(var(--sidebar-width-on-desktop)*-1);
z-index: 10;
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
margin-top: 0;
}
#side-bar:focus-within {
left: 0;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover {
left: 0;
}
#side-bar .side-block {
margin-top: 1rem;
background-color: rgb(0, 0, 0, 0);
border-radius: 0;
border-left-width: 0px;
border-right-width: 0px;
}
#main-content::before {
content: "";
display: block;
position: fixed;
top: 0;
right: 0;
z-index: -1;
opacity: 0;
transition:
opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
margin-left: var(--sidebar-width-on-desktop);
background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat;
padding-right: 0;
width: 100%;
height: 100vh;
pointer-events: none;
z-index: 99;
}
#side-bar:focus-within ~ #main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
@supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar {
padding: inherit;
} }
#content-wrap {
display: flex;
flex-direction: row;
width: calc(100vw - (100vw - 100%));
min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem)));
flex-grow: 2;
height: auto;
position: relative;
margin: 0 auto;
max-width: inherit;
}
#main-content {
width: 100%;
position: initial;
max-height: 100%;
padding: 2rem 1rem;
max-width: var(--body-width-on-desktop, 45.75rem);
margin: 0 auto;
}
#page-content {
max-width: min(90vw, var(--body-width-on-desktop, 45.75rem));
}
@supports (-webkit-hyphens:none) {
#side-bar {
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
padding-right: 0;
background-color: rgb(0, 0, 0, 0);
pointer-events: all;
overflow-x: visible;
overflow-y: visible;
z-index: 999;
}
#side-bar::-webkit-scrollbar {
opacity: 0;
-webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
#side-bar .close-menu::before {
z-index: 999;
}
#side-bar .close-menu::after {
z-index: 998;
}
#side-bar:hover .close-menu::before,
#side-bar:hover .close-menu::after {
opacity: 0;
}
#side-bar:hover {
left: 0;
background-color: rgba(var(--swatch-menubg-color), 1);
padding-right: 0;
}
#side-bar:hover::-webkit-scrollbar {
opacity: 1;
}
#side-bar:hover~#main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
}
}
}
-
Info
Let me tell you how it will be
There's one for you, 19 for me
'Cause I'm the taxman
Yeah, I'm the taxman
( Taxman - The Beatles )
SCP-7084- I don't care who the IRS sends I am not paying taxes
(click the "DATA CORRUPT", if that wasn't obvious.)
I have an author page now!
NOTICE FROM THE FOUNDATION RECORDS AND INFORMATION SECURITY ADMINISTRATION
The following document has been infected by the anomaly that it describes. To whichever site has experienced a breach and has not filed SCP-7084, our organization, and humanity as a whole, depend on you.
The Foundation's Legal Department and the Department of Miscommunications are currently trying to stop and contain the spread of SCP-7084.
— Maria Jones, Director, RAISA
Containment Class:
uncontained
Secondary Class:
endeminis
SCHEDULE C (Form 7084)
Containment Breach
Attach to Form 1040, 1040-SR, 1040-NR, or 1041; partnerships must generally file Form 1065.
Department of the Treasury - Internal Revenue Service
Tax Year: 2023
General Instructions:
Use this form to amend your previously filed tax return in the event of a containment breach.
Any site having recently experienced a containment breach should immediately check for manifestations of SCP-7084 instances, file them accordingly, and submit the file to RAISA for review.
Foundation operatives covertly embedded within various branches of the Internal Revenue Service (IRS) across the United States are to remain informed of any indications of recent containment breaches. Embedded agents are to destroy discovered IRS documents relating to security breaches after IRS internal processing, and all non-Foundation personnel exposed to the contents of such documents are to undergo amnesticization.
In case of an SCP-7084 outbreak, several foundation-operated AIs are to create files for SCP-7084 to infect, to prevent the destruction of other, important files.
Part I: Identifying Information:
Please enter your name, address, and employer identification number (EIN) exactly as they appeared on your original tax return. Failure to provide accurate information may result in delays or errors in processing your amended return.
Name of Site Director. If fae, leave blank: _______________
Foundation Site, including specialization: _______________
Site Address (If Site does not physically exist, leave blank.) _______________
City, town or post office, state, and ZIP code: _______________
Social security number (SSN): _______________
Is the Site temporary or newly established since the last annual tax form?
[ ] Yes [ ] No
Did you “materially participate” in the operation of this Site during 2023? If “No,” see instructions for limit on losses:
[ ] Yes [ ] No
Method of Accounting:
[ ] Cash
[ ] EVECoin
[ ] Pixie Dust
[ ] Actuakivas
[ ] Human Blood
[ ] Stillborn Children
[ ] Religious Totems
[ ] Limbs (Please Specify: _______________)
[ ] Other (Please Specify: _______________)
SCP-7084 refers to an anomalous phenomenon involving the manifestation of tax papers after events that result in notable expenditure of Foundation resources, primarily containment breaches. The papers materialize within the affected organization's financial department or relevant administrative area.
SCP-7084 will typically appear within 24 hours following a breach. The manifestation process of SCP-7084 is spontaneous and occurs regardless of the physical location or time of the breach. The papers resemble standard tax documents, including forms, schedules, and annual statements.
Upon examination, the contents of SCP-7084 appear to be genuine tax-related documents associated with individuals directly affected by the breach.
The personal details and financial information contained within SCP-7084 are always current and accurately reflect the tax obligations and liabilities of the individuals involved. This includes income statements, deductions, and tax liabilities.
In the event that SCP-7084 is not filed and submitted following a breach, internal Foundation files will begin to slowly be replaced with instances of SCP-7084, with preference given to files related to taxes, the IRS, SCP-7084 itself, and financial accounts.
Part II: Nature of Breach:
Indicate the nature of the containment breach in question. Select the appropriate option from the following.
[ ] Physical
[ ] Temporal
[ ] Digital
[ ] SCP-682
[ ] Religious
[ ] Thaumaturgical
[ ] Conceptual
[ ] Paranormal
[ ] Other (Please Specify: ____________________)
SCP-7084 was initially discovered following the breach of 𝐢5790, with all information regarding 𝐢5790 being purged. While searching for information regarding 𝐢5790, several records were found related to 𝐢5790 in the IRS archives. Further research lead to thousands of papers about the SCP Foundation and containment breaches.
Records indicate that prior to its discovery, personnel have consistently disregarded the anomalous nature of SCP-7084 documents, which have been filed without question since the establishment of the Foundation, unbeknownst to the administration. Since its discovery, SCP-7084 has posed an Amida-Class Disruption to the inner workings of the Foundation.
After several years of researching the history of the IRS, many documents related to the SCP Foundation have been uncovered, including the identities of the O5 Council and the Administrator. For more information, please refer to "Further Research".
Part III: Statement of Explanation:
Please explain the breach and its impact on financial systems, including any relevant dates, parties involved, and an estimated loss of personnel. Attach additional sheets if necessary.
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
Calculation of Damages:
Quantify the financial damages resulting from the breach. Please include a breakdown of affected financial entities, monetary losses, and any supporting documentation. Attach additional sheets if necessary.
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
Part IV: Procedural Compliance:
Verify that all necessary containment protocols were followed. Failure to comply with proper procedures may result in disciplinary actions.
[ ] Security personnel alerted and on standby.
[ ] Isolation and containment measures initiated.
[ ] Incident reported to the appropriate containment authority.
[ ] Affected systems temporarily shut down or put on restricted access.
[ ] Emergency response teams alerted.
Anomaly: SCP-5243
Time: Annual, 09/08
Summary: Every year, several dozen papers related to SCP-5243 manifest throughout the United States. These papers are identical in appearance and content.
Anomaly: REDACTED PER PROTOCOL 4000-ESHU
Time: █/█/████
Summary: SCP-7084 complied to the nominative hazard of the trees that should not be spoken. Every mention of the lost and quiet forest used a different name. When questioned, a man with fur and long ears did confirm that they pay taxes.
Anomaly: SCP-1313
Time: 5/3/2018
Summary: Manifestation of SCP-7084 was discovered due to a grizzly bear attack in Louisville, Kentucky. SCP-7084 included the equation that manifested SCP-1313.
Anomaly: SCP-6269
Time: 8/24/2020
Summary: Notably, several papers relating to SCP-6269 manifested without a breach event. These papers implicated the Acquisitions, Engineering, and Human Resources departments in allegations of tax fraud.
Anomaly: SCP-6599
Time: 10/10/2021
Summary: SCP-6599-1 materialized within the ████████ Post Office, North Dakota, resulting in substantial damage to the facility. During the incident, SCP-6599-1 vocally expressed its displeasure, stating, "YOU STUPID TAX-FUCKERS TRYING TO INSULT ME? DON'T YOU EVER CALL MY AMAZING MOVES UNPREDICTABLE AND AGGRESSIVE. I AM NOT AGGRESSIVE." The SCP-7084 manifestation related to SCP-6599-1 was discovered in multiple pieces.
Part V: Other Expenses:
List below expenses not previously mentioned. Attach additional sheets if necessary.
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
On 9/14/2025, the Foundation started an investigation into the past of the Internal Revenue Service. Through anomalous means, the Foundation has discovered that the existence of the IRS predates the existence of humanity. IRS records include information regarding every known and unknown group of interest.
Upon further examination, instances of groups with the identical goal to the IRS have appeared within all civilizations and groups across reality, with the concept of "taxes" having a notable imprint within the noosphere.
Further research into the nature of the IRS is an ongoing priority.
Part VI: Declaration:
Under penalties of perjury, I declare that I have examined this amended return, including accompanying schedules and statements, and to the best of my knowledge and belief, it is true, correct, and complete.
Signature: _______________
Date: _____________
There are only two guarantees in life:
Death, and taxes.
And the O5s have avoided death for way too long.
Part VII: Instructions for Submission:
Upon completion, submit this amended tax return to the International Revenue Service, accompanied by any necessary supporting documentation relating to the breach and its impact. Please retain a copy for your records. And stop sticking your nose where it doesn't belong.