:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
Item Status: Unknown
Special Containment Procedures: Containment of Item-0000 is centred not on Item-0000 but on the World Gate located in ███████. As there is currently no way to destroy the gate by any known means, in the event that it ever activates the Woelkean Empire will immediately go into a state of emergency.
Should Subject-0000 be confirmed to enter through the gate all twelve on-site nuclear devices will be detonated and the Rapture Contingency will be enacted.
Description: Item-0000 consists of two components: a book (Object-0000) and the human who wields it (Subject-0000).
Object-0000 is an anomalous book that holds immeasurable power. Its main property is the ability for whoever writes in it to be able to manipulate anyone they know by name according to what they write on the pages of Object-0000.
Its secondary property curses the wielder with the immense and irresistible desire to seek out and obtain as many powerful magical and technological items as possible.
Subject-0000 is a human male of Filipino descent who came into contact with and currently wields Object-0000. His name is Jedidiah █████ ██████ and is of the same world as Dr. Bouwers, Dr. Sturhahn, and the Fuhrer Craig Woelke.
All information regarding Subject-0000's current state is purely speculative but it is certain that the Subject has accumulated and experimented with an unknown amount of magical and technological wonders to increase his level of power, specifically his ability to influence and control all things.
Should Subject-0000 arrive in this world it will likely lead to an XK-Class 'End-of-Free-Will' Scenario.
Addendum 1:The Rapture Contingency consists of four (4) parts.
Part 1: An emergency broadcast will be displayed on all screens and holographic devices in the Woelkean Empire. This broadcast will tell all citizens to ACT using whichever method is most readily available to them and will repeat comforting and reassuring messages to encourage compliance.
Messages include: ACT immediately, You take the Empire with you, Honour liberty by taking the final and greatest liberty of all, We will each be remembered, There is nothing to fear, Your courage will inspire others, Access to a loaded firearm is ideal, Thank you for taking ACTION, Tend to your children before yourself, Infants and pets: the smallest patriots.
This broadcast will repeat until there are none left to see it.
Part 2: All robots and mechs will be connected to the (yet to be finished) Skynet AI to ensure the termination of the populace reaches completion unimpeded.
Part 3: After the populace is purged completely Skynet will make attempts to forcefully open portals to Yggdrasil through all known saplings such as Thundertree. If successful in opening one or multiple portals there it will use any method available to destroy the tree of life, therefore, ensuring Subject-0000 can't use Yggdrasil to follow or manipulate those in the afterlife.
Part 4: During and after parts two (2) and three (3) the Skynet AI will rapidly produce and mobilize as many ships, droids, strike craft along with any and everything else it can muster to stop Subject-0000 from taking over the world.
Should Skynet fail in its mission the responsibility of stopping Jed will fall on the gods and specifically Odin himself. But if Ragnarok comes before Jed returns I doubt there will be any hope of stopping him. -Dr. Bouwers
It is theorized that the Earth of Subject-0000 and this world lie in the realm of 'Fantasy' as there are many specific things and events that seem out of place as if they were improvised or made up with very little thought. This idea has been scrapped because as we all know there is always a logical explanation for things. -Dr. Sturhahn
Multiverse travelling gods like Týr and Njörðr from this world are likely to blame for scattering the various artifacts including Object-0000 that were found on Earth along with the construction of the World Gates.
Who scattered them in the first place and why still remains a mystery, a mystery that is unlikely to ever be solved without access to Týr's Archives.
According to legend, Njörðr is said to return to Vanaheimr to save it from the ravages of Ragnarok. So if Subject-0001's curse is broken and then killed there may be a slim window of opportunity to attain the answers the Dr. Bouwers and Dr. Sturhahn are so eager to get.
:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
Item Status: Contained
Special Containment Procedures: Containment Cell 1-A is to be located 200m below sea level in the Valrusan Ocean. Sole access to the containment cell is to be through a vertical elevator shaft separated every fifty (50) meters with a reinforced blast door, constructed of 20 cm thick material shielding. The elevator shaft shall be flooded with seawater when not in use.
Between the bottom of the elevator shaft and the containment cell is a 150m long "kill corridor" with its walls and floor reinforced with 1.5m of pure dwarven steel.
A security station located at the entrance to the kill corridor is to be staffed with no fewer than three (3) armed security personnel on watch at any one point in time. Armament is to include, but not be limited to, at least one (1) ███████ CIW system on a pintle mount with a clear line of sight down the corridor, with a plexiglass screen to protect the operator from thrown weapons. In the event of a full breach, all on-site staff are to proceed immediately to the closest security station for weapons and armour distribution. Staff will remain at Alert Condition One until Baldur is confirmed 'neutralized'. Should 90 minutes pass after the declaration of a full breach without a Stand Down order being given by Level 4 or higher personnel, Final Contingency Measures will be activated.
Subject is to be permanently chained to the floors, walls, and ceiling of his cell. Unless awoken for testing or questioning, Baldur is to be kept unconscious by asphyxiation through the ███ system installed into the floor of his cell depriving it of any and all oxygen.
Description: Subject-001 is a major god from the Æsir pantheon by the name of Baldur.
Subject is a lean but muscular caucasian male of Asgardian descent. His hair is light brown and his eyes are blue. Subject is 1.96 m in height and 81.65 kg in weight. Numerous tattoos depicting arcane and occult runes and iconography are present all over his body in dark blue.
'Neutralization' is often problematic due to his significant physical abilities. Subject has superhuman strength and speed, and although not invulnerable, has no ability to feel pain or shock, pressing on despite what would be debilitating wounds to normal people.
Subject-001 has effectively been 'neutralized' several times in various different manners:
- Sustained fire from multiple heavy-calibre machine guns.
- Asphyxiation.
- Cremation through the use of a Thermate-TH3 grenade placed directly inside the Subject's open chest cavity.
- During the worst breach to date, Site Alpha (which previously housed Subject-001) was forced to detonate its on-site warhead as a last attempt to contain Subject-001 while it was attempting escape, resulting in total destruction of the site and all on-site personnel.
Additional: Subject was first encountered and subsequently 'neutralized' by Dr. Bouwers on ██/██/1456 after breaking into [REDACTED] in an attempt to gain information on [DATA EXPUNGED]. Subject's body was then contained in Site Alpha. Subject regained consciousness after its fatal wounds healed on their own and was thoroughly interrogated revealing [REDACTED].
[DATA EXPUNGED]
After the last incident, the current procedures regarding Subject-001 were implemented, although they are upgraded regularly with the increase in technological standards.
[DATA EXPUNGED]
Under any and all circumstances, Subject-001's curse must never be broken.
:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
Item Status: Minimal Spread
Special Containment Procedures: All mobile devices and neural implants that contain Item-0002 are to be confiscated and analyzed for any potential leads to other possibly affected devices. Afterwards, affected devices/implants are to have their batteries removed, be assigned a designation (e.g. Item-0002-#), and be placed in Storage Unit-07 at Site Beta.
All online application stores for mobile devices along with all cybernetics clinics that offer neural implants are to be monitored to prevent any inadvertent sales of Item-0002. Suspected devices are to be targeted using self-uploading malware in order to disable the device until it can be seized by field agents.
Description: Item-0002 is a free 8.9MB application for mobile devices and neural implants named "Geist ver1.0.1" in online application stores. Item-0002 has no listed developer and is somehow able to bypass the application approval process to go directly to distribution. Item-0002 is also able to avoid removal by program manager applications. Spread of Item-0002 spikes on a consistent basis during the winter months, but we are still yet to determine why this is.
After Item-0002 is installed, no icons or shortcuts are ever created for the application. Item-0002 will then begin to send the individual images through text messaging or mental pop-ups every 3-6 hours. All images will contain Subject-0002 either within the background or foreground. Subject-0002 appears as a large werewolf-like figure with jet-black fur, goat-like horns and a humanesque face sporting a big toothy maw.
During the first 24 hours following the installation of Item-0002, the device will receive images taken at locations commonly frequented by the individual. After 48 hours, the device will receive images taken at locations that were recently visited by the individual. After 72 hours, the device will receive images of the individual in real-time with Subject-0002 appearing within close proximity to the subject.
Individuals with neural implants and >90 hours of exposure to these images will begin to briefly visualize Subject-0002 within their peripheral vision, reflective surfaces, or a combination of the two. Continued exposure to Item-0002 after this point will cause irreversible and sustained visualizations of Subject-0002. Individuals at this stage have reported periodic attempts made by Subject-0002 to visually communicate with them, but fail to understand or comprehend these actions. Currently, the only known treatment to reverse Item-0002's effect is to eliminate the individual's visual exposure to these images prior to 90 hours after installation. To date, no apparent hostile activity has been reported regarding Subject-0002 at any time other than winter. Subjects (however distressed) don't receive any physical damage from these 'attacks'. Subject-0002 has been reported to return to normal behaviour after winter has passed.
The reason for this shift in behaviour is unknown.
Item-0002 as posted on application stores:
Geist
ver1.0.1
FREE!
Reviews (0)
Description:
For ████████████. Never settle for those awkward feelings of being alone ever again. Geist is an exciting and interactive experience that will keep you engaged and intrigued. The anxiety of social situations can be nerve-racking, but after just a few hours of Geist, you will soon forget all about those painful emotions of disappointment. Be part of the new craze that is quickly becoming the next social substitute! Remember, the more you participate, the more Geist will engage you. Your experience is completely up to you. Absolutely NO ADS. Enjoy!
:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
Item Status: Under Monitoring
Special Containment Procedures: Access to the Apple Quarry is prohibited to unauthorized personnel, and federal personnel posing as local law enforcement are to maintain a perimeter around the site. Individuals who breach the perimeter are to be administered a suitable amnestic and turned over to the local authorities.
Exploratory missions into Item-0003 are currently forbidden.
Description: Item-0003 is an abandoned limestone mine near ███████, in the Bouwer Province. The mine was originally owned by the Garning & Farrier Mining Group until an incident that occurred in 1463. The remote location of the quarry, as well as the deteriorated nature of its structure, has limited civilian trespassing. Due to this, the area is mostly undisturbed.
The interior of Item-0003 is subject to irregular spatial and temporal anomalies. Exploratory teams have also reported the existence of unknown anomalous entities within Item-0003. These entities are likely connected to the 1463 incident, more information on this is available below.
The primary entrance of Item-0003 collapsed during the 1463 incident and is inaccessible. A secondary shaft, located in a dilapidated storage building, remains accessible.
Addendum 1: 1463 Incident and CollapseOn August 23rd, 1463, seismic activity below the Apple Quarry prompted quarry supervisors to send an exploratory team into the limestone mine to assess damages to structures therein. After three hours, the initial team returned to report that an important access tunnel had collapsed.
After some deliberating, quarry supervisors assembled a larger team of workers to clear the debris. These workers descended to the collapse point and began to move the fallen stone out of the way, in order to bring in larger machinery. However, during this attempt, additional seismic activity occurred, triggering a tunnel collapse behind the crew clearing the access tunnel.
For the next several hours, teams worked on both sides of the blockage to remove the debris and free the clearing crew. At approximately 4:00 PM BST, the blockage was removed and the initial clearing crew emerged from the mine. This crew reported that the primary access tunnel remained blocked, but a new tunnel, one that had not been cut by the mining group and was not charted, had been opened by the second round of seismic activity. Another small team was dispatched to gather information about this tunnel.
The second tunnel was described as cut smooth, though not unnaturally so, and descended towards the northwest at a slight decline. Supervisors for the group hypothesized that this was an original access tunnel, potentially one that had been cut near the mine's conception (before it was purchased by Garning & Farrier) and simply not properly recorded. Hoping that this access tunnel would connect around to the primary, blocked tunnel, quarry supervisors gathered another team of 23 men. Their assignment was to use this secondary tunnel to access the rear of the blockage, assess the structure there, and determine whether the use of explosives was justified to clear the tunnel.
After this team was sent into the mine, very little else of note is recorded. Sometime afterwards there was a third round of seismic activity, severe enough to collapse the entrance tunnel to the mine. Over the course of the next three days, teams above ground worked to remove the rubble covering the entrance, while supervisors and additional workers attempted to contact the team through a telephone cable line run down the secondary access shaft in the maintenance building. On the evening of the third day, just as Garning & Farrier administrators were preparing to request assistance from other nearby mining groups, an unknown individual emerged from the secondary shaft. The only note made of this event was the following, a letter sent to Garning & Farrier offices in ███████:
26/8/1463
Mine abandoned. Tunnels remain collapsed. 23 lost.
One of them came up the shaft. We tossed it back down. Wasn't right.
JDP
Note: Following the events of August 23rd, 1463, Mobile Task Force Alpha-7 "Spelunkers" was assembled for further analysis of Item-0003. Their assigned goals were to assess the anomalous nature of Item-0003, as well as search for the lost miners who were still missing under the guise of a search and rescue operation. The four-man team was to enter Item-0003 through the secondary access shaft, and spend no longer than forty minutes within the mine.
BEGIN LOG
A7-1: Mics are on.
A7-4: On.
A7-2: Check.
A7-3: On here.
A7-1: Alright. Let's head down. (Pauses) Be careful right here, don't put your foot on that. It's loose.
A7-3: You guys aren't going to let us loose on our way down, are you? (Off-mic laughter, A7-3 laughs) Your paperwork to file, I mean.
A7-2: Come on Kevin, for f███'s sake.
A7-3: Alright, alright.
(A7 team descends shaft. A7-4 notes depth as they descend. Upon reaching 120m, A7-1 stops.)
A7-2: What's wrong?
A7-1: This is it. What's our depth?
A7-4: 120m.
A7-1: That ain't right. Those miner guys said this was more than 200m deep.
A7-2: Maybe there's a jog? Just around that bend over there, maybe it descends some more.
A7-1: You'd think we'd see some hooks around here though, right? From the last guys.
A7-3: Nothing like that. Footprints though, so this is definitely where they were.
A7-1: Turn on your lamps, let's see what's around the corner here.
(Team detaches from tethers, moves to corner away from the shaft.)
A7-1: Davies, did you start our clock?
A7-2: I did, back when we hit dirt.
A7-1: Good to hear. Let me know every ten minutes.
A7-2: Yep.
A7-4: Cap, over here. Something on the wall.
A7-3: Tether lines. From where they were rubbing up against the rock. How many are there?
A7-4: Just two.
A7-2: That's weird.
A7-1: Get some pictures, and let's keep going. We don't have a lot of time.
(Team descends lower into the mine. Extraneous dialogue removed from log.)
A7-2: Ten minutes.
A7-1: Huh.
A7-2: What?
A7-1: Feels like it's been longer than that.
A7-2: (Pauses) Clock is working fine, batteries are all juiced up and everything.
A7-1: Just imagining it.
A7-3: Man, it gets really tight up there. This is an access shaft?
A7-1: Yeah. Supposed to connect with the rest of the mine, but it's just an emergency exit. We'll have more room to breathe once we reconnect.
A7-4: We're going to need to go single file.
A7-1: I'll take the lead. File in.
(Team begins to move single file through a section of tunnel. Significant time passes, but little discussion is had between team members.)
A7-1: Where are we at on the clock?
A7-2: (Pauses) 17 minutes.
A7-3: That definitely isn't right.
A7-4: Is this a temporal anomaly?
A7-1: By the looks of it. (Pauses) You guys see that?
A7-5: What?
A7-2: Light?
A7-1: Bet that's the rest of the mine. Not much further to go now.
A7-4: I hear something.
A7-3: Probably the wind.
A7-4: No, it's below us. Deep.
A7-2: Might be more seismic activity.
A7-5: That definitely isn't right.
A7-1: Let's get out of this hole, then. A cave in here and we're toast.
(Team moves quickly towards the light in front of them. Passageway begins to open slightly.)
A7-2: Why would there be light down here?
A7-4: Maybe the other miners? They would've had lamps, I think.
A7-2: Yeah, but it's been a few days. They can't possibly be rated for that long.
A7-6: Where are we at on the clock?
A7-2: Uh… 17 minutes.
A7-3: F███.
A7-2: This isn't right.
A7-4: How much further?
A7-5: No, it's below us. Deep.
A7-1: Yeah, maybe another twenty meters.
A7-2: Hurry up, boys. I feel funny.
A7-3: If you're gonna throw up, keep it back—
A7-4: Shut up, man.
A7-7: Where are we at?
A7-1: 10 meters.
A7-2: It's like we're getting pinned in—
A7-5: How much further?
A7-3: F███!
A7-4: Where are the lights?
A7-1: Hang on. My lamp is out too.
A7-6: F███!
A7-2: Something is moving.
A7-5: It's below us. Deep.
A7-1: Can you all calm the f███ down for five seconds.
A7-3: Can't see in the dark, Cap.
A7-1: I've got a lighter.
(Silence. Lighter flickers on.)
A7-1: Alright. This tunnel is blocked.
A7-2: Might be from the seismic activity.
A7-4: No, it's settled. This has been here a while.
A7-1: This tunnel, though—
A7-5: No, it's—
A7-1: This looks pretty clean cut. What do you see down that way?
A7-3: Not much. It just keeps going down.
A7-2: I smell something. Ozone.
A7-1: Yeah, me too. What's our clock at?
A7-3: Something written on the wall here, I can't make it out.
A7-2: 13 minutes.
A7-1: We've been down here too long already.
A7-5: Too long.
A7-3: You want to head back?
A7-1: I'm thinking we need more equipment, maybe more—
A7-6: Too long.
A7-2: I'm fine with that. I don't want to go down there yet.
A7-4: I'll go first this time. Everybody squeeze in.
A7-7: Too long in the fire.
A7-1: Let's go.
(Time passes. Extraneous dialogue removed.)
A7-2: Thank god, I can see again.
A7-3: There's the access shaft.
A7-4: Hang on. Did you say something?
A7-3: No?
A7-4: Who— What are you?
A7-2: There were only four of us, right?
A7-6: There were only four of us, right?
A7-1: Jesus f███ing—
A7-7: There were only—
(Gunshot)
A7-5: Too long in the fire, too long in the fire, too long in the fire, too—
A7-1: Shoot the goddamn gun Daniel, I don't care who it sounds like.
(Gunshot)
A7-6: We've been down here too long already.
(Gunshot)
A7-1: Who the f███—
A7-3: They're wearing our uniforms, how—
A7-4: That one is smoking, it's on fi—
A7-1: Stand back!
(Violent combustion)
A7-2: What's it saying?
A7-1: Get the f███ do—
(Violent combustion. All recording devices cease function.)
[END LOG]
Note: Following these events, MTF A-7 was removed from the access shaft and given a physical and psychological evaluation. A7-1, -3, and -4 suffered minor lacerations and burns as a result of the explosion, and A7-2 was moved to Site-Delta for his injuries.
The three unidentified individuals who attacked the members of MTF A-7 all wore the exact same uniforms and equipment as the other members of the unit, and were confirmed to have exactly mimicked the voices of other team members. This, combined with the low lighting and tight quarters is believed to have contributed to the team members' inability to distinguish exactly how many individuals were with them at the time.
:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
Further interviewing of Subject-0004 is permanently forbidden. -Dr. Sturhahn
Item Status: Unsuppressed (ANTIDEKU is currently under maintenance.)
Special Containment Procedures: Web analysis bot Iota-9 ("ANTIDEKU") is to be kept in constant operation and checked for defects twice a week by a Level-2 staff member. When functional, the bot will search a wide range of online message boards for posts created by individuals previously declared deceased. If a manifestation of Subject-0004 on a website is confirmed, the bot will initiate a distributed denial-of-service attack against the site until personnel are able to either permanently remove the site from operation or convince the site's administrators that Subject-0004 is a person of malicious intent.
Description: Subject-0004 is an anomalous entity that sporadically joins and integrates itself into small online communities such as message boards and wiki databases. Subject-0004 uses a different name on each website it joins; however, every recorded username chosen by the entity has either been "Izuku Midoriya" or just "Deku". All efforts to trace Subject-0004's source have failed. It is currently unknown whether Subject-0004 is a corporeal entity accessing the internet from a physical location or an incorporeal phenomenon that exists only on the internet itself.
Within nine weeks of initially joining Subject-0004 will formally introduce itself to the online community either through a post or through sending a variety of private messages to established users. Within nine days of replying to Subject-0004's introduction message(s) or post(s) the replier will be injured in a violent incident. Such occurrences have included accidents, homicides, and suicides. Although these incidents usually result in immediate death, there have been cases of victims being rendered comatose, brain dead, or similarly incapacitated. Investigations performed by local law enforcement units have determined all deaths to be apparently non-anomalous in nature and explainable by forensic evidence. In one case, investigators found evidence that an individual had started planning an armed robbery nine weeks before he had even joined the same message board where he replied to Subject-0004 introducing himself in a post. It is currently unknown if Subject-0004 is somehow influencing these events or if it actively seeks out individuals it knows will die.
After a victim of Subject-0004 is deceased or otherwise incapacitated, the corresponding online accounts of the victim will remain active in its respective online communities, posting content that is consistent with the victim's personality and writing style. The victim's online doppelgänger possess the same memories as their counterpart up until the time of their death, but deny that they are, in fact, dead (often accusing the inquiring party of being an "internet troll").
Addendum: Interview LogUnder the username "JohnDoe", Agent Niemand engaged Subject-0004 in conversation on 09/09/1479 via a private message. Subject-0004 had recently become a moderator on [REDACTED].net, an online discussion board for fans of the █████████ video game.
[BEGIN LOG]
9:00 JohnDoe: Hello
9:00 Izuku Midoriya: Hey there. Need something?
9:00 JohnDoe: asl?
9:01 Izuku Midoriya: Uhh… 17, male, can't say.
9:01 JohnDoe: whats your real name?
9:02 Izuku Midoriya: Izuku Midoriya. The same as my username. Why do you ask?
9:02 JohnDoe: just curious
9:03 Izuku Midoriya: Okay then…
9:03 JohnDoe: Because when we chatted back on the ██ ████ board, you went by the username Deku.
9:04 Izuku Midoriya: Ah. It's you guys again. Really insistent on getting an interview huh?
9:04 Izuku Midoriya: You people are probably going to shut down this site too though.
9:04 JohnDoe: Why are you killing people?
9:05 Izuku Midoriya: I'm not killing anyone, they're still alive. Your world's internet is a preferable afterlife to the Hel Odin has lined up for you over there.
9:05 Izuku Midoriya: You guys should be thanking me, I'm saving these people.
9:06 JohnDoe: What are you doing to them?
9:06 Izuku Midoriya: You mean my friends? I didn't hurt them or anything. They were going to die beforehand with or without knowing me.
9:07 Izuku Midoriya: It's just natural to want to help people you like. They were always saying they wished they could spend more time online anyways.
9:07 JohnDoe: Who are you really?
9:08 Izuku Midoriya: I'm not the same guy as the one who created you nor the one from the otherside of the █████ ████ who seeks to destroy you.
9:09 Izuku Midoriya: But I see more value in the people of your world than either of them.
9:09 Izuku Midoriya: You probably won't understand this, and for all I know you could be anybody. Or nobody at all.
[END LOG]
Subject-0004 blocked the JohnDoe account ending the conversation. Immediately after the conversation was closed Iota-9 ("ANTIDEKU") DDoS'd the site. Personnel were successfully able to ensure the site permanently ceased operation within 9 hours.
Subject's reply to Agent Niemand's last question is to be disregarded and considered nonsensical rambling.
The following is a list of what Dr. Triboulet is not allowed to do. It doesn't matter if he happens to be the head researcher or site director of your specific site. His authority does not override this list. -Dr. Sturhahn
- Dr. Triboulet is not allowed to taunt Subject-0001. We don't want a repeat of the Site Alpha incident.
- 9-1-1 is not the number one should contact when dealing with a containment failure.
- Dr. Triboulet must never come into contact with anyone under the age of 18.
- Don't let Dr. Triboulet enter Item-0003. I don't care how many times he says that he just wants to make new 'friends'.
- He is forbidden from using any form of the word 'accident' as an excuse.
- Dr. Triboulet is not allowed to challenge anyone to a duel.
- [REDACTED] not even for recreational use.
- Dr. Triboulet is not allowed to end reports with song lyrics. We don't want to know what's on your Woelkify Playlist.
- Dr. Triboulet is NOT a superhero, in charge of Orientation for new staff, made of bacon, a spy, or in possession of an iq of over 9000.
- 'Because reasons' is not a viable excuse for removing ANY item from containment.
- 'Guns' are not a proper solution to all problems. 'More guns' isn't either.
- Dr. Triboulet is not allowed to 'speed date' subjects in containment.
- If Dr. Triboulet has to ask for something it's above his clearance level. Don't give it to him.
- Dr. Triboulet is not allowed to declare war on any country, thing or person.
- An apple a day keeps the doctor away. Dr. Triboulet is not allowed to contribute to this list. Well ██% of staff here have their PhD, so I'd have to get a lot of apples to keep them away. This is not a challenge.
- Dr. Triboulet is not a knight and is not allowed to refer to himself as such. Especially on official documents.
- 'Deus Vult' is not an acceptable justification for any decision.
- A full minute of stunned silence means, "What the hell did you do," not "Please continue."
- If Dr. Triboulet is found to be getting high to escape doing paperwork he is to be contained in a class-4 cell and hosed down with cold water with a pressurized hose for no less than 5 minutes. Maybe this will teach him that drugs are bad. -Dr. Bouwers
- No matter how many times he may claim it and no matter how many costumes we confiscate Dr. Triboulet is not a ninja and never has been.
- Dr. Triboulet is not allowed to claim responsibility for earthquakes or any other natural disasters unless he is actually responsible for causing them.
- Any proposed containment procedure that includes the phrase "giant robot" is to be rejected immediately.
- If Dr. Triboulet is spotted near an armoury initiate Evacuation Procedure ██-███ immediately.
- Dr. Triboulet is not allowed to challenge Subject-0001 to a drinking contest. Even if he is positive he can win.
- Dr. Triboulet is not allowed access to any equipment belonging to the IT department.
- Dr. Triboulet is not the 'final boss' of anything.
- No matter how funny it would be Dr. Triboulet is not allowed to dress up Subject-0076 in a maid outfit.
- Dr. Triboulet is never allowed to meet any political figures.
- The answer to solve a containment breach is never to "recruit a team of teenagers who have a 'can-do' attitude and have them deal with it."
- Dr. Triboulet is not allowed to search for or talk to Subject-0004 online.
- Dr. Triboulet is no longer invited to the annual holiday party. Dr. Triboulet is not allowed to host his own annual holiday party. The annual holiday party is cancelled indefinitely.
- Dr. Triboulet is not allowed to consider this list a to-do list or use it as part of a resume.
- There is no such thing as 'Talk like a Pirate Day' and Dr. Triboulet is not allowed to claim otherwise.
- Dr. Triboulet is no longer allowed to interview new personnel. Especially if they ask for him specifically.
- Item-0963 is not to be given away as a 'good luck charm.'
- Dr. Triboulet does not have, '10 tones of gold stashed away somewhere in Site Delta.'
- Dr. Triboulet is not allowed to run through Site Kappa any site while screaming, 'THE MONSTER IS LOOSE' unless there's an actual containment breach.
- Do not let Dr. Triboulet bring his hat collection to work. I don't care how fashionable he thinks they make him look. -Dr. Akabane
- Dr. Triboulet is not allowed to come within 5 meters of any explosive or detonation device. We all remember what happened to Site Lambda
- YOLO is not a reason to do anything for Dr. Triboulet. Especially because it does not apply to him.






Per 



