scp-000000000

WELCOME TO THE LONGEST SCP ARTICLE ON THE PLANET! HERE YOU CAN SEE ALL KINDS OF SCP ARTICLES TO CRITIQUE ON, NO SEARCH REQUIRED.

Wow! You flipped a card and got: Arborvitae - IvanNavi!!! You ca reload the page or go to the next.
DATE: 04 Jun 2021 04:39

rating: 0+x
: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 #: SCP-XXXX

Object Class: Thaumiel

Special Containment Procedures: SCP-XXXX is currently inaccessible except for three individuals connected to SCP-XXXX. The three individuals are tasked with protecting SCP-XXXX; the 05-Council believes that they have no desire to harm SCP-XXXX or reveal its existence, and will abide by standing truce1. All media reports and academic journals papers related to SCP-XXXX are to be examined for potential accuracy. All organizations and individuals investigating SCP-XXXX existence are to be kept under surveillance by Foundation agents. Any information found accurate must be expunged or discredited or amnestics must be administered after questioning of those involved.

All decisions involving SCP-XXXX must be approved by O5-1 or the Administrator.2

Description: SCP-XXXX is a tree of undetermined species. Its height is estimated to be somewhere between 500-800 feet tall with an estimated 8-foot wide trunk. SCP-XXXX’s anomalous abilities restore and maintain Earth’s biome, keeping it in a minimal livable state. SCP-XXXX is able to restore Earth from a nearly destroyed state.
SCP-XXXX-A is a pocket dimension with SCP-XXXX in its center. SCP-XXXX-A appears to be a forest of undetermined size. The forest is home to non-anomalous flora and fauna. Fauna and Flora have been determined to be similar to examples found on Earth along with examples of believed to be extinct fauna and flora.
SCP-XXXX-B are the three individuals connected to SCP-XXXX, identified as the Gardener, Greenskeeper, and Caretaker. Their connection provides them a means to enter SCP-XXXX-A when in the presence of sufficient flora. The link they share with SCP-XXXX provides some protection and healing, such as restoring their minds and undoing other ailments that would prevent them from carrying out Procedure Greenhouse3. The link is transferred via title upon the previous title holder dying and a new individual taking it. The Greenskeeper and Caretaker have an apprentice on standby in case of sudden death. Each role is attributed to a member of a different species. The Gardener is human; the current holder of the title is O5-1. The Greenskeeper role is held by an instance of SCP-1000. The Caretaker role is held by an entity from the forest we do not name.
SCP-XXXX bears fruits similar to pomegranates, dubbed SCP-XXXX-C. SCP-XXXX-C a citrus fruit that when consumed will restore one’s body to peak condition. SCP-XXXX-C will begin to rapidly decay within 12-36 hours after it is removed from SCP-XXXX. Once SCP-XXXX-C begins to decay, it begins losing its anomalous properties.

Addendum XXXX.1: Exploration Logs

Addendum XXXX.2: Dr. Mallory’s Report

Addendum XXXX.3: Procedure Greenhouse Transcript Logs

Addendum XXXX.4: Extraction Log

Addendum XXXX.5: Interviews

Appendum XXXX.6: Experiments Logs: SCP-XXXX-C:

Addendum XXXX.7: Translation Of Sumerian Texts

Visual analysis of text found in SCP-XXXX suggests that some sections were written several centuries ago. Analysis confirms that they were all written by the same person, some sections written decades to centuries apart.
It was written in one of the earliest dialects known to the Foundation.

Wow! You flipped a card and got: scp-5426-J!!! You ca reload the page or go to the next.
DATE: 04 Jun 2021 03:22

rating: 0+x
URL-GOES-HERE

CAPTION-GOES-HERE

Item #: SCP-5426

Object Class: Euclid

Special Containment Procedures:
scp-5426 is to be placed in a standard locker at all times unless for testing and scp-5426-j is allowed to freely roam the sites with proper maintenance. scp-5426-J is to never be provoked and should be kept in a calm state at all times, same with the other instances from scp-5426.

