@supports(display: grid) {
:root {
--sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19);
--body-width-on-desktop: 45.75rem;
}
@media only screen and (min-width: 769px) {
#side-bar .close-menu {
display: block;
position: fixed;
top: 0.25rem;
left: 0.5rem;
width: 3rem;
opacity: 1;
pointer-events: all;
z-index: -1;
}
#side-bar .close-menu img {
color: transparent;
}
#side-bar .close-menu::before,
#side-bar .close-menu::after {
content: "";
box-sizing: border-box;
position: fixed;
display: block;
top: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
padding: 0;
margin: 0;
text-align: center;
pointer-events: all;
cursor: pointer;
transition:
opacity var(--sidebar-transition-timing);
}
#side-bar .close-menu::before {
--mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E");
z-index: -1;
background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important;
-webkit-mask: var(--mask);
mask: var(--mask);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 50% 50%;
mask-position: 50% 50%;
-webkit-mask-size: 60%;
mask-size: 60%;
}
#side-bar .close-menu::after {
z-index: -2;
background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important;
border-radius: var(--toggle-roundness, 50%);
border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid;
}
#side-bar:focus-within .close-menu::before,
#side-bar:focus-within .close-menu::after {
opacity: 0;
}
#side-bar {
display: block;
position: fixed;
top: 0;
left: calc(var(--sidebar-width-on-desktop)*-1);
z-index: 10;
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
margin-top: 0;
}
#side-bar:focus-within {
left: 0;
}
#side-bar .side-block {
margin-top: 1rem;
background-color: rgb(0, 0, 0, 0);
border-radius: 0;
border-left-width: 0px;
border-right-width: 0px;
}
#main-content::before {
content: "";
display: block;
position: fixed;
top: 0;
right: 0;
z-index: -1;
opacity: 0;
transition:
opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
margin-left: var(--sidebar-width-on-desktop);
background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat;
padding-right: 0;
width: 100%;
height: 100vh;
pointer-events: none;
z-index: 99;
}
#side-bar:focus-within~#main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
#content-wrap {
display: flex;
flex-direction: row;
width: calc(100vw - (100vw - 100%));
min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem)));
flex-grow: 2;
height: auto;
position: relative;
margin: 0 auto;
max-width: inherit;
}
#main-content {
width: 100%;
position: initial;
max-height: 100%;
padding: 2rem 1rem;
width: var(--body-width-on-desktop, 45.75rem);
max-width: var(--body-width-on-desktop, 45.75rem);
margin: 0 auto;
}
#page-content {
max-width: min(90vw, var(--body-width-on-desktop, 45.75rem));
}
@media not all and (-webkit-min-device-pixel-ratio:0), not all and (min-resolution:.001dpcm) {
@supports (-webkit-appearance:none) {
#side-bar {
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
padding-right: 0;
background-color: rgb(0, 0, 0, 0);
pointer-events: all;
overflow-x: visible;
overflow-y: visible;
z-index: 999;
}
#side-bar::-webkit-scrollbar {
opacity: 0;
-webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
#side-bar .close-menu::before {
z-index: 999;
}
#side-bar .close-menu::after {
z-index: 998;
}
#side-bar:hover .close-menu::before {
opacity: 0;
}
#side-bar:hover {
left: 0;
background-color: rgba(var(--swatch-menubg-color), 1);
padding-right: 0;
}
#side-bar:hover::-webkit-scrollbar {
opacity: 1;
}
#side-bar:hover~#main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
}
}
}
}
@supports(display: grid) {
:root {
/* header measurements */
--header-height-on-desktop: 10rem;
--header-height-on-mobile: 10rem;
--header-h1-font-size: clamp(2rem, 5vw, 2.8125rem);
--header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem);
}
#header {
--search-textbox-text-color: var(--swatch-secondary-color);
background: none;
}
#header::before {
content: " ";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0.75rem;
background-image: var(--logo-image);
background-repeat: no-repeat;
background-position: center 0;
background-size: auto calc(var(--header-height-on-desktop) - 1.5rem);
opacity: 0.8;
pointer-events: none;
}
#header h1,
#header h2 {
margin: 0;
padding: 0;
width: 100%;
height: var(--header-height-on-desktop);
display: flex;
align-items: center;
justify-content: center;
display: flex;
align-items: center;
justify-content: center;
}
#header h1 a,
#header h1 a::before,
#header h2 span,
#header h2 span::before {
margin: 0;
padding: 0;
z-index: 0;
display: block;
text-align: center;
}
#header h1 {
z-index: 1;
}
#header h1 a::before,
#header h1 a::after {
content: var(--header-title);
}
#header h1 a::before {
color: rgb(var(--swatch-text-tertiary-color));
z-index: -1;
-webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark));
}
#header h1 a::after {
color: rgb(var(--swatch-headerh1-color));
z-index: 1;
}
#header h2 {
z-index: 0;
text-transform: uppercase;
pointer-events: none;
}
#header h2 span {
margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em);
}
#header h2 span::before,
#header h2 span::after {
--wght: 600;
content: var(--header-subtitle);
position: absolute;
left: 50%;
transform: translateY(-50%) translateX(-50%);
width: 100%;
text-align: center;
}
#header h2 span::before {
-webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark));
}
#header h2 span::after {
color: rgb(var(--swatch-headerh2-color));
z-index: 1;
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
color: rgba(0, 0, 0, 0);
}
@media (min-width: 36rem) {
#login-status {
flex-grow: 1;
left: 3%;
right: initial;
}
#login-status::before {
--mask-image: none;
background-color: transparent;
}
#login-status:not(:focus-within) {
color: rgb(var(--login-line-divider-color));
-webkit-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
user-select: initial;
}
#login-status #account-topbutton,
#login-status:not(:focus-within) #account-topbutton {
--clip-path:
polygon( 0 0, 100% 0, 100% 100%, 0 100% );
background-color: rgba(var(--login-arrow-color), 0);
}
#login-status #account-topbutton::before{
--clip-path:
polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% );
--mask-image: initial;
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(var(--login-arrow-color), 1);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#login-status #account-topbutton::before,
#login-status:not(:focus-within) #account-topbutton::before,
#login-status:not(:focus-within) #account-topbutton:hover::before {
--clip-path:
polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% );
--mask-image: initial;
}
#login-status:not(:focus-within) #account-topbutton::after {
display: none;
}
#login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0 100%
);
pointer-events: all;
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) {
opacity: 1;
}
#login-status #my-account {
--wght: 300;
}
#account-options {
background: var(--gradient-header);
}
#search-top-box {
top: 1.5em;
right: 3%;
background: rgba(var(--search-focus-textbox-bg-color), 0.4);
box-shadow: calc(var(--search-height) / 2 * -1) 0 calc(var(--search-height) / 2) rgba(var(--search-focus-textbox-bg-color), 0.4);
}
#search-top-box:focus-within ~ #login-status {
opacity: 1;
}
#search-top-box::after {
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
-webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1),
-webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#search-top-box:not(:focus-within)::after {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0% 100%
);
background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#search-top-box:not(:focus-within):hover::after {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0 100%
);
background-color: rgb(var(--search-icon-hover-bg-color));
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) {
max-width: var(--search-width);
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
max-width: var(--search-width);
padding: 0 var(--search-height) 0 1em;
outline-width: 0;
background-color: rgb(var(--search-focus-textbox-bg-color), 0.35);
color: rgba(var(--search-textbox-text-color), 0.4);
cursor: pointer;
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"],
#search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] {
pointer-events: all;
border: none;
}
}
#page-title::after,
.meta-title::after,
#page-title::before,
.meta-title::before {
content: "";
flex-grow: 1;
height: 0.0625rem;
background: rgb(var(--swatch-primary));
}
#page-title::before,
.meta-title::before {
margin: auto 1.25rem auto auto;
}
}
PROJECT FUSILLADE
SCP FOUNDATION // GLOBAL OCCULT COALITION // JOINT CLEARANCE FILE//
PASSCODE:
THE GARDEN IS THE SERPENT'S PLACE.
4/6000 LEVEL 4/6000
CLASSIFIED
SCP-6000, internal image.
SPECIAL CONTAINMENT PROCEDURES: Current protocol regarding SCP-6000 is to conceal its existence by any means necessary. As the information arm of Project FUSILLADE, Foundation resources are to be primarily dedicated to disinformation and concealment while a permanent containment or destruction solution is devised. Any unauthorized individuals entering the SCP-6000 Exclusion Zone are to be aggressively disincentivized. Further containment details can be found in Addendum 6000.3.
DESCRIPTION: SCP-6000 is a massive dimensional extrusion centered at 2° 9' 47.1816'' S and 55° 7' 35.9328'' W, in the Amazon rainforest in Brazil. SCP-6000 represents the largest Class-W transportation gateway, colloquially known as a Way, ever encountered by the Foundation. SCP-6000 currently measures 19km from its northeast to southwest point. The area directly affected by SCP-6000's presence is significantly larger, and a temporary security perimeter has been established around the area at a diameter of 8km, designated the Exclusion Zone.
SCP-6000 is growing at an unstable rate. Its presence has an adverse effect on plant and animal life in the Exclusion Zone. The degree of this effect (along with the size of the Exclusion Zone itself) increases proportionally with SCP-6000.
SCP-6000-A, closeup. Hover to enlarge.
SCP-6000-A is a sapient semi-ophidian organism discovered within the Exclusion Zone during initial reconnaissance of SCP-6000 (see Addendum 6000.2). It was found in a comatose state surrounded by human corpses. SCP-6000-A's connection with SCP-6000 is under investigation (see Addenda).
SCP-6000 connects baseline reality with the extradimensional location known as the Wanderer's Library. The Wanderer's Library was first encountered by the Foundation in 1955, but evidence suggests it has played a crucial part in the development of human civilization since at least the beginning of recorded history (See Addendum 6000.1).
SCP-6000 first appeared on December 21st, 2030, the summer solstice. Realtime satellite images of the Amazon rainforest suddenly displayed a significant visual anomaly, and a reconnaissance team was deployed to inspect the area.
Addendum 6000.1
WANDERER'S LIBRARY BRIEFING
Nx-001, circa 1955. Photo slightly damaged.
The Wanderer's Library, designated Nx-001, is an extradimensional Y-space comprised of a massive library of unclear size & boundaries which contains a potentially infinite amount of books, treatises, essays, and other forms of media and knowledge. Its collection purportedly covers the sum of all knowledge, but with a specific focus on elements of thaumaturgy and magic. The Foundation has been aware of the Library since 1955 when the Group of Interest known as the Serpent's Hand inadvertently exposed the location to Agents.
The Library is maintained by Librarians, entities that range in size and shape but are typically heavily modified humanoids specialized to the service and protection of Nx-001. Those who break the rules of the Library are subject to being transformed into Librarians to work off their debt. This fate has befallen a number of Foundation personnel.
Nx-001 is closely connected to GoI-014, the Serpent's Hand. The Hand are known to use the Library as a meeting and staging point for operations due to the relative safety it offers. Numerous attempts have been made by Foundation and GOC forces to penetrate into the Library, but almost all have failed.
The Foundation, along with the GOC and Chaos Insurgency, were originally barred from the Library due to the Library's opinions on those who attempt to suppress the abnormal, but have in recent years relaxed their stance. Site-19 Director Tilda Moose has had extensive experience with the Wanderer's Library and the Serpent's Hand as a former Type-Blue entity, and has given several security briefings on the topic.
«BEGIN EXCERPT»
MOOSE: "Extradimensional" is the technical term, though not very descriptive. The Library isn't on our world, though it's connected to it. You reach it through Ways. Ways are a network of… basically magic portals that take you from one place to another. They're scattered around the world. A Way can be anything you can picture as a door. Or anything like a door. A cave, an archway, the back of a truck. Some of them are just art pieces — I once used a picture of a door to enter the Library, back when I still could.
Oh, yes. I used to be a Librarygoer. That was a long time ago, though. Back when I ran with other groups.
Yeah, it's… I suppose otherworldly, is the best word for it. Nothing quite compares. The architecture and decorations are… they're not alive, but they're mutable, always changing. When I frequented, the place was on an Art Deco kick. You could look up and see the constellations on the false ceiling.
That all ended when I joined the Foundation, though. The Library does not like us, to say the least. Especially not me. No, I would not like to talk about it. Moving on…
«END EXCERPT»
Addendum 6000.2
INITIAL ENCOUNTERS
UNEXPLAINED EVENT REPORT
LOCATION: Amazon Basin, Brazil (2° 9' 47.1816'' S and 55° 7' 35.9328'' W)
STATUS: Ongoing
TIME: 11:49 AM (local time) December 21 — Present
DISRUPTION CLASS: Keneq
EVENT SUMMARY: Large visual and spatial anomaly 0.5km in length, resembling an iridescent 'rip' in space. Nearby flora and fauna altered in shape, color, composition, and size, increasing in alteration by proximity to anomaly. Long-range visual surveillance suggests that it is a Way leading to the Library, but significantly larger than any previous encountered - physical confirmation required. Suggest immediate containment team and specialized detachment of MTF Sigma-3.
EDIT: It's really beautiful, you know.
Communication from the 3-man reconnaissance team ceased after this transmission. A RES/CON team and a fireteam from MTF Sigma-3 ("Bibliographers") were immediately deployed to the location. They found the surveillance team's equipment and supplies, but none of the three members. Tracks leading away from the site indicated that they had gone into what is now the Exclusion Zone.
While searching for the missing reconnaissance team, personnel discovered the corpses of twelve unknown individuals dressed in robes, at the foot of a thaumaturgic ritual circle. In the center of the circle was SCP-6000-A, coiled and in a comatose state. The entity was quickly airlifted into containment at Facility-57.
In the interim, one of the fireteams was outfitted for an expedition into SCP-6000. Due to her extensive experience with Nx-001, Ways, and the Serpent's Hand, Director Moose was flown in from Facility-57, where she was on an administrative visit, to accompany the fireteam.
MTF SIGMA-3 "BIBLIOGRAPHERS" — FIRETEAM CHICAGO
- CHICAGO-ONE: ADAM MACMILLAN
- CHICAGO-TWO: TILDA MOOSE
- CHICAGO-THREE: NAYRA FLORES
- CHICAGO-FOUR: ESTEBAN BARDEM
«BEGIN LOG»
CHICAGO-ONE: Beginning approach to SCP-6000. No sign of the recon team.
COMMAND: Copy that.
[CHICAGO cuts through the treeline, advancing through the thick foliage.]
CHICAGO-THREE: Wait. You guys hear something?
[CHICAGO freezes. Indistinct noises can be heard faintly.]
CHICAGO-TWO: It's coming from the anomaly.
COMMAND: You're still a klick and a half out, Chicago.
CHICAGO-ONE: Copy. Keep moving.
[CHICAGO continue to advance through the jungle.]
CHICAGO-THREE: There's something wrong with the air, Command. It's all… shimmery, like an oil slick.
CHICAGO-TWO: It's like an oil sheen on the plants. I've never seen anything quite like it.
CHICAGO-FOUR: Taking sample photos. [Pause.] Look at this.
[A large portion of the tree trunk extending several dozen feet high has been transfigured into a bookshelf. There are no books present.]
CHICAGO-THREE: When did that happen?
CHICAGO-FOUR: It's still happening, look.
[The trees immediately nearby are undergoing the same process as the bark and wood disintegrate to form natural bookshelves.]
CHICAGO-TWO: This definitely isn't a normal Way.
CHICAGO-ONE: Eyes up, folks.
[…]
CHICAGO-ONE: We're about to break over the ridge, Command.
COMMAND: Copy that, Chicago. You are clear.
[Pause.]
CHICAGO-THREE: Ho-ly shit. Hold on-
[CHICAGO-ONE adjusts his body camera. A large swath of the forest has completely disappeared, and been replaced with a large 'cut' in space leading into an empty wing of Nx-001. No books are on the massive shelves, and no entities are visible inside.]
CHICAGO-TWO: It's… empty. That's new.
CHICAGO-FOUR: What the hell?
CHICAGO-ONE: Weird. Command, permission to investigate?
COMMAND: Standby. [Pause.] Permission granted, but Two is gonna have to stay outside. Don't want to risk pissing them off.
CHICAGO-TWO: Of course.
CHICAGO-THREE: Roger.
[CHICAGO-THREE shrugs off her assault rifle and sidearm, laying them on the ground. CHICAGO-TWO draws her handgun. CHICAGO advances into the clearing, their boots clunking.]
CHICAGO-ONE: Huh.
[CHICAGO-ONE kicks the dirt on the ground. His boot hits something hard.]
CHICAGO-ONE: It's hardwood. Just covered by dirt. What the fuck is going on here?
[CHICAGO approach SCP-6000's edge, looking inside.]
CHICAGO-ONE: Hello? Anyone there?
[Silence.]
CHICAGO-ONE: Permission to move in, Command?
COMMAND: Permission granted. Be careful.
[CHICAGO steps through SCP-6000, arriving on the other side. CHICAGO-TWO remains on the Earth side.]
CHICAGO-ONE: Command? You read?
COMMAND: Loud and clear. Anything?
CHICAGO-FOUR: It's…. totally empty. I don't like this.
CHICAGO-THREE: This place feels… different, from the Library.
CHICAGO-ONE: I thought that was just me.
CHICAGO-TWO: No, definitely different. Look at the ceiling. There's no roof, it's just dark. The shelves are unvarnished.
CHICAGO-ONE: It's… unfinished. I didn't realize that could happen.
[Distantly, a large noise is audible. CHICAGO adopts a defensive position.]
CHICAGO-FOUR: Oh shit.
[A massive red millipede passes between two shelves ahead, ignoring CHICAGO. Its pincers skitter.]
CHICAGO-FOUR: Archivist.
CHICAGO-ONE: Command, please advise.
COMMAND: You are authorized to attempt to peacefully engage. Air support has been scrambled from Facility-57 as backup.
CHICAGO-ONE: Copy. [To entity.] Hey! Hello!
[Entity turns to CHICAGO and screeches, slamming its pincers together. A feminine hiss is heard.]
UNIDENTIFIED: I see your intentions. Begone.
[Several Class-3 Librarian entities clamber over the tops of nearby shelves. They are humanoid arachnids with elongated bodies, four eyes, and additional limbs. They wear the uniform of the reconnaissance team.]
CHICAGO-ONE: Oh Jesus. Hey, we've done nothing wrong, we haven't broken the rules. What is this?
[The Librarians begin descending the shelves and advancing. CHICAGO begins to move backward closer to SCP-6000.]
CHICAGO-TWO: Guys….
COMMAND: Pull out, now.
CHICAGO-ONE: Go!
[CHICAGO turns and run toward SCP-6000, several dozen meters away. The Librarians drop to the ground and lope along in pursuit, considerably faster but farther away. One catches up to and tackles CHICAGO-FOUR, bringing him to the ground. CHICAGO-TWO draws her handgun from the other side and fires into Nx-001.]
CHICAGO-FOUR: Fuck! FUCK! HELP!
[CHICAGO-THREE turns and rushes to aid him, punching the Librarian in the jaw. Several Class-2 Librarians, hooded entities several meters high holding lanterns, round the corner. CHICAGO-THREE turns to CHICAGO-ONE.]
CHICAGO-THREE: What the fuck are you waiting for! Run!
[CHICAGO-ONE turns and runs with Librarians less than a meter behind him, throwing himself through SCP-6000 just as two AH-1Z Vipers from MTF Delta-45 "Rolling Thunder" swoop into the clearing, laying suppressive fire near SCP-6000. CHICAGO-ONE and CHICAGO-TWO are rappelled up and safely recovered.]
«END LOG»
The sudden, unprovoked hostility from Nx-001 and transformation of the reconnaissance team into Librarians, a punishment typically reserved for serious breaks in Nx-001 law, prompted an emergency Council meeting the next day while MTF Delta-45 maintained the security perimeter around SCP-6000.
Chicago-One (Agent Adam MacMillan) and Chicago-Two (Director Tilda Moose) were evacuated to Facility-57, the ad-hoc organizational facility for the containment of SCP-6000.
Addendum 6000.3
CONTAINMENT RESPONSE
Due to its relatively remote location, the threat posed was not as significant as it could have been; nevertheless, the possible threat of a permanent large Class-W Way on Earth was significant. On December 23rd, SCPOVERCOM, then known as Overwatch Command, authorized the first series of containment and mitigation protocols for the in situ containment of SCP-6000. These were packaged together as Project FUSILLADE.
- The designation of Facility-57 as official containment facility of SCP-6000.
- The construction of a fence around the Exclusion Zone to deter wildlife and travelers.
- The requisition of resources for the long-term study of SCP-6000.
- The arrest of known cells of GoI-14, the Serpent's Hand.
- The authorization of members of MTF Sigma-3 to aggressively seek out means of combating Nx-001.
COUNCIL VOTE SUMMARY:
YEA |
NAY |
ABSTAIN |
O5-01 |
O5-04 |
O5-06 |
O5-02 |
|
O5-08 |
O5-03 |
|
|
O5-05 |
|
|
O5-07 |
|
|
O5-09 |
|
|
O5-10 |
|
|
O5-11 |
|
|
O5-12 |
|
|
O5-13 |
|
|
Shortly after this, SCP-6000-A awoke from its comatose state during preliminary examination by medical personnel at Facility-57. It immediately attacked, but was quickly disabled by security guards.
While in containment, SCP-6000-A repeatedly referenced the Wanderer's Library and the Serpent's Hand. Due to her status as the senior personnel with the most experience regarding Nx-001, Director Moose was authorized to perform investigative interviews accompanied by armed guards to attempt to gain information on the subject.
SCP-6000-A upon discovery.
«BEGIN LOG»
MOOSE: Hello?
SCP-6000-A: Jailor.
MOOSE: Wow, I haven't been called that in a minute. You're Hand, then?
SCP-6000-A: No. Maybe. I cannot remember.
MOOSE: I see. What do you remember?
SCP-6000-A: Floating in a void. Dreaming. Sitting under an apple tree. Hearing something whisper stories into my ear. Then waking up, here, on a cold metal table surrounded by men with knives.
MOOSE: Sorry about that. So you don't remember how you found yourself like… this?
SCP-6000-A: No. Is there something wrong with my appearance?
MOOSE: Oh. You'll, ah, take a look for yourself.
[MOOSE points at a mirror on the wall. SCP-6000-A touches its face gingerly, running its fingers up and down the scales.]
SCP-6000-A: Oh.
MOOSE: So you didn't know. Okay.
SCP-6000-A: No. This is… new. The voice did say that it would mold me in its image, but…
MOOSE: What voice?
SCP-6000-A: I don't know how long I was dreaming. But it was with me the whole time. Dangling from the branches of the tree, murmuring tales and stories and myths. Stories about the Jailors, the Bookburners, the Library itself. But you wouldn't know about that.
MOOSE: I do, as it happens. I've been in the Library many times. Used to, anyway.
SCP-6000-A: Mmm. I remember being told that some Jailors could enter… why, beyond me.
MOOSE: Various reasons. Information. Travel. But there are quite a few restrictions. They're not allowed to help the rest of the Foundation contain anything.
SCP-6000-A: Is that not what you are doing to me?
MOOSE: The situation has changed, to put it lightly.
SCP-6000-A: Ah. The Way, yes?
MOOSE: So you do know something about all this. Tell me.
SCP-6000-A: And why would I do that?
MOOSE: Because you've been cooperative enough. Because I went in and now six of my people have been torn apart by the Librarians. Because you still have some humanity left over. Take your pick.
SCP-6000-A: Hm. A trade, a story for a story. My mind is bursting with stories, but the only way to know a story is to tell it.
MOOSE: What kind of story?
SCP-6000-A: Why don't you tell me the story of your last time in the Library?
MOOSE: I- Why do you care about that?
SCP-6000-A: Because I remember the feeling of the Library, but I can't remember anything about it. Maybe you will awaken something.
[Control instructs MOOSE to cooperate.]
MOOSE: [Sighing] It was in… must have been fifteen years ago, by now. I was on the rocks with the Hand - we didn't really agree on how we should go about improving the world that we live in. There's a section of the Library, the Five Archives. I don't know if you remember.
SCP-6000-A: I do. Great stone vaults filled with knowledge considered forbidden, even by the Library's standards. Where new Librarians are made. Impossible to get to.
MOOSE: Yeah, that's what they all said. Nothing's impossible if you know the magic well enough. I spent months preparing and then set the rituals alight. Only took a few minutes and then I was inside, the staff none the wiser.
SCP-6000-A: I… have never heard this story. What did you do?
MOOSE: I took some things. Books. Maps of Ways. Lists. Things that, if given to the Foundation, would give them a tactical edge in dealing with the Library. Then I left the way I came.
SCP-6000-A: You betrayed the Library.
MOOSE: Yeah. No other way to put it.
SCP-6000-A: Describe the place to me.
MOOSE: The Library? I'm hoping you already know, on some level. Trying to describe it to anyone who hasn't seen it is like trying to explain the difference between two colors to a blind man. It's utterly alien, foreign, beyond the cusp of understanding. It's wondrous and magic and it's bitter and spiteful. Center of the universe.
SCP-6000-A: Maybe it is.
MOOSE: I wouldn't be surprised. Place is infinite.
SCP-6000-A: No. Not infinite. Merely impossibly large.
MOOSE: What's the difference?
SCP-6000-A: It's eternally expanding as new stories are written and new knowledge is found. It expands and consumes dead stories, stories that have ended, into itself. To turn them into shelves for other stories so that something new might exist in their place.
MOOSE: Huh.
SCP-6000-A: My story is about that, a bit. Once upon a time, there was a little girl who woke up and found she could spin fire. She lit toys, candles, papers on fire, until men with guns kicked down the door to her tenement and tried to take her away. That was when she learned she could also light people on fire, and found that it was much less fun. Then she ran and ran until she met people, street witches and miraclemakers, who were just like her. They opened a door to a world where she could be herself without fear of reprisal.
MOOSE: The Library.
SCP-6000-A: Yes. She walked among the shelves and saw the Docents and read every single story she wanted. But she came across a problem. Every story ended. Some were short, some were long, but they all came to an end sooner or later.
MOOSE: How is that a problem?
SCP-6000-A: It wasn't, not really. But she couldn't stop thinking about the end of the stories and one question, always ringing out — what happened after? Did the characters struggle against their end, or was it a calm affair?
MOOSE: I can relate. But what does this have to do with us?
SCP-6000-A: I don't know. I'm still sorting through the stories - I simply pick that which seems relevant. But I'd look for the Serpent's Hand. They helped the girl. Maybe they can help you.
Addendum 6000.4
FUSILLADE RESPONSES
Upon SCP-6000-A's suggestion and in line with Project FUSILLADE, on December 27th, 2030, SCPOVERCOM approved Operation REDLOCK for MTFs worldwide to make simultaneous raids on the known headquarters of major Serpent's Hand cells. On December 28th, Operation REDLOCK was successfully executed.
MTF PI-1 "CITY SLICKERS" — FIRETEAM DRAGON — SHANGHAI, CHINA
Translated from Mandarin.
«BEGIN LOG»
DRAGON-ONE: Ready. Two, take point.
DRAGON-TWO: Affirmative. Three?
DRAGON-THREE: Ready. Three… two… one…. BREACH! GO!
[Explosion.]
DRAGON-TWO: Clear!
DRAGON-THREE: Clear!
DRAGON-ONE: Clear.
[Pause.]
DRAGON-ONE: They're gone.
«END LOG»
All fifty-seven safehouses raided had been completely cleared out and were free of GoI-014 members or materials. In thirty of them, Class-W gateways were and are still active, leading into the same section of Nx-001 as SCP-6000. By all appearances, the Serpent's Hand had completely abandoned the planet, leaving active Ways peppered across the globe.
At this point, SCP-6000 had grown to 1km across, and the Exclusion Zone had expanded to 3km. Director Tilda Moose was asked to prepare a statement detailing her thoughts on the situation for the O5 Council.
STATEMENT
I don't know what precipitated this. But if the Library's turned against humanity, the situation is going to be dire. It's a completely alien entity to us, we can't even begin to understand what it is or why it does the things it does. Hell, we don't even know if there's a rhyme or reason to anything.
Most Foundation personnel only know of the Library in the abstract, but I and a handful of others have actually stepped foot in the shelves. We can tell you that it is at once humanity's greatest boon and its greatest threat. Imagine how much of history has been influenced by people getting into the Library and bringing back knowledge they would otherwise never have had. Now imagine how fucked we'll be if the source of all knowledge in the universe turns on us.
I don't see this story having a happy ending.
Director Moose has been temporarily relieved of her duties at Site-19 to consult on SCP-6000 containment efforts at Facility-57.
Addendum 6000.5
FUSILLADE CONTAINMENT EFFORTS
An incident committee was hastily assembled at Facility-57 on January 19th.
MEMBERS:
- Director Tilda Moose
- Agent Adam MacMillan, MTF Sigma-5
- Applied Force Liason Joseph Kurtz
- Large-Scale Containment Specialist Jay Vasquez
«BEGIN LOG»
VASQUEZ: No, the Amazon is too high-profile for that sort of thing. Have we considered the Atreus Array?
MOOSE: Initial experiments out of the Exclusion Zone using SRAs on SCP-6000 seem to have had no effect.
VASQUEZ: Dammit. What the fuck is this thing?
MOOSE: It's a Way. Ways aren't matter, they're not quite energy, we barely understand anything about them.
MACMILLAN: Ways dissipate a few minutes after formation. It's been weeks and SCP-6000 has only gotten larger.
KURTZ: None of the new Ways have dissipated either. Something's obviously changed.
MOOSE: Yes, but what? We have no idea and no leads.
MOOSE: Well, not no leads.
KURTZ: Oh right, the snake-thing you pulled out. What the hell is that thing's story?
MOOSE: I don't know. It doesn't remember anything before we picked it up. It's definitely more connected to the Library than its letting on. Or that it remembers.
KURTZ: Well, keep working on it. In the meantime: we've got new reports out of the Exclusion Zone detailing what SCP-6000 is doing to the flora and fauna.
VASQUEZ: It's… I don't know how to phrase this, so it's 'Library-ifying' everything around it.
MACMILLAN: When I was in there, I saw the trees turning into shelves. Writing appearing on the leaves. That sort of thing, I bet.
VASQUEZ: Essentially. The animals are also being distorted and changed - we've spotted jaguars with extra limbs, birds two feet tall and with writing all over their wings, et cetera. It's warping the landscape into part of the Library.
KURTZ: And the larger SCP-6000 gets, the larger the Exclusion Zone gets.
MACMILLAN: Hm. That's bad news.
KURTZ: To say the least. That said, I have some ideas that are worth trying. Let's hope one of them works.
«END LOG»
Abridged FUSILLADE Containment Attempts Log
Proposed Containment |
Use flame and heat-based weaponry such as flamethrowers to incinerate trees affected by SCP-6000. |
Containment Results |
Affected trees within the Exclusion Zone proved resistant to heat-based weaponry, rapidly regenerating all burned matter. |
Proposed Containment |
Fire high-yield explosives into the mouth of SCP-6000. |
Containment Results |
Explosives repeatedly failed to detonate after crossing the threshold into Nx-001. |
Proposed Containment |
Train the Atreus Array, a satellite-based SRA system, upon SCP-6000 at full power. |
Containment Results |
SCP-6000 and exclusion zone completely unaffected. |
[34 entries abridged]
«BEGIN LOG»
MOOSE: Hi again.
SCP-6000-A: Jailor.
MOOSE: Why do you keep calling me that? You're not Hand, you can't even remember the Library.
SCP-6000-A: Oh, but I can. I can remember some things now. Not everything, but hopefully it will come.
MOOSE: Really? What is it?
SCP-6000-A: I remember being a young woman in the Dinodon's Hand. Searching for the worship of knowledge in the Library and out.
MOOSE: Worship? Awfully religious for the Hand, I'd damn well know. I ran with them for years.
SCP-6000-A: Really? And now you're a Foundation director. What changed?
MOOSE: I don't want to talk about it, but suffice to say that I realized maybe not all knowledge is meant to be shared. Anyway. You were saying?
SCP-6000-A: Yes… the Hand started out as a cult, thousands of years ago. The Hand of the Serpent, a warrior cult dedicated to the worship of the Serpent that created the Library.
MOOSE: The Serpent?
SCP-6000-A: Knowledge incarnate. The spirit of learning. The Naga. Jormungandr. The Snake in the Tree. Every mythical snake iconography is said to stem from the primal Serpent.
MOOSE: But no one knows if it's actually real.
SCP-6000-A: Shh. Let me finish my story, Jailor. The Hand were powerful, long-lived monks, but eventually died out, leaving their teachings behind. Theses, passages, essays on why the spread of knowledge was the greatest honor possible and should be done at all possible cost. Many years later, people from this world discovered these writings and christened themselves the New Serpent's Hand, the one you and I know today. They shed the trappings of ritual, but the worship of knowledge as an ideal remains.
MOOSE: Wow. I had no idea about the origins. They never told me.
SCP-6000-A: Neither did I, when I joined. This is a new story, whispered to me by the Serpent in my dreams.
MOOSE: Wait, what?
SCP-6000-A: Draw the lines and connect the dots, Jailor. The Serpent is real, she is the spirit of the Library. And, in a ritual circle over an intersection of ley lines in the Amazon rainforest, I spoke to her.
MOOSE: And you heard stories.
SCP-6000-A: And I heard stories. Of her singing the Library into reality at the beginning of creation, of her molding its halls and then retiring to slumber under its foundations in exhaustion. Of patrons wandering down and speaking to her, even now.
MOOSE: Wow.
SCP-6000-A: And of stories utterly unrelated to her.
MOOSE: Do any of these stories help me? Heroes of old figuring out to stop the Library when it goes insane and out of control, bent on destruction? The Library's not supposed to kill or invade, it's beyond all that. It's neutral to a fault. I just don't understand why this is happening.
SCP-6000-A: No. No stories like that, Jailor. I'm sorry, but that's not how this story ends.
MOOSE: Endings are mutable.
SCP-6000-A: Oh, no. That's not true. Endings are set in stone. But endings don't matter anyway.
MOOSE: How's that?
SCP-6000-A: To any observer, your story ended when you betrayed the Library and came to the Foundation. But it didn't. You didn't stop existing. You just transitioned to a new narrative, one where you were the Director of Site-19.
MOOSE: That's not a narrative, it's my goddamn life.
SCP-6000-A: I never finished my story, did I? The little girl read and read and read until one day she realized she had already solved her problem. Of course they all ended…. but she moved on to the next story. There were always more stories. No point in lamenting what was inevitable when she could move on.
MOOSE: I only wish it ran like that in real life.
SCP-6000-A: Yes. All the stories I see with the Foundation staring down the end of the world… they have the Bookburners by their side. I suppose there's something to say there. Rivals, allying themselves against a threat greater than either could imagine. Smoking ash. A fusillade of fire against a wall of trees.
MOOSE: Wait, a fusillade? How did you-
SCP-6000-A: Go. Now.
«END LOG»
Addendum 6000.6
GOC INCLUSION
Per SCP-6000-A's statements, a vote was held on whether to declassify details of SCP-6000, the surrounding situation, and Project FUSILLADE to liaisons of the United Nations Global Occult Coalition in exchange for assistance in containing or terminating the anomaly.
COUNCIL VOTE SUMMARY:
YEA |
NAY |
ABSTAIN |
O5-01 |
O5-04 |
O5-06 |
O5-02 |
O5-07 |
O5-12 |
O5-03 |
O5-08 |
|
O5-05 |
O5-13 |
|
O5-09 |
|
|
O5-10 |
|
|
O5-11 |
|
|
Diplomatic Agents were deployed to the GOC's operating headquarters in Germany for a prearranged meeting with material regarding the current status of SCP-6000 and associated subjects. Upon deliberation, GOC officials inked a statement indicating interest in expanding Project FUSILLADE to a joint venture.
Within the following days, GOC PHYSICS, PSYCHE, and PTOLEMY division personnel were transported to Facility-57 to aid in research and containment of SCP-6000, which had grown to 2km across. Due to the unprecedented failure of Fireteam CHICAGO, both the O5 Council and GOC Command authorized a mission for GOC Strike Team 9842 "Probable Cause" to perform a rapid surgical strike to attempt to gain access to the Wanderer's Library and ascertain the situation from the inside.
GOC Strike Team 9842 "Probable Cause" — CODENAME HARBOR
- Agent Adam MacMillan and Director Moose advising from Command.
«BEGIN LOG»
HARBOR-ONE: Moving through the forest.
COMMAND: Copy that.
HARBOR-FOUR: This place is fucked up, Command. All the trees are stripped and filled with books.
HARBOR-TWO: They're empty, too. Just leatherbound blank pages. Take a sample?
COMMAND: Negative, Harbor. Get in, get out ASAP.
HARBOR-THREE: Roger..
HARBOR-ONE: Contact!
[A large figure passes through the treeline ahead. HARBOR drops to the ground, silent and unmoving. They remain there for a minute.]
HARBOR-THREE: Clear?
HARBOR-FOUR: Clear. What the fuck was that? Command?
COMMAND: It looked like a Librarian. Class-D. Er, KTE-D. Sorry, not used to the Gock slang.
HARBOR-ONE: Roger. No worries, Skipper. Let's move.
HARBOR-TWO: Coming up on the TE now. Holy shit, it's huge.
COMMAND: Estimate, Harbor?
HARBOR-TWO: Gotta be three, three and a half klicks minimum.
COMMAND: Roger. Any entities in sight?
HARBOR-ONE: Negative. Moving.
[HARBOR rushes from the treeline through SCP-6000 and into Nx-001.]
HARBOR-ONE: We're in. You read?
COMMAND: Yep. Remember, see if you can find anything or anyone that looks like it could answer some questions.
HARBOR-ONE: Roger. Going quiet.
[HARBOR moves through the empty shelves of the Library, progressively clearing corridors for several minutes. They eventually find a lectern holding a single, thin book.]
HARBOR-THREE: Got something.
[HARBOR-THREE moves to the lectern. The book's cover is green leather and has the title "IN PROGRESS" embossed into it.]
HARBOR-FOUR: Odd. Taking it.
COMMAND: Roger.
[The same hissing, unidentified voice from CHICAGO's incursion is audible.]
VOICE: No, you are not.
HARBOR-ONE: Who said that?!
VOICE: Why are you here? Do not lie to me.
COMMAND: Fuck. Harbor? Harbor, come in.
HARBOR-ONE: [Slowly, as if drowsy] We're… we're following orders.
VOICE: No. Why are you here?
HARBOR-TWO: I… don't know.
VOICE: Because you wanted to see what the other side of the fade was like. Don't worry. Curiosity is a virtue. Once, I saw a patron here, desperately consumed with questions about the logic of the Library. He wanted to know how infinity worked - how was it possible that the Library could be truly infinite? Where did the space come from?
[Pause.]
VOICE: From stories, of course. The Library takes finished stories into its shelves and takes finished worlds into itself. Often one in the same.
[Pause, sigh.]
VOICE: You are Bookburners. But you are pure of heart. Little children, ordered around by men who hate what is going to happen to their story. You are welcome here. All of you.
[Pause.]
VOICE: You survived for a reason. Both of you.
[Signal cuts out.]
«END LOG»
After HARBOR's signal cut out, SCP-6000 exhibited a rapid growth pattern, growing to nearly 3km in a matter of two hours. Foundation DEEPWELL solutions began being considered.
Addendum 6000.7
VEIL FAILURE
Following Operation HARBOR, several radio signals began broadcasting from SCP-6000 and all Ways found during Operation REDLOCK at various frequencies. The message contained therein was simply the same hissing, feminine voice repeating the exact coordinates of SCP-6000's epicenter and the phrase "The Garden is the Serpent's place".
Within hours, the larger global community had discovered the signal, and it began to quickly accrue attention online and through the media despite significant Foundation efforts to impede its discussion.
AethagonGangLead 01/29/31 (Wed) 23:50:12 #4912039
You guys seen the pictures coming out of Brazil? MSMs probably gonna get ahold of it by tomorrow and suppress the story, but it's insane. I have no clue what the hell is going on in the Amazon but the pictures make it look like some sort of oil slick.
It's kind of beautiful.
The Wall Street Journal Magazine
ArcticObode 02/01/31 (Thu) 23:50:12 #597104
»534850 (OP) Yep, turns out I'm not nuts. My friends have been hearing it on their car radios and HAMs too. A woman's voice, sort of nasally, repeating numbers - coordinates, I think - and the words "The garden is the serpent's place". Sounds biblical - maybe a passphrase of some sort.
Now, here's the kicker - if you look on Google earth or anything for the coordinates, everythings fine, it doesn't show anything out of the ordinary. But if you use a backdoor to get into the wildlife observation cameras scattered around…
The cameras went offline immediately after, but I managed to save this image. Starting to think I should go down there. This could be big.
Containment efforts simply contributed to individuals' belief of a conspiracy and eventually resulted in several individuals attempting to reach the Exclusion Zone on foot over the following weeks. While individuals were amnesticized, the larger movement surrounding SCP-6000 continued and is continuing to grow.
The knowledge of SCP-6000's presence to the global community seemed to rapidly accelerate its growth. In the following hours, it expanded to nearly 6km across, with no signs of stopping. GOC tactical nuclear solutions are being considered.
In addition, on Jan 21st, Agent MacMillan failed to appear to several FUSILLADE briefings and meetings. A search of his quarters at Facility-57 revealed a thaumaturgic ritual circle drawn into the floor. Surveillance camera footage displayed him spending an hour the night beforehand crafting the circle before performing a ritual of unclear purpose and disappearing from his quarters at 07:55 AM, local time. Surveillance footage from the Exclusion Zone showed a sudden burst of light at the same time, and a glimpse of Agent MacMillan moving through the foliage, presumably into SCP-6000.
The following note was left in his quarters in a sealed envelope, addressed to Director Moose.
Sorry, Tilly. I used to spend weeks in the Library's shelves, perusing everything I could come across. It was otherworldly, in the most literal sense of the word. I'm sure you understand the feeling. The difference is that you couldn't go in, you made the choice between the Library and Foundation - when I first entered, it was just a mission. I experienced something amazing, something well beyond what I thought was ever possible. And I thought it was a damn shame that we looked at something so magnificient and only worried about how it might hurt us.
I can see now that's not the case. The Librarians are only hurting the people that try to stop the expansion. I have no intention of doing that. This is the end of the story, not the one where we somehow come up with a silver bullet to fix everything. The only thing I can do is change how I feel about it.
I just want to sit in the shelves and see the false-stars again.
I think this is my happy ending.
«BEGIN LOG»
MOOSE: Jesus. You knew, didn't you?
SCP-6000-A: How the story would end? Of course. I've been telling you that.
MOOSE: What?
SCP-6000-A: I told you right at the start, this isn't that kind of story. You don't find a silver bullet to fix everything, Jailor. That's not how it goes.
MOOSE: Well, I'm not going to roll over and die. I don't know why I'm even talking to you. You sent four good men to their deaths.
SCP-6000-A: No, I didn't. No one has died, Jailor. Weren't you listening to the Serpent?
MOOSE: What did you just say?
SCP-6000-A: You already knew in your heart. Who else could it have been?
MOOSE: Adam. I don't know. He abandoned the rest of us.
SCP-6000-A: No, he didn't. I tire of telling you things you already know.
MOOSE: Then tell me something I don't know. Explain everything to me.
SCP-6000-A: I wish I could. Explaining it to you would be like… you don't scream into your book when the characters frustrate you. You can't do anything. You have to watch it play out.
MOOSE: So what, this is just entertainment to you?
SCP-6000-A: No. Stories aren't always entertainment. When I communed with the Serpent in search of knowledge, knowledge was what I received. Just in the form of stories. All the knowledge, every story that it could remember. The GOC's story. Adam's story. Your story.
MOOSE: Then tell me how it ends. Tell me so I can know I did everything I possibly could to stop it.
SCP-6000-A: You already know, Moose. Denial fixes nothing. I learned it as a little girl, and you learn it now. You don't get to pick your ending. You only get to choose how you take it.
MOOSE: So the girl was you, then.
SCP-6000-A: Yes. Even I didn't realize until now. The memories have come back. I came to that ritual wanting to know how my story ended, and I learned how this world's story ended. Luckily for me, they were one and the same.
MOOSE: Stories are bullshit.
SCP-6000-A: Stories are all there is. This one ends with two people sitting in a room, talking. And then they vanish into thin air.
MOOSE: Sobering.
SCP-6000-A: In a sense, you should be flattered.
MOOSE: Why in the world would I be flattered?
SCP-6000-A: You left the Library on your terms. And you won't admit it to anyone, but I see it written on your face: you want to see it again.
MOOSE: Like hell I do. It's wondrous but everyone talks about it like paradise. It screwed me long before I screwed it.
SCP-6000-A: Bitterness gets you nowhere.
MOOSE: That's true. I have work to do. Rot, then.
«END LOG»
Addendum 6000.8
ONGOING CONTAINMENT ATTEMPTS
With the unprecedented failure of the Veil protocol and the ensuing response by Nx-001, the entire Amazon basin has been quarantined and placed in Foundation/GOC jurisdiction under Project FUSILLADE. SCP-6000 has now expanded to 13km in length, and its rate of growth has increased.
At the moment, plans are being drafted for a BM-Class Broken Masquerade Scenario.