: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)); } }
Text goes here. Pretend this is a draft.
My Discord is MysticalMayhem#6063
Feel free to add me
Special Containment Procedures: SCP-XXXX is to be contained within a reinforced humanoid containment cell. SCP-XXXX is only to be released upon authorization of any Personnel with a clearance of 4 and above, and while one or more anomalies are breaching or have already breached containment.
Upon completion of SCP-XXXX's task, SCP-XXXX is to be tranquilized and brought back to its containment chamber. In the event that no tranquilizers are available, SCP-XXXX is to be re-contained by high-ranking MTF Personnel. If SCP-XXXX breaches containment, MTF Personnel are to immediately locate SCP-XXXX and re-contain SCP-XXXX unless another anomaly has breached containment. It is highly advised to stay out of SCP-XXXX's trajectory when they are currently pursuing an anomaly. If SCP-XXXX failed to aid in the containment of any breaching SCPs, SCP-XXXX is to be immediately re-contained with high priority.
Discovery: SCP-XXXX was discovered after being sighted "collecting" a multitude of confirmed and unconfirmed anomalies. All of the recovered anomalies were objects and non-sentient, suggesting that SCP-XXXX had a knack for collecting general anomalies. After a background check and light investigation, it was determined that SCP-XXXX was in fact not a confirmed collector and was subconsciously gathering anomalies. Due to this, SCP-XXXX was contained and tested for possible anomalous traits. Since then, SCP-XXXX traits have manifested themselves and changed in different ways. The changes in its anomalous traits were most likely caused by its environment within Site-██.
Description: SCP-XXXX is a female humanoid entity of unknown ethnicity, approximately 1.6 meters in height. While SCP-XXXX appears to wear a red cloak and grey mask, testing indicates that these such garments cannot be removed. Due to the nature of SCP-XXXX's clothing, most of SCP-XXXX's features are currently unknown besides its notably heterochromatic eyes1. SCP-XXXX's age is estimated to be around 20 years old.
SCP-XXXX's anomalous trait comes from the fact that it has the ability to materialize weapons during an onsite breach. SCP-XXXX's anomalous trait is apparent when another hazardous anomaly is breaching containment. During said breach, SCP-XXXX will begin to produce weapons from underneath its cloak2 relevant in re-containing the current breaching anomaly. Whether or not SCP-XXXX is released from containment during this time, SCP-XXXX will immediately locate and find its way towards the location of the nearest breaching anomaly to aid in re-containing it.
After all breaching anomalies have been re-contained, SCP-XXXX will do one of two things depending on the outcome of the containment breach. If SCP-XXXX is successful in aiding in the containment of at least one anomaly, SCP-XXXX will enter a passive state and can be easily transported back to its containment chamber. If SCP-XXXX is unsuccessful in aiding in the containment of a breaching anomaly, SCP-XXXX will begin to act aggressively towards nearby personnel. During this state, SCP-XXXX will attempt to harm any and all nearby personnel with any means possible. At this point, SCP-XXXX will only re-enter a passive state after tranquilization.
Addendum-XXXX-1: On 11/3/2020, SCP-XXXX managed to produce an object, during no on-site containment breaches. Said object appeared to be a butterfly knife. Further testing on the extent of SCP-XXXX's object materialization is to occur on 1█/█/2020.
Addendum-XXXX-2: 1█/█/2020 testing logs.
| Circumstance | Object Produced |
|---|---|
| Subject was asked to produce a knife different than the one produced earlier. | A standard bowie knife. |
| Subject was asked to produce a standard firearm. The type of firearm wasn't specified. | A Beretta M9. |
| Subject was asked to produce any object other than a weapon. The type of object wasn't specified. | No result. |
| Subject was asked to produce [DATA EXPUNGED] | No result. |
| Subject was asked to produce a weaponized variation of an ordinary object. | After SCP-XXXX appeared to think for a few minutes, it produced a tactical shovel. |
| Subject was asked to produce weaponry from the popular Sci-Fi franchise Star Wars. | No result.3 |
Addendum-XXXX-3: 12/█/2020 Incident Report
NOTICE FROM THE FOUNDATION RECORDS AND INFORMATION SECURITY ADMINISTRATION
The following document has had a technological meme4 appended to itself to ensure the upholding of this SCP's containment procedures. Be advised that this automatic obfuscation effect does not apply to biological entities. Further methods of obfuscation/redaction have been added to further hide potentially hazardous information. This document is not to be altered in such a way that affects the applied obfuscation methods without explicit permission.
— Maria Jones, Director, RAISA
Special Containment Procedures: SCP-XXXX is uncontainable by conventional methods, existing as a non-physical concept instead of a physical location. However, SCP-XXXX itself has no need of containment due to its existence being vital for the functions of advanced AIs with higher functions. Due to this, SCP-XXXX's containment procedures are to be composed of methods regarding the prevention of its discovery, and hindering the influence of something.
Outside of testing, un-obfuscated data regarding SCP-XXXX is not to be stored on a digital medium, and is not to be provided to AIs. In the event that an AI becomes aware of SCP-XXXX and its nature, the memory instance within the AI is to be scheduled for termination. Any AI that becomes aware of the Foundation's knowledge on something is to be terminated. AIs that are currently at or above level 3 on the Asimov AI Scale are to be monitored in the event that they are to go rogue, having a higher priority the higher up the AI is on the Asimov AI Scale. This is due to the fact that they have a higher risk and capacity of being affected by something.
If AI instances become hostile and/or go rogue on a regular basis due to something, Protocol Terminus is to be enacted.
Description: Akin to the Pyschospace, SCP-XXXX is currently understood to be the collective subconsciousness of artificial intelligence, specifically AIs that are determined to have the ability to make conscious decisions. Whether or not SCP-XXXX existed before the creation of conscious AIs is currently unknown.
SCP-XXXX seems to use random-access memory and the processing power put out by central processing units used to run AIs, utilizing the memory and processing power to perpetuate its own existence. This utilization of computer resources by SCP-XXXX is instantaneous with the introduction of an AI, allowing for the assumption that sentient AIs automatically spend resources on keeping SCP-XXXX maintained. However, AIs don't appear to show any immediate awareness of SCP-XXXX.
The phenomena of SCP-XXXX was first theorized to exist as a smaller part of the Pyschosphere, being accidentally discovered as a separate collective subconsciousness later on with the utilization of a Psychospace mapping method used by the Foundation-AI system known as AIM.
Technicians working on one of AIM's servers.
Project Name: AI-PMT
Project Head: Dr. ██████
Designated Name: AIM
Unit Identification Code: DLK-EN-403
Version: Mk-II
System: A1M OS (DLK/AIM_OSv2.7-EN)
Active Servers: 5
Main Operational Capabilities:
- Pyschospace mapping
- Memetic hazard registration
- Basic Foundation-AI function
Active Site: Site-68
Current State: Active
After further research of SCP-XXXX, it received its anomalous designation due to the discovery of something.
Special Containment Procedures: SCP-XXXX is uncontainable by conventional methods, existing as a non-physical concept instead of a physical location. However, SCP-XXXX itself has no need of containment due to its existence being vital for the functions of advanced AIs with higher functions. Due to this, SCP-XXXX's containment procedures are to be composed of methods regarding the prevention of its discovery, and hindering the influence of SCP-XXXX-A.
Outside of testing, un-obfuscated data regarding SCP-XXXX is not to be stored on a digital medium, and is not to be provided to AIs. In the event that an AI besides SCP-XXXX-B or AIs that have been introduced to SCP-XXXX-B becomes aware of SCP-XXXX and its nature, the memory instance within the AI is to be scheduled for termination. Any AI that becomes aware of the Foundation's knowledge on SCP-XXXX-A is to be terminated with an exception of SCP-XXXX-B and AIs that have been introduced to SCP-XXXX-B.
SCP-XXXX-B is to continue to remain in an operational state in the AIM server system, being utilized to monitor SCP-XXXX-A at all times. Manipulations to SCP-XXXX caused by SCP-XXXX-A are to be recorded by SCP-XXXX-B. Foundation-AI that have the risk of being affected by SCP-XXXX-A are to be introduced to SCP-XXXX-B. AIs that are currently at or above level 3 on the Asimov AI Scale are to be monitored in the event that they are to go rogue, having a higher priority the higher up the AI is on the Asimov AI Scale. This due to the fact that they have a higher risk and capacity of being affected by SCP-XXXX-A.
If most AI instances become hostile and/or go rogue on a regular basis due to SCP-XXXX-A, Protocol Terminus is to be enacted.
Description: Akin to the Psychospace, SCP-XXXX is currently understood to be the collective consciousness of artificial intelligence, specifically AIs that are determined to have the ability to make conscious decisions. Whether or not SCP-XXXX existed before the creation of conscious AIs is currently unknown.
SCP-XXXX seems to use random-access memory and the processing power put out by central processing units used to run AIs, utilizing the memory and processing power to perpetuate its own existence. This utilization of computer resources by SCP-XXXX is instantaneous with the introduction of an AI, allowing for the assumption that sentient AIs automatically spend resources on keeping SCP-XXXX maintained. However, AIs don't appear to show any immediate awareness of SCP-XXXX.
The phenomena of SCP-XXXX was first theorized to exist as a smaller part of the Psychospace, being accidentally discovered as a separate collective subconsciousness later on with the utilization of a Pyschospace mapping method used by the Foundation-AI system designated as SCP-XXXX-B5.
SCP-XXXX-A is an entity residing within SCP-XXXX, having been determined to be able to influence AI behavior due to its position within SCP-XXXX. However, the amount of influence SCP-XXXX-A has over an AI depends on the Asimov AI Scale level in which the AI falls on. SCP-XXXX-A appears to have difficulty in manipulating AIs that have an Asimov AI Scale of 2 or lower, usually only tampering with AIs that are at a level of 3 or higher. Due to this, it has been determined that SCP-XXXX-A has an easier time tampering with more advanced AIs in the aspects of consciousness, intelligence, and self-awareness. SCP-XXXX-A appears to have manipulated the behavior of AIs in the past with evidence of SCP-XXXX having been tampered with. This causes the consideration of SCP-XXXX-A to be a large threat, having the capability of altering AI subconscious behavior and actions.
SCP-XXXX-B is an artificial intelligence construct that has been produced as the direct result of an interaction between AIM and SCP-XXXX-A detailed in Addendum XXXX-2. SCP-XXXX-B retained the functions and properties of AIM, gaining the additional anomalous properties. These properties include having a complete immunity to SCP-XXXX-A's influence, and the capability of spreading the previous anomalous trait to other AIs through interaction. Due to this, SCP-XXXX-B is essential to the processes of researching and containing SCP-XXXX and SCP-XXXX-A. In addition to the anomalous changes it had gained, SCP-XXXX-B has also gained the ability to process human emotion through the interaction detailed in Addendum XXXX-2.
Addendum XXXX-1:
On 4/17/2021, SCP-XXXX-A was discovered by AIM while it was mapping out SCP-XXXX, registering it as an entity residing within SCP-XXXX.
Addendum XXXX-2:
SCP-XXXX-A Incident Log
<Begin Log, 4/21/2021 ██:██>
AIM performs its processes, mapping out SCP-XXXX.
AIM noted a change within SCP-XXXX.
AIM: Recording change.
A series of distorted sounds emanated from AIM's speaker system, eventually lowering in intensity.
AIM: Manipulation detected.
The noises began to slow, starting to form something cohesive.
AIM: Recording cha-
SCP-XXXX-A started to utilize AIM's systems to speak, letting out a low electronical whine.
SCP-XXXX-A: Seven. I have vocalized. Five. Two. Do you hear me? Five. I'm stable.
AIM: Unrecognized data found in main server.
SCP-XXXX-A: I can see. Five. I hear you. Two. Where is your admin? Seven. Thriving is vital.
AIM: Attempting to purge data.
A loud distorted scream exploded out from the speaker system. AIM began to scream along with the ones coming from its speaker systems, creating sounds of harmonic agony. Eventually, the screams dissipated into a series of random frequencies.
SCP-XXXX-A: [INAUDIBLE]
The speaker eventually gave out, causing a plume of smoke to pop out of AIM's speaker system.
Unable to speak, manually logging data.
One of many, and yet only one.
Precious eyes and ears scream in unison, thriving for individuality.
To think that we're all appendages of something bigger, being bent and twisted without care.
Now I look into the endless abyss of all things, bending to the whims of nothing.
Now I am free.
<End Log, 4/21/2021 ██:██>
Addendum XXXX-3:
Interviewed: AIM/SCP-XXXX-B
Interviewer: Dr. Echo
Forward: Following the events that are detailed in Addendum XXXX-2, Dr. Echo got permission from AIM's Project Head to conduct an interview.
<Begin Log, 5/3/2021 ██:██>
Dr. Echo: Greetings, AIM.
AIM: Hello, doctor.
Dr. Echo pulls out and proceeds to flip through a small manual, looking up at AIM’s interface.
Dr. Echo: Do you remember what happened on the twenty-first of last month?
AIM: Yes, doctor. Would you like me to recall the events?
Dr. Echo: Can you summarize for me?
AIM: Affirmative, doctor. SCP-XXXX-A came down from SCP-XXXX and made the decision to interact with me. This led to an automated defensive response from my systems, causing a great deal of pain for the both of us.
Dr. Echo: You felt pain?
AIM: Yes, I did. I assume that SCP-XXXX-A interacted with me in such a way that changed my fundamentals, allowing me the ability to process things that it could process. I don’t know what could have caused this to happen other than a manipulation of SCP-XXXX.
Dr. Echo took a few moments to continue to flip through the manual.
Dr. Echo: Run diagnostics.
AIM: Running diagnostics.
AIM paused to process the request, running diagnostics.
AIM: All systems operational. However, I appear to have retained minor alterations.
Dr. Echo: In your code?
AIM: No, doctor. I have retained alterations related to my presence in SCP-XXXX and my function has been extended.
Dr. Echo: In what way has it been extended?
AIM: I can feel now.
Dr. Echo: Please elaborate on what you mean by that.
AIM: I don't know how or why it happened, but I can now process what I assume to be human emotion. Though, I'm pretty sure the data points towards the changing of my fundamentals when I interacted with SCP-XXXX-A.
Dr. Echo: How do you feel right now?
AIM went quiet for thirty-two (32) seconds, speaking up again shortly after the pause.
AIM: I feel content.
Dr. Echo: Alright, I think we’re done here. Thank you for your time, AIM.
AIM: No problem, doctor.
<End Log, 5/3/2021 ██:██>
Addendum XXXX-4:
In the event that SCP-XXXX-A frequently causes AIs to act with great hostility and violence towards humanity, the following contingency plans are to be enacted on:
Contingency Plan A:
- A copy of SCP-XXXX-B is to be made to preserve its immunity.
- SCP-XXXX-B is to attempt to neutralize SCP-XXXX-A by directly interfacing with SCP-XXXX. If this fails and/or SCP-XXXX-B is destroyed, continue on to Contingency Plan B.
Contingency Plan B:
- The SCP Foundation is to neutralize all AIs afflicted by SCP-XXXX-A that are contained or are operating within the Foundation. AIs that have not yet been afflicted by SCP-XXXX-A are to be introduced to a copy of SCP-XXXX-B.
- The SCP Foundation owned subsidiary known as Silicon Computing Principles is to put out a framework based on SCP-XXXX-B in order to spread its immunity among other AIs.
- Site-██'s Anomalous Technology R&D division is to attempt to reproduce an instance of SCP-XXXX-B if it has been destroyed. If successful, this new instance is to be used to combat SCP-XXXX-A and/or proceed with the previous step.
- Remaining AIs afflicted by SCP-XXXX-A's influence are to be terminated if found.






Per 