Description:
scp-5426 is a simple box that can create model kits based on various items, it mainly makes model kits based on the, "Gunpla," series from Bandai, based on the famous series," Gundam." Each time a model kit is completed, the model comes to life and will listen to the builder's words or messages and a new model will appear in the box. Each of the weapons that were created in the model are also able to mimic the abilities of the weapons in the Gundam series. For example, the hyper bazooka, while being incredibly powerful in the series is significantly weaker as it's smaller, being a model kit accessory. they are all 1/144 scale however, for any real damage to be done you would need an armies amount of the scp-5426 instances. the one instance that sticks out the most is scp-5426-j, which is a model based on the DOM test type kit, a one eyed model kit that has a mind of it's own and has the memories of a young child named," Jamie/James." SCP-5426-J can feel emotion, however it cannot cry, laugh, or make facial expressions, due to it's body being a model the only real "Technology" it can interact with are it's weapons. It can write however and any outside technology, such as a keyboard, it can also interact with to a limited degree since it is at 1/144 scale. SCP-5426-J is non-aggressive, however it will attack if provoked. When tested against scp 682, the hard to kill reptile, 5426-J seemed to prefer attacking from long range with stealth as it's main style of fighting. however 5426-J seems to prefer to not fight all together, instead using it's weapons as tools, mainly dealing in metal work. unlike instances of the base scp-5426, 5426-J would not listen to any staff member, not even Dr. [REDACTED] who first built the kit. Instead 5426 seems to have a will of it's own, being able to draw, write, and even create instances of scp-5426 on it's own. However scp-5426-J is easily distracted and will try to find whatever it is that is distracting it. scp-5426-J seems to interact with SCP-085 when possible, having a certain look in it's eye as it does, almost as if it knows scp-085. when separated from scp-085, scp-5426-J seems almost depressed, sometimes drawing scp-085 in static form. Oddly enough it appears that SCP 5426-J can control some instances of "Endless model box" as if it was intended for him, when asked if it knew it could do this it simply wrote "If I knew I could I would have long ago." When it was discovered, scp-5426-J was in a box separate from scp-5426 but the samples from the other box seem to mimic those found in scp-5426. The details of said box were worn out and hard to read aside for, "From big brother [REDACTED] and big sister [REDACTED]." scp-5426 also had skeleton missing one of it's eyes on it. when the box was opened, there was a note found in it. the full note reads as follows.
"To my stargazing little brother,
Happy birthday Jamie! (Nickname) I can't believe your ten already. I figure you where board of watching those robots on the screen so I bought you one, this one though you have to put together like a puzzle. This one is called a [REDACTED]. One of your favorites right? Never stop reaching for the stars.
Love
Big brother."

Note- further study has shown that 5426-J's mind can age, but not the body as it is just a model.

Addendum:
now playing, interview audio log #5426

Doctor: Who are you?

J: "My name is Jamie" 5426-J wrote.

J: "Where am I?" It wrote

D: A hospital, you were very sick.

D: How old are you?

J: "I turn ten next week. Or was it nine?" It then wrote unsure."

J: "Why am I a robot?" Jamie wrote as it looked at it's hands, moving then in shock.

J: "Why can't I speak?" He wrote, his writing getting less legible.

J: "Where's my big brother? Where's my big sister?" Jamie wrote. The writing was very shaky.

J: "Why do I ear sirens?"

D: What do you mean?

J: "I hear sirens…nuclear warning sirens…" Jamie wrote as if he was having a PTSD like flash back.

Soon after 5426-J stopped writing, and just stared into the void.
-end of recording

[[footnoteblock]]
Note- further study has shown that 5426-J's mind can age, but not the body.

author's note- this was an idea that my friend had for an scp and he asked me to put it on the official scp website, if you like it please upvote him and I would greatly appreciate it.
Wow! You flipped a card and got: My Name's Not Tim!!! You ca reload the page or go to the next.
DATE: 04 Jun 2021 01:44

http://scp-wiki.wikidot.com/my-name-s-not-tim

My Name's Not Tim

Ah, hello! Thanks for stopping by. And not just an ordinary "hello" and "thanks for stopping by" that you'd get from all other author pages and interactions with… "people", this is a very special hello and thanks for visiting my author page, COMPLETELY unlike any other you've ever received.

I heard you say "what makes it special?"
And I'm glad you asked!

