: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)); } }
: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 chance1 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)
History: Foundation web-crawlers have traced the origins of SCP-6101 to the Group of Interest "Gamers Against Weed". Infiltration efforts have retrieved the chat logs from the "Gamers Against Weed" Discord server, which is believed to have lead to the creation of SCP-6101.
GAMERS AGAINST WEED CHAT LOGS, 26/09/17
kkrule: hey guys look at this cute pic I found :D
kkrule: [redpandacute.jpg]
DonDeLilo: @kkrule literally no one cares
hetcopogg: aww
kkrule: I bet opossum would say its cute
DonDeLilo: fuck off
kkrule: okay :(
kkrule: @opossum am i right
opossum: that's subjective, but eh, pretty cute tbh
polaricecraps: I mean, it's no koala, but yea pretty cute
opossum: excuse me?
kkrule: uh oh
polaricecraps: what?
opossum: did you just say
opossum: koala?
DonDeLilo: UH OH
hetcopogg: oh you done goofed now, you know how he gets when someone mentions koalas
DonDeLilo: lol hes still typing
opossum: @polaricecraps koalas are actually disgusting. You all think they're oh so cute and innocent angels but they're all just chlamydia-riddled dumbasses who can't even eat properly, and that's the only thing they do. Plus they only eat one of the least nutritious plants, and only if they're picking the leaves themselves, if you give them food on a plate theyll literally starve to death like the fucking idiots they are
hetcopogg: aaand there it is
polaricecraps: @opossum didnt read lol
opossum: im so damn sick of people insisting that koalas are so cute and adorable and god all of you are idiots. Their brains are smooth but your brains seem to be literally smoother.
polaricecraps: coalas do be cute tho
DonDeLilo: sorry opossum im going to have to agree here, they are cute
kkrule: yea they are
DonDeLilo: no one asked you @kkrule
opossum: oh so you're going with this too? Alright, brb
DonDeLilo: oh great what's he doing
hetcopogg: *grabs popcorn*
GAMERS AGAINST WEED CHAT LOGS, 27/09/17
DonDeLilo: Anyway, back to the flamingoes
opossum: alright clowns, here it is.
DonDeLilo: oh your back
opossum: [koalas.txt]
opossum: read it
polaricecraps: what the hell is that
opossum: it's facts
DonDeLilo: hholy
DonDeLilo: this is long
opossum: :)
polaricecraps: wow, koalas are horrible
DonDeLilo: didnt you just say you loved koalas yesterday
polaricecraps: yeah but they suck
DonDeLilo: your making no sense
DonDeLilo: theres no way mister "i hate bernie" made a coherent argument
opossum: I can be very convincing, actually. Read it and see for yourself
DonDeLilo: alright I'll read it
DonDeLilo: jesus wow, fuck koalas
opossum: so what do you guys say? Think reddit would like this?
polaricecraps: do it lol
DonDeLilo: sure
GAMERS AGAINST WEED CHAT LOGS, 3/10/17
opossum: folks, i've got some news
polaricecraps: what
opossum: so i posted the koala text to r/askreddit
DonDeLilo: Good, maybe we can eradicate koalas from that sub
opossum: its working alright
hetcopogg: lol you actually did it
kkrule: but I like koalas :(
DonDeLilo: fuck one then
kkrule: :(
opossum: people have started posting it under every picture of a koala they've seen
DonDeLilo: perfect
opossum: that includes places outside r/askreddit
polaricecraps: so its a copypasta now?
opossum: guess so. only means it'll spread more lol
polaricecraps: awesome
opossum: I've also seen some people adapt it to other animals
opossum: but they don't compare
polaricecraps: still, its something
DonDeLilo: imagine if one of the foundies reads one of those
hetcopogg: lmao
opossum: lmao
Foundation web-crawlers have traced the internet browsing history of SCiP-Net user "Moonever", assigned to Researcher Michaels, and have discovered that he was first exposed to SCP-6101 within the comment section of a post in the Reddit community "r/greentext". By further tracing his patterns, it was discovered that Researcher Michaels posted the instance of SCP-6101 he was initially exposed to in the Reddit community "r/CuratedTumblr". Further tracing has discovered over 100 unique instances of SCP-6101, with some of them originating on mainstream social media platforms such as Facebook and Twitter, as shown below.
Instance #2, found in "r/curatedtumblr" Reddit board
Context: Instance was found as a reply to a text comment in the post's comment section. The comment read as follows: "A man with a pink cat? Watch out for random explosions…".
Topic: Serialized Manga Series "JoJo's Bizzare Adventure, Part 4: Diamond is Unbreakable".
SCP-6101 Instance: I hate JoJo fans. All they do is go onto random subreddit and go “iS THat A JOJo ReFErEncE??!!!1” on every single part of the internet that even has a slight resemblance to JoJo. Screw you. Everything isn't JoJo you baboon. A link to a video looks suspicious? JOJO REFERENCE! That's right, they've tried to replace rickrolls. Just shit on a classic piece of internet tradition. SHUT THE FUCK UP. NO ONE CARES ABOUT JOJO. LITERALLY NO ONE CARES, ITS A SHITTY SHOW FOR SHITTY PEOPLE WHO DESERVE TO DIE A SHITTY DEATH. I AM GOING TO SEND EVERY JOJO FAN INTO SPACE.Oh, can't do that cuz it's A FUCKING JOJO REFERENCE, ISNT IT? Please, [COGNITOHAZARD EXPUNGED]. Every JoJo fan deserves to be waterboarded to death. Thank you.
End Comments: Instance had recieved 567 "upvotes" and several replies commenting on the apparent humor of the instance. Observed to have spread to other similar posts on the Reddit platform, across several "subreddit" boards.
Instance #10, found in Facebook group "not in my good satanic cul de sac"
Context: Instance was found as a response to a text post announcing a member's departure from said group, alongside heavy criticism of the group's content.
Topic: Leaving an online community
SCP-6101 Instance: This group is a fetus eater's paradise, FUCK y'all I'm leaving, don't mind me, [COGNITOHAZARD EXPUNGED] go protest for normalizing public nudity or some other absurd shit you want to normalize, maybe casual murder next? The future is full of surprises in the hands of the shallow brain dead left.
End Comments: Due to the highly disturbing actions described in this particular instance, CM-6101 development was
Based on Instance #10's observed lack of further mutations, an attempt was made to replicate this effect with another instance of SCP-6101, resulting in the following counter-meme prototype:
👉This👈 groⓂp is a 😇fetus🍴eater's 🍽 paradise 🌈, FUCK 👉👌 👨👩👦👦y'all 👭 I'm ✌🚴♀️leaving🚣♂️, don't ⛔ mind 🧠 me, [COGNITOHAZARD EXPUNGED] go🚦 protest 🙅♀️ for ✔normalizing✅ 🏙 public⛲ nudity❌❌❌or some o🅱er 🧜♂️absurd🧞 💩shit💩 y⭕u want🤳 to norⓂalize, maybe🤷♂️ 😎casual 🔫murder🗡 ne✖t? The ⏳future⏳ is 🗑full of 😲surprises🤯 in the 👐hands👐 of the 🤽♀️shallow 🧠brain 🧟♂️dead ⬅left.
While this particular application has shown adequate success in halting the respective SCP-6101 instance's spread, the same method is not applicable to cases with text posts longer than 500 characters. This is hypothesised to be due to the readers considering long excessively long text fragments as visually unappealing, with no incentive to read them if no new information is being presented.
Canon brainstorming place. Central idea: more and more anomalies are created by the collective consciousness, the foundation decides to yeet imagination so anomalies stop forming. Bleak reality ensues
placeholder for upcoming stuff






Per 


