@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; 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)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
@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; } }

Artistic depiction of SCP-6935, (dashed line) beween our universe (left) and SCP-6935-1 (right.)
Special Containment Procedures: Foundation assets in physics research groups are to sabotage work that might lead to civilian discovery of SCP-6935. MTF-hν, "The Light Brigade," is tasked with the tracking and disruption of GoI activities involving SCP-6935. Long-term containment possibilities, ranked by desirability, currently include:
- Reinforcement of the boundary between our universe and SCP-6935-1.
- Systematic, ongoing expulsion of antimatter from our universe.
- Complete material destruction of SCP-6935-1.
A timeline of key events involving SCP-6935 is provided below.
10/8/2018: The access point of SCP-6935-1 is discovered in the Democratic Republic of the Congo. (DRC.)
12/20/2018: Physical Review Letters publishes a communication suggesting the existence of a CPT-complementary universe, comprised almost exclusively of antibaryons.3
01/31/2019: The access point of SCP-6935-1 is neutralized after its inhabitants undertake hostile action against the Foundation.
02/07/2019: SCP-6935-1 is speculated to be the CPT complement of our universe by Senior Researcher Quentin Silver.
02/09/2019: Approval is given to Senior Researcher Silver for attempted reentry into SCP-6935-1.
03/02/2019: A CPT inversion conduit prototype is completed. A logistics delay prevents immediate D-class exploration.
03/03/2019: A drag-tailed spider, later identified as a female Arachnura scorpionoides,4 emerges from the conduit. Upon reaching the hallway, the spider is neutralized by security personnel.03/05/2019: Particle detection experiments are conducted on the spider carcass. The sample is found to be 0.59% antibaryonic by mass, several orders of magnitude above baseline, though inconsistent with SCP-6935-1.5
03/11/2019: D-Class Personnel D-662607 enters the CPT inversion conduit. D-662607 immediately falls back through the conduit, unconscious and bleeding severely from his eyes, nose, and mouth. D-662607 dies within minutes.
03/16/2019: An unmanned drone is piloted into the CPT inversion conduit. D-Class Personnel D-662611 views a video feed. D-662611's body sublimates into a smoke-like colloid.6
03/21/2019: An unmanned drone is piloted into the CPT inversion conduit. D-Class Personnel D-662619 listens to an audio feed. D-662619's body is reduced to a wet powder.7
03/23/2019: Particle detection experiments are conducted on the powder. The sample is found to be .012% antibaryonic by mass.
05/15/2019: Machine learning algorithms are used to autonomously develop appropriate cognitohazard-censoring software, using the previous video and audio feeds as a training set. Software is integrated into a delayed-feed headset. Testing on D-Class Personnel D-662981 verifies protection in the case of remote observation of SCP-6935. Censored video feed of SCP-6935 depicts a rocky beach. The sky is overcast. Several humanoid entities appear to be lying on the ground. An additional entity, censored by the software, wanders from one to the next. The censored entity is later designated SCP-6935-A.
05/17/2019: Expedition into SCP-6935 occurs. See Addendum 2.
Three members of MTF-hν, callsigns Mad Catz, Outlaw, and Longshot, were selected for the expedition due to their unusually high memetic resistance quotients. The three operatives entered SCP-6935 at 08:00 on May 17, 2019. Callsign "Archangel" is tasked with remote coordination. Mad Catz is designated commanding officer.
<BEGIN LOG>
[The trio arrive on the beach observed by D-662981. The censored figure is no longer present, but the humanoid entities are observed approximately one kilometer up the beach.]
Mad Catz: Archangel, we're inside. Feed look good?
Archangel: Affirmative, Mad Catz. Any injuries?
Mad Catz: Not our team. Not so sure about the guys from the video though.
Archangel: They're not going anywhere. Can you do a quick baryon sweep? Just on the sand or something?
Outlaw: On it.
[Outlaw takes the measurements while Mad Catz and Longshot unpack their gear.]
Outlaw: Huh. Looks like the sand's about fifty-fifty matter/antimatter.
Archangel: You sure about that?
Outlaw: Yeah. Why?
Archangel: We thought 4935 would be mostly antimatter.
Mad Catz: Maybe you only got us halfway there?
Archangel: Huh. Can you guys check out those bodies up ahead?
Mad Catz: Can do.
[The team unpacks their weapons and proceeds toward the humanoids, stopping roughly 100 meters away. The humanoids writhe on the ground, screaming in apparent pain. They appear to be deformed, emaciated humans with a variety of mechanical body augmentations.]
Mad Catz: Archangel, who are these guys? Why do they look like this?
Archangel: I think they're Akot.8 Looks like we got you to 4935 after all.
Mad Catz: What are those things they've all got on their chests?
Archangel: Those are the harnesses that keep them anchored in 4935.
Outlaw: Oh, Goddammit.
Longshot: What?
Outlaw: The harnesses are broken.
Longshot: I don't get it.
Outlaw: We're in the High fucking Horror.
[SCP-6935-A materializes in front of the trio. They train their rifles on it.]
SCP-6935-A: Is that what they're calling it? It's not like their home's much better.
Mad Catz: Who the Hell are you?
SCP-6935-A: An interesting choice of words. My given name is [COGNITOHAZARD CENSORED], but I have a number of nicknames that I quite enjoy.
Mad Catz: Try another cognitohazard and it'll cost you your life.
[SCP-6935-A moves toward Mad Catz.]
SCP-6935-A: Oh, feisty. Tell me, did you put those ears on your headset yourself? I'm more partial to horns, personally, but-
Mad Catz: One inch closer and you die.
[SCP-6935-A continues advancing. MTF-hν opens fire, causing SCP-6935-A to collapse. Video feed ceases censorship of SCP-6935-A, revealing the corpse to be a nude, white male in his thirties, with leathery black wings extending from his back.]
Longshot: So who is this guy?
[Longshot nudges the corpse with his foot. It dissolves into a black sludge, which is quickly absorbed into the sand.]
Longshot: Shit!
Mad Catz: You alright?
Longshot: Yeah, just, uh, didn't think I kicked it that hard.
Mad Catz: If you can't kick a man's ass so hard that he dissolves into liquid, you don't deserve a spot in this squad.
Outlaw: What do we do about the Akot? Why are there so many of them?
Mad Catz: What do you mean? Don't they all have the genetic condition that displaces them?
Outlaw: Yeah, but their augmentations wouldn't all break at the same time.
Longshot: What are you thinking? Mass failed suicide?
Outlaw: No, they're smarter than that. Seems weird that the spider, us, and every lost Akot would end up in the same place at the same time.
Mad Catz: What are you saying?
Outlaw: I got a C in high school physics, but if time flows forward in our universe, and backward in 4935, maybe it doesn't flow at all at their border.
Longshot: But we're moving.
Mad Catz: But this place isn't. Have you seen the tide since we got here?
Longshot: Shit, you're right. [He licks a finger.] No wind either.
Outlaw: I think we should get out of here.
Longshot: What about the Akot?
Outlaw: Forget 'em, kid. They're technically classified as Foundation enemies. If we could kill them, we'd be obligated to.
Mad Catz: Sorry, Longshot, he's right. Nothing we can do for them anyway.
Longshot: I meant: Why are they in pain? Did that guy have something to do with it?
Outlaw: Oh, right. That. Yeah, beats me.
Mad Catz: Same here. Archangel, do you want us to come back or what?
Archangel: Can you check one of the Akot for antibaryons first?
[Outlaw produces a hunting knife.]
Outlaw: On it.
Mad Catz: Jesus Christ, Hee Haw, can't you just take a fingernail or something?
[Outlaw rolls his eyes before severing a lock of hair from the nearest Akot.]
Mad Catz: Or that. Right.
Longshot: Hey, guys, just, while he's doing the measurements…
Mad Catz: Yeah?
Longshot: It's just, I thought you might die there, and you mean a lot to me. Both of you, I mean. And, just, like, as your teammate, I figured I should let you know. Both of you. Platonically.
Outlaw: Don't you fall in love with me, you son of a bitch.
[Mad Catz suppresses a snicker.]
Longshot: I was talking to both of- Never mind. Forget I said anything.
Outlaw: Test's done. The Akot's only 81% antimatter.
Mad Catz: What was the spider? Like half a percent?
Outlaw: Yeah, why?
Mad Catz: It was in here for what, at least a year?9 And it only changed half a percent from basically pure matter. These guys have changed by nearly 20%.
Longshot: They've been in here for, like, 40 years then?
Outlaw: At least. Could be a lot longer than that, depending on the order of the kinetics.
Longshot: I thought you got a C in physics?
Outlaw: Got an A in chemistry.
Mad Catz: Jesus, so they've been starving for at least a few decades? And that's on top of getting exposed to a lethal cognitohazard. Not like they can die, but it sure sounds like they want to. Speaking of, we still don't know what that censored thing was.
[The black sludge reemerges from the sand, reforming into a much larger, censored entity.]
SCP-6935-A: Allow me to rectify that, insect.
[SCP-6935-A lurches toward Mad Catz. She is absorbed into the censored region. Her video and audio feeds cut out.]
Longshot: Katie!
[Outlaw raises his rifle and begins to fire on SCP-6935-A. Longshot pulls the rifle off-target. The two struggle.]
Longshot: Quit it; you're gonna kill her!
Outlaw: You're gonna kill us! You think that's what she'd want?
SCP-6935-A: Don't worry; you'll be reunited with her soon.
[SCP-6935-A lunges at the pair, engulfing Longshot. His video and audio feeds cut out. Outlaw staggers backward, falling supine a few yards away from SCP-6935-A. The front half of his carbine is gone, the severed edges dripping with black sludge. He discards the rifle and draws his revolver, firing all six rounds into SCP-6935-A to little effect. Emptying the cylinder, Outlaw hesitates, struggling to find more ammunition on his person.
SCP-6935-A: Don't bother looking for your bullets. Protagonists never get to reload revolvers.
Outlaw: What the Hell are you talking about?
SCP-6935-A: Do you really not get what this place is? Who I am?
[Outlaw staggers to his feet, discards the revolver, and draws his knife.]
Outlaw: I just know you're going to pay for what you did to Katie and Aaron.
SCP-6935-A: [The entity laughs.] Humans. Let me guess, you think I'm some monster in the dimensional closet- something for you or another goon to lock in a box with fluorescent lights and armed guards.
Outlaw: You won't live to see a containment cell.
SCP-6935-A: If your species could kill me, they'd have done it when I was just a snake in a garden.
Outlaw: Are you trying to say that you're-
SCP-6935-A: Yes.
Outlaw: So this is what? Hell?
SCP-6935-A: Only in the sense that I live here, and that it's a place outside of time. This is a dimension of hope, of fear, of love. A place where function ignores form and vice versa, where expectation and narrative define existence.
Outlaw: Well I don't believe in God, or you, or anything. So you can dissolve right back into that black fucking mud.
SCP-6935-A: Maybe you don't believe in me, but your species does. Millenia of fear, anger, guilt- all of it piled onto a lone scapegoat. I wonder if any of you paused to think what that scapegoat would look like after all these years?
Outlaw: Pretty damn ugly if you ask me. Poorly endowed, too.
SCP-6935-A: I think the significance of all this is lost on you.
[SCP-6935-A begins to advance on Outlaw. Outlaw performs the sign of the cross.]
Outlaw: Oh, I appreciate the significance. It's that I'm gonna kill you, so help me God.
[Outlaw's knife begins to faintly luminesce. He drives the knife into SCP-6935-A, resulting in a sustained, blinding flash of light. When the light fades, Mad Catz and Longshot are unconscious on the beach next to Outlaw. Both SCP-6935-A and the hunting knife have vanished. The Akots' screaming is reduced to a soft moan.]
Archangel: Outlaw, are you still with us?
Outlaw: Yeah. Yeah, I'm good.
[Outlaw jostles Mad Catz.]
Outlaw: Hey, Ka- Mad Catz. Wake up, you're safe now.
[Mad Catz gasps for air as she wakes. After several minutes, she regains her breath.]
Mad Catz: What the fuck was that thing?
Outlaw: The devil, apparently.
Mad Catz: Bullshit.
Outlaw: Or, humanity's idea of the devil, I guess? Do you remember anything after it absorbed you?
Mad Catz: Nothing.
[Outlaw shakes Longshot.]
Outlaw: Hey dumbass, wake up!
[Longshot is startled upon regaining consciousness.]
Longshot: Outlaw? We're alive?
Outlaw: Despite your best efforts. Do you remember what happened inside of that thing?
Longshot: I was back in Texas. This dirt road I remember from when I was a kid. Katie was ahead of me, walking away, but I couldn't catch up. It was storming. I tried to yell, but the rain was too loud, too thick. She was getting further and further away, and the rain turned black. I had almost lost sight of her…
Mad Catz: Aw, you had a dream about me?
[Outlaw rolls his eyes. Mad Catz smirks.]
Longshot: This wasn't a dream. Also, shut up. I had all but given up, thinking I was going to drown in that sludge. But then, the clouds suddenly broke. Sunlight poured through them, and the rain stopped. I saw a rainbow behind you, but with colors I've never even imagined. It looked like you were just going to keep walking toward it, but I chased after you. When I finally caught up- I don't remember after that.
Outlaw: Rainbow, huh? Fits with everything else I guess.
Mad Catz: What do you mean?
Outlaw: [He hesitates.] I think I killed that thing by smiting it in the name of God. There was a big flash of light when it died and everything.
Mad Catz: I think you may have overdosed on the opiate of the masses, there, Outlaw.
[Mad Catz starts to laugh, before clutching her side and groaning.]
Mad Catz: Fuck, what happened to me in there?
[Mad Catz tries and fails to stand.]
Outlaw: Can you carry her, kid? My back's not so good these days.
[Outlaw smirks quietly as Longshot scoops up Mad Catz. The two avoid eye contact.]
Outlaw: Archangel, we're coming home.
<END LOG>
In April of 2020, Senior Researcher Silver suggested a connection between the time-reversal of antibaryons and the causality-violating properties of all anomalies. Detection experiments on 13 randomly selected Safe- and Euclid-class objects revealed antibaryon concentrations ranging from 1 to 10% by mass. Detection experiments were subsequently performed on an ice core from Antarctica to establish antibaryon levels as a function of time. These levels are reported below, alongside anomalous population growth over the same time period:

Comparison of antibaryon and anomaly occurrence rates. Following this analysis, SCP-6935 was given its current classifications.
On June 2, 2021, Senior Researcher Silver found the following letter on his desk:
Quentin,
This is a bittersweet moment for your species- you've figured out what's happening, and what's at the bottom of everything you once deemed supernatural. But with irrational fear dies irrational hope. To quote one of your favorite musicians:
"With everything discovered, just waiting to be known,
What's left for God to teach from His throne?"I've enjoyed watching your species reach this point. I hope you find a happier ending than your counterparts in the mirror of time, but it's no longer an ending that I can be a part of. I bid you all goodbye, and good luck.
All my love,
יהוה10
Cite this page as:
"SCP-6935" by quickestsilver, from the SCP Wiki. Source: https://scp-wiki.wikidot.com/scp-6935. Licensed under CC-BY-SA.
For more information, see Licensing Guide.
Licensing Disclosures
Filename: https://upload.wikimedia.org/wikipedia/commons/2/28/Universe_Antiuniverse_model.png
Author: Eduemoni
License: CC BY-SA 4.0
Source Link: https://commons.wikimedia.org/wiki/File:Universe_Antiuniverse_model.png
For more information about on-wiki content, visit the Licensing Master List.