Anyway, since you've visited, you are obligated by a strict covenant between myself and you, the reader, that requires you to read all of the below works and upvote and comment on each, else one of the following things will happen:

  1. You'll notice you itch somewhere on your body
  2. You'll become very aware of how often you blink
  3. The Demon Kl'Fthgnptk will arise from their damned slumber of ten thousand nightmares, dragging you down to The Land Darker Than Dreams7 for eternity8
  4. Nothing (most common roll)

Please note the covenant that you have agreed to by accessing this page is non-binding, so.

The ListPages module does not work recursively.
The ListPages module does not work recursively.
The ListPages module does not work recursively.
The ListPages module does not work recursively.
The ListPages module does not work recursively.
The ListPages module does not work recursively.
The ListPages module does not work recursively.
The ListPages module does not work recursively.

First one I ever wrote. Went down pretty well.
Helped me notice that most of the stories I'd been writing had a theme of being trapped.
I wouldn't think about it too much, if I were you.
[[/collapsible]]

guuuuuuuuuuuhhhhhhhhhhhhhhh
Wow! You flipped a card and got: Aaris!!! You ca reload the page or go to the next.
DATE: 03 Jun 2021 23:05

rating: 0+x


Assigned Site Site Director Research Head Assigned Task Force
CANUST Site-16 Nane M. Andrei Dr. Armalius Whyle Zeta-6 "Wood-rangers"

Special Containment Procedures: All SCP-XXXX instances have been removed by Foundation agents from their original location. Any further instances are to be transferred to Site-16 and stored in the light containment area. Any experiment with SCP-XXXX
is to be conducted following level 2 biohazard procedures.

jay-mantri-TFyi0QOx08c-unsplash.jpg

SCP-6000-1's interior prior to containment.

Description: SCP-XXXX are a pair of 3 monoliths9 approximately 2,5 meters in height made from an unknown metal that has been originally discovered in California, Utah and Romania, respectively. Upon direct physical contact with one of the monoliths, a person will gain what is presumed to be complete omniscience. The subject will then attempt to commit suicide via the fastest way available. it is presumed that complete omniscience will show the mind that


Addendum 1.01 - Incident A.1001-XXXX


alien spotted mysterious things at the site

image with map and highlighted location of the monoliths


Addendum 2.01 - Interview with D-2335


what happens to your D-2335

note: taken to the SCP where you can,t die

[[footnoteblock]]
Wow! You flipped a card and got: SCP-5XXX - To the Seekers of the Heart of Little Tunes!!! You ca reload the page or go to the next.
DATE: 03 Jun 2021 20:33

File Register #: 5XXX


Pretenders of the Heart of the Tunes

Danger? Yes

Hostile? Yes

Range Class: Worldwide

Risk Class: Caution

VERDICT: Chaos - Death Lurking

Safety and Caution Procedures:

If you are walking alone in a remote place, and hear a whistle of nostalgic tunes

Don't whistle back yet

Hold a mirror or something reflective first

If you do not see anyone in it, then you can whistle back

But if you do…

Run: Look forward, seek a place with other people.

That was not the Heart of Tunes who called out to you.

Melissa Chang, Society of Charting the Paranatural Global in PArtnership with the Seekers Collaborative Pipeline

Description of Anomaly:
The Pretenders are a group of entities that target Seekers of the Heart of Little Tunes through the mimicry of the whistling calls of the Heart of Little Tunes. Seekers who respond will immediately get physically attacked by the Pretenders and will find themselves unable to harm the Pretenders in any method, with all their attacks seeming to have no affect on them.

According to survivors, various humanlike beings consist of the Pretenders (whether this is based on any form(s) of the Heart of Little Tunes is unknown, given that the latter has not been seen by anyone, not even deities). Though none of the Pretenders have displayed any supernatural attributes, their aforementioned ability to remove their target's ability to harm them makes survival difficult. Additionally, should their intended victims escape, Pretenders will give chase, until the intended victim either escapes or is sighted by another entity, causing the Pretenders to give up and hide.

According to survivors, beings that consist of the Pretenders come in many form, with many of them demonstrating supernatural abilities of their own. However, they all share the attribute of wearing a brown hat and a brown trenchcoat with music notes drawn on it and black boots (whether this is

It is unknown precisely what happens to the Pretenders do to their victims; however, they are believed to be responsible for a previously-unconnected anomalous phenomenon, where the corpse of missing people who were seeking the Heart of Little Tunes were found in random locations, with the insides of their body replaced with music sheets bearing noticeable imitations of the icons and signatures of music sheets left by the Heart of Littles Tunes.

Perspectives from Songnimator Yue:

Many artistic-minded people seek out the Heart of Little Tunes.

Their music have been a great contributors to the Public Domain: glorious tunes that have been rendered by many in their own way.

Well, I have measured the Song Essence of the music notes of the Pretenders. And it is clear:

They all share great similarities with that of the notes of the Heart of Little Tunes

Maybe it's a tribute.

Or maybe it's a cruel mockery.

Maybe they want the Heart of Little Tunes to meet them.

Maybe this is an attempt to lure out Little Tunes.

Maybe they all want to be the Heart of Little Tunes and this is all their individual attempt to take over the Conceptual Essence of the Heart of Little Tunes through a Song Essence Supersede Ritual.

Or maybe it's just their fancy.

The Heart of Little Tunes is a mystery; even the Wanderer's Library does not say much.

I guess it is fitting then for the Pretenders to be a mystery too.

Wow! You flipped a card and got: Secure Facility Dossier Site 21!!! You ca reload the page or go to the next.
DATE: 03 Jun 2021 20:06

SCP Foundation Secure Facility Dossier

Site: Site-21

Official Designation: SCP Foundation North Carolina Research and Containment Facility

Site Identification Code: USGNC-Site-21


General Information


Purpose: The purpose of Site-21 is to research and study anomalies, as well as containing them. This site was made and is known for multitasking and containing not just anomalies, but huge, powerful power, as well as defending and helping other sites in need.

Founded: November 3, 1943

Location: Greensboro, North Carolina, United States.

Notable Above Ground Facilities: [DATA EXPUNGED]

Cover Story: Site-21 was built with many km of the underground in North Carolina, Greensboro. The foundation uses this facility to contain anomalies underground so it's harder for them to break out. They use high-tech security, they have multiple undercover vehicles, as well as multiple entrances that go from underground, to the surface.

18581513423_3eba46da42_b.jpeg

Site-21's entrance, leading to the elevator.

Size:
The entrance total land 2km

Underground facility total land 120km


»»»»»»sdpfiojsoiudfghosuidfghoui Restricted Sections


[DATA EXPUNGED]


n Staffing Information


3715788115_bd03cbbc0c_o.jpeg

Commander David Martin

Site Director: Dr. Scott Murphy
Asst. Site Director: Dr. Meria Perry
Asst. Director of Personnel: Dr. Frank Porter Green
Asst. Director of Facilities: [REDACTED]
Asst. Director of Research: Dr. Janet Parker
Asst. Director of Security: Benjamin Henderson
Asst. Director of Containment: [REDACTED] Howard Smith
Asst. Director of Task Forces: Commander David Martin

On-site Personnel

  • Department Heads: 177
  • Medical Staff: 323
  • Staff Researchers: 2,561
  • Administrative Personnel: 54
  • Engineers: 497
  • Security Personnel: 5,599
  • D-Class Personnel: 3,296
  • Civilian Employees: [DATA EXPUNGED]

n Anomalies Currently Contained at Site-21


SCP ID Object Class
SCP-5392 Tiamat
SCP-5342 Safe
SCP-5469 Thaumiel

(And much, much more SCPs that are not listed because of classification.)


Wow! You flipped a card and got: MisterIodine!!! You ca reload the page or go to the next.
DATE: 03 Jun 2021 15:11
Wow! You flipped a card and got: Kamelen800-1!!! You ca reload the page or go to the next.
DATE: 03 Jun 2021 13:42


rating: 0+x



Does the Black Moon howl?

.

.

It does not, but we will make it.

.

.

.

.

.

.

.

.

.

.

.

Identity verified. Welcome, o5-8.

.

.

.


header.png

Header.

Special Containment Procedures: SCP-6347 is is currently contained in Site-01 within a standard Euclid-class cognitohazard container, modified to hold two seperate, smaller anomalies. This containment unit is nonstandard both in composition and location, as it is located in close proximity to the Site-01 War Room. All cameras in proximity to these containment units have been replaced with sonar sensors, and personnel are generally advised to not at any time allow any part of SCP-6347 to enter their field of vision.

The part of SCP-6347 hereby referred to as "BODY" is contained within the east part of this chamber, where it is held within a modified seminumanoid Euclid-class containment vessel. This vessel is altered to allow personnel to connect electronic stimulation electrodes to what's assumed to be SCP-6347's central nervous system.

The "HEAD" of SCP-6347 is contained within the west part of the aformentioned containment unit. HEAD is suspended within a modified OSCAR-vat altered to hold visually cognitohazardous material.

ECMO-based life support device combined with IV drip and intense, active medicination is currently in use to have HEAD and BODY remain animated despite SCP-6347 having been declared clinically dead and these otherwise integral body parts having been disconnected from each other.

Should the anomaly breach containment, a strike team comprised of Mobile Task Force Alpha-01 "Red Right Hand" members is to be dispatched to recontain the anomaly. Strike team members are to be wearing standard Tier-E4 recontainment gear, but more importantly, SOD.02 Sonar vision goggles. Agents are permitted to terminate armed personnel exposed to the cognitohazardous effects of SCP-6347.

Description: SCP-6347 is a hostile, cognitohazardous anomaly of extradimensional origin. The exact appearance of SCP-6347 is unknown due to it's cognitohazardous properties, but the anomaly has during sonar scans appeared vaguely humanoid in shape, with a height of 167 centimeters and a weight of 41 kilograms.

SCP-6347 is capable of controlling how it's percieved on an individual basis. This means that, for example, the anomaly can appear as 10 different objects to 10 different subjects, despite these subjects all viewing the anomaly at the same time. This includes perception through visual medium such as mirrors, image and video, but also how persons remember seeing it. This effectively means that SCP-6347 is capable of changing some of the memory of those who have visually percieved it, for the duration of that memory. However, these anomalous effects do not include sonar imaging. This is considered the only safe way to view any part of SCP-6347.

The anomaly in question will often use it's cognitohazardous abilities to give temporary amnesia to those it deems as potential threats, or to emulate generally disturbing or confusing imagery in order to create a shock response.

In direct close combat encounters, SCP-6347 will utilize clawed appendages that excrete a substance classified as L-530. This substance is described as thick and molasses-like in consistency, but posesses the same visually cognitohazardous properties as SCP-6347. Notably, this substance causes a full override of the visual nerve when it enters a human bloodstream, causing similar perceptions in subjects but not limited to when they're looking at the anomaly itself. Instead, these are described more as full "trips" or "fever dreams", believed to be fully controlled by SCP-6347.

File Update [DATE]: Since DATE, anomaly has lost parts of it's anomalous properties. SCP-6347 is still unable to be visually percieved without the use of sonar vision, but will no longer knowingly retroactively alter it's appearance as a method of self defense. Compound L-530 underwent a similar change. Anomaly is still considered alive and of use in the GLOSSOLALIA program.

Addendum 6347.1: On 12/11/1924, the Foundation formed the Insurgency company and had them join the Operation Sawtooth effort, a covert operation conducted to eliminate the 'Faeries', an anomalous human subspecies. Operation Sawtooth was originally started in 1911, and was kept secret to large part of the Foundation. During or following this operation, the majority of the Foundation's Insurgency company went AWOL, forming the Chaos Insurgency, a still active anarchist militia.

Note recovered from Pvt. Adrian Matthews of the SCPF Insurgency company, 1924.

I'm utterly appalled by my own actions, and the venomous words of the Overseers that led my hand astray. I was a good man up until today and cannot believe what me and other otherwise good men can be tricked into with ideological reassurance and utter propaganda. The Overseers are truly despicable I tell you.

They sent me and my squad in as reinforcements following a flame thrower squad, and I have never in my darkest of nightmares witnessed such horror. Men, just like you or me, on fire, or shot dead, or bleeding out. We were ordered to shoot anything that moved. Afterwards, I wanted to shoot myself.

These civilians were only violent as a result of our actions, and killing them did not protect my safety or interests, so where was my say in this? Let the men in power fight their own wars, I say.

Today is the day I abandon my post. I was taken in and promised grandure and was given tall tales of heroism and spectacle, of the underdog fighting for what's right, but all I have done is assisting in the slaughter of those less fortunate. I have to find a way to amend my mistakes. May the lord have mercy on me.


Wow! You flipped a card and got: hungrypossum!!! You ca reload the page or go to the next.
DATE: 03 Jun 2021 06:38
: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)); }
}
rating: 0+x
: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)); }
}

Special Containment Procedures: Foundation web-crawlers are to search for and delete SCP-6101 instances, both image- and text-based, off of all major social media platforms. Foundation personnel have been embedded in the administration and moderation teams of said social media platforms to further monitor and restrict the spread of SCP-6101. Counter-Meme FCM-6101 instances are currently being developed on a case-by-case basis to diminish transmission of SCP-6101.

Description: SCP-6101 are widespread instances of text and image based memetic hazards, coloquially known as "copypasta". Instances of SCP-6101 usually depict the author's intense and often hyperbolic distaste for a certain topic of discussion. Viewing an instance of SCP-6101 has a chance10 of causing viewers to share a similar opinion as depicted in the instance. Affected individuals, referred to as SCP-6101-A, will then spread the SCP-6101 instance they were exposed to, usually by posting it as a response to social media posts relating to the topic critiqued in said instance.

SCP-6101 instances often present themselves as ironic and humorous in nature, and satirize the topic being discussed. The object of SCP-6101 instances often pertains to popular media at the time of creation; however, a small percentage have been found to relate to more diverse concepts, such as leaving online communities, faith, humor etc.

Upon questioning, SCP-6101-A individuals will claim the reason for posting to be "it made sense", "I thought it'd be funny" or similar such phrases.

Discovery: SCP-6101 was discovered after an instance had been attempted to be posted onto the SCiP-Net Social Forums. Memetic hazard detection systems alerted RAISA to the anomaly, where the spread was promptly halted. A non-anomalous version of the chat logs are included below.

NON-ANOMALOUS CHAT LOGS, SCP-6101 DISCOVERY


OyyJoyy: so were the flamingoes hurt?
Moonever: i dunno, he said that they were totally fine
Ecro89: yknow its pretty sus that he was near the flamingoes in the first place
DrSilver: sus 😳
Ecro89: amoegus
Moonever: [MEMETIC HAZARD CENSORED]
Secretary_Helenbot: User Moonever has been kicked from the chat. Reason specified: Attempted to post Memetic Hazard. RAISA has been contacted.
Ecro89: …wot
DrSilver: 👀
OyyJoyy: the hell was that
DrSilver: Why would Never post a memetic?


END LOG

After sufficient memetic scrubbing, the following text-based instance of SCP-6101 was recovered:

STOP POSTING ABOUT AMONG US YOU NEANDERTHAL TROGLODYTES HOLY [COGNITOHAZARD EXPUNGED] OTHER DAY EIGHT (8) FRIENDS ON INSTAGRAM SENT ME THE SAME "WHEN THE IMPOSTER IS SUS" MEME. MY MOTHER LOOKED AT THE TRASH CAN AND SAID "WOULDNT YOU SAY THATS A BiYT SUSSY" WOW SO ORIGINAL! EVEN WHEN THEY TOLD ME I WAS ADOPTED THEY DID IT WITH "THERE IS AN IMPOSTOR AMONG US" JESUS CHRIST! (Get it? JeSUS)


Wow! You flipped a card and got: Obearserk!!! You ca reload the page or go to the next.
DATE: 03 Jun 2021 06:10
rating: 0+x
URL-GOES-HERE

CAPTION-GOES-HERE

Item #: SCP-XXXX

Object Class: Euclid

Special Containment Procedures: SCP-XXXX is to be kept in an air-tight containment cell at all times.
SCP-XXXX must be fed three times a day with red meat. Complete sedation of SCP-XXXX must occur before delivery of every meal by D-Class personnel.
Personnel dealing with SCP-XXXX are encouraged to address it by its given name, Megan; however, usage of its name outside of interactions with it is highly forbidden.
SCP-XXXX can be provided with special requests as long as they do not imply further human interaction. SCP-XXXX has access to a computer with an internet connection; use of the computer must be fully supervised at all times following Valentine's incident.
Access to psychiatric and psychological services to both SCP-XXXX and personnel interacting with it is of utmost importance.
In the occurrence of a breach, a specialized task force must be deployed with odorless suits, and a perimeter of roughly 2 miles in diameter must be secured and evacuated around the location of SCP-XXXX.

Description: SCP-XXXX is a 21 years old female human, it possesses three extra appendages: a pair of scaly wings and a plaited tail. It is odorless and possesses a keen sense of smell. Its forearms and forelegs are covered with a thick layer of short fur, and its nails turn into sharp and durable claws in both its fingers and toes. SCP-XXXX has a crown of horns on its scalp that reach through its hair and range from 1 to 5 inches in length. It possesses every facial feature you'd expect from a human female its age, except for its eyes; while it does have eyelids, it does not need blinking as its eyes are covered with a thin but extremely durable transparent keratin layer that protects them from the environment. It has 7 irises. Personnel dealing with SCP-XXXX describe an underwhelming feeling of uncanny valley when looking it in its eyes; the longest any person has been able to maintain eye contact without succumbing to fear has been 7 seconds. SCP-XXXX also possesses a carnivorous denture. SCP-XXXX has a very heavy and pronounced muscular structure despite never engaging in physical training, as well as 0% BMI.

SCSCP-XXXX possess immense strength (without known upper limits) and durability, accompanied by a very strong regenerative factor, capable of regenerating full appendages given sufficient time; for regeneration of an arm, it will need a two month period. SCP-XXXX is very smart and has a very compliant attitude, it is non-aggressive as long as it smells no human in its vicinity. When SCP-XXXX smells a human it enters a state of predation and immediately attacks by stinging, crushing, mauling, and eating all humans it smells. SCP-XXXX is not malevolent, and must not be treated as such, it expresses extreme distress when remembered of its attacks on humans or any other living animal, it shows heavy remorse and shame on its actions. It recalls being more humanlike in its early years and says it started to develop its anomalies when it turned 10; at first, being mildly excited by human smell, and having its first frenzy after developing the ability to produce poison at age 13.

SCP-XXXX's tail ends in a stinger that produces a highly digestive and neurotoxic liquid capable of inducing a powerful burning sensation while forcing the afflicted to reduce motor function; rendering them unable to move. Testing with this liquid in D-class personnel under usage of MRAs and computed tomography showed that it increased both neuronal activity and blood flow causing a state of hyperactivity while shutting down every skeletal muscle fiber. Sufficient amounts of this liquid have caused blood vessels to burst from pressure, circulatory shock, and stroke.

Addendum: Valentine's incident:
SCP-XXXX is by almost all psychological accounts a young female human, thus it was given access to the internet and permitted to maintain social interactions via this medium with a select few of those who already knew about its condition before SCP Foundation interference, to promote mental well being and compliance with SCP personnel. The permitted interactions were: its two parents, its little sister, and a male neighbor around her age named Elliot. These individuals had sworn secrecy and were monitored 24 hours a day. SCP-XXXX appeared to develop romantic feelings for Elliot, which is believed to be why it breached containment on February 14th of 2017. SCP-XXXX was immediately tracked down to Elliot's residence where it was found crying and bloodied amongst the unrecognizable scraps of what used to be Elliot; it was fortunate that his parents were out for Valentine's dinner. SCP-XXXX was crying, but still biting down on Elliot's remains.
Following this event, A-class amnestics were administered to SCP-XXXX's family, and false memories were implanted to make them believe they only ever had one daughter. The privilege of social interactions with humans outside SCP personnel was revoked, and while usage of the internet was permitted, it is now monitored 24/7 to ensure it does not make any connections with people outside SCP jurisdiction.

SCP-XXXX understands why the Foundation does what it does, and is thankful for the help it has provided. This is why it has been granted many privileges many other SCP human and humanoid entities have been denied. However, personnel dealing with SCP-XXXX are to be reminded not to let their guard down, as the upper limits of SCP-XXXX's strength are currently unknown and it is certain that current equipment is incapable of physically restraining it if it wanted to escape.

[[footnoteblock]]