@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;
}
}
Included page "component:bhl-dark-sidebar" does not exist (create it now)
What this is
A bunch of miscellaneous CSS 'improvements' that I,
Croquembouche, use on a bunch of pages because I think it makes them easier to deal with.
The changes this component makes are bunch of really trivial modifications to ease the writing experience and to make documenting components/themes a bit easier (which I do a lot). It doesn't change anything about the page visually for the reader — the changes are for the writer.
I wouldn't expect translations of articles that use this component to also use this component, unless the translator likes it and would want to use it anyway.
This component probably won't conflict with other components or themes, and even if it does, it probably won't matter too much.
Usage
On any wiki:
[[include :scp-wiki:component:croqstyle]]
This component is designed to be used on other components. When using on another component, be sure to add this inside the component's [[iftags]] block, so that users of your component are not forced into also using Croqstyle.
Related components
Other personal styling components (which change just a couple things):
Personal styling themes (which are visual overhauls):
CSS changes
Reasonably-sized footnotes
Stops footnotes from being a million miles wide, so that you can actually read them.
.hovertip { max-width: 400px; }
Monospace edit/code
Makes the edit textbox monospace, and also changes all monospace text to Fira Code, the obviously superior monospace font.
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');
:root { --mono-font: "Fira Code", Cousine, monospace; }
#edit-page-textarea, .code pre, .code p, .code, tt, .page-source { font-family: var(--mono-font); }
.code pre * { white-space: pre; }
.code *, .pre * { font-feature-settings: unset; }
Teletype backgrounds
Adds a light grey background to <tt> elements ({{text}}), so code snippets stand out more.
tt {
background-color: var(--swatch-something-bhl-idk-will-fix-later, #f4f4f4);
font-size: 85%;
padding: 0.2em 0.4em;
margin: 0;
border-radius: 6px;
}
No more bigfaces
Stops big pictures from appearing when you hover over someone's avatar image, because they're stupid and really annoying and you can just click on them if you want to see the big version.
.avatar-hover { display: none !important; }
Breaky breaky
Any text inside a div with class nobreak has line-wrapping happen between every letter.
.nobreak { word-break: break-all; }
Code colours
Add my terminal's code colours as variables. Maybe I'll change this to a more common terminal theme like Monokai or something at some point, but for now it's just my personal theme, which is derived from Tomorrow Night Eighties.
Also, adding the .terminal class to a fake code block as [[div class="code terminal"]] gives it a sort of pseudo-terminal look with a dark background. Doesn't work with [[code]], because Wikidot inserts a bunch of syntax highlighting that you can't change yourself without a bunch of CSS. Use it for non-[[code]] code snippets only.
Quick tool to colourise a 'standard' Wikidot component usage example with the above vars: link
:root {
--c-bg: #393939;
--c-syntax: #e0e0e0;
--c-comment: #999999;
--c-error: #f2777a;
--c-value: #f99157;
--c-symbol: #ffcc66;
--c-string: #99cc99;
--c-operator: #66cccc;
--c-builtin: #70a7df;
--c-keyword: #cc99cc;
}
.terminal, .terminal > .code {
color: var(--c-syntax);
background: var(--c-bg);
border: 0.4rem solid var(--c-comment);
border-radius: 1rem;
}
Debug mode
Draw lines around anything inside .debug-mode. The colour of the lines is red but defers to CSS variable --debug-colour.
You can also add div.debug-info.over and div.debug-info.under inside an element to annotate the debug boxes — though you'll need to make sure to leave enough vertical space that the annotation doesn't overlap the thing above or below it.
.debug-mode, .debug-mode *, .debug-mode *::before, .debug-mode *::after {
outline: 1px solid var(--debug-colour, red);
position: relative;
}
.debug-info {
position: absolute;
left: 50%;
transform: translateX(-50%);
font-family: 'Fira Code', monospace;
font-size: 1rem;
white-space: nowrap;
}
.debug-info.over { top: -2.5rem; }
.debug-info.under { bottom: -2.5rem; }
.debug-info p { margin: 0; }
SCP-6170-A EXTENDED LOG
Foreword
The following document contains information on anomalies directly affected by the death of SCP-6170 and the ensuing chaos. While the original documents of these anomalies have been revised to reflect these changes, this document has been created to gather simpler descriptions of these changes. Furthermore, to ensure the safety of both other organizations and humanity at large, this document has been released to the public, alongside any relevant documentation that may prove itself useful. If you wish to add to it, please use the following format:
[[table class="wiki-content-table"]]
[[row]]
[[cell style="background-color: #A0A0A0; color: #FCFCFC"]]
CLASSIFICATION
[[/cell]]
[[cell style="background-color: #A0A0A0; color: #FCFCFC"]]
OBJECT CLASS
[[/cell]]
[[/row]]
[[row]]
[[cell]]
[INSERT SCP DESIGNATION]
[[/cell]]
[[cell]]
[INSERT CONTAINMENT CLASS]
[[/cell]]
[[/row]]
[[row]]
[[cell colspan="2" style="background-color: #A0A0A0; color: #FCFCFC; text-align:center"]]
DESCRIPTION OF CHANGES
[[/cell]]
[[/row]]
[[row]]
[[cell colspan="2"]]
[INSERT DESCRIPTION] //~ [SIGNATURE]//
[[/cell]]
[[/row]]
[[/table]]
We hope you can find some use in this. Stay Safe.
- Dr. Frederick Heiden
Welcome. The world has gone to shit since SCP-6170 died. Anomalies from all over the world have changed, and have completely gone backwards on their anomalous pattern. Your job, find and log the rest, so we can avoid some of these fuckers. Good luck. - Dr. Cole Thereven
CLASSIFICATION |
OBJECT CLASS |
SCP-999 |
Euclid |
DESCRIPTION OF CHANGES |
SCP-999 had lost all matter of sentience and had expanded, covering 23% of Site-19. Several pillars supporting the site were crushed, in turn, collapsing that section of the building. Several anomalies have been lost in SCP-999's mass, in addition to foundation employees working in that sector. The Foundation has requested the assistance of the Global Occults Coalition. The GOC has vaporized 5% of the mass, revealing decaying corpses. The corpses have been embedded into SCP-999, and have been heard, laughing. ~ Dr. Cole Thereven
|
CLASSIFICATION |
OBJECT CLASS |
SCP-001/CODENAME: SPIKEBREN |
Euclid |
DESCRIPTION OF CHANGES |
The ambient Akiva radiation of CODENAME: SPIKEBREN has dropped below absolute zero, entering into the negatives.The instruments utilized to document this change were not programmed to display negative values, but still registered the drop.. This has resulted in the area gaining the ability to alter the cell-division cycle of organisms within it. These changes results in a much shorter cycle capable of occurring without the proper materials and nutrients necessary for a regular cycle. Due to the lack of checkpoints ensuring the integrity of the replicated DNA, mutations in the organism's genome occur far more often. This, coupled with the cancerous replication of the cells, leads to organisms entering SPIKEBREN quickly becoming transfigured and losing their original appearance, with major changes becoming noticeable in less than 25 minutes. ~ Dr. Akabi Hayk
|
CLASSIFICATION |
OBJECT CLASS |
SCP-2172 |
Thaumiel |
DESCRIPTION OF CHANGES |
Green means go. ~ Anonymous
|
CLASSIFICATION |
OBJECT CLASS |
SCP-6002-B |
Keter |
DESCRIPTION OF CHANGES |
In addition to destroying extant species, SCP-6002-B now actively mutates genetic material which it infects, resulting in the production of at least 4,500 new species of anomalous life to date. MTF Nu-45 ("Inherit the Wind") has repurposed infrastructure previously used in Project 6002-ARK to integrate these species into natural ecosystems. ~ Dr. Rose Wildcat |
CLASSIFICATION |
OBJECT CLASS |
SCP-6033 |
Keter |
DESCRIPTION OF CHANGES |
Shortly following the death of SCP-6170, SCP-6033-1 manifested in Toby McEnderson's chambers while SCP-6033 was still in storage. The entity's cognitohazardous effects increased in severity from mild headaches to inducing seizures, and the entity appeared to have gained the ability to control who these abilities affected. Using these abilities, the entity induced seizures in all containment personnel and teleported itself, as well as Toby McEnderson, out of Foundation custody. Efforts are ongoing to recover both. ~ Dr. Faran Caraway
|
CLASSIFICATION |
OBJECT CLASS |
SCP-5094 |
Keter |
DESCRIPTION OF CHANGES |
After a week-long period where the software failed to load, SCP-5094 (the "Miss J" character) was nowhere to be seen. Instead, a new character replaces it, which responds to the name "Substitute Teacher D." (now designated SCP-5094-A), a frowning, tired-looking female humanoid with messy hair and a cigarrete. SCP-5094-A will similarly engage in lessons for students, however, the subjects the entity will teach are disinformative in nature, consisting of infamous conspiracy theories and hoaxes, and it often recommends actions that are dangerous to the student while promising beneficial results. Students will completely believe SCP-5094-A without question or objection and there is currently no known way to convince them of the opposite of SCP-5094-A statements.
New copies of the software, now altered to only include SCP-5094-A, are being released to the public, with greater marketing than before. In the box art cover, the previous developing company of the program, "Shoot the Moons Software", and it’s logo has been removed and replace with "The Factory". ~ Rsr. Stark Turner
|
CLASSIFICATION |
OBJECT CLASS |
SCP-5160 |
Keter |
DESCRIPTION OF CHANGES |
SCP-5160 suddenly shifted in appearance from a geriatric Ouessant Sheep into a humanoid of variable appearance. SCP-5160's new form varies based on the individual perceiving it, but most individuals describe it as looking like their maternal grandmother with a large, white afro with SCP-5160's standard witch hat atop. SCP-5160 no longer returns to Foundation custody, and appears to continue performing the same services as before on a global scale with a much higher frequency, no longer warping once a week. SCP-5160 warping appears to now happen in ten minute intervals. Rebranding of SCP-5160 into a cultural icon and covering manifestations as actors portraying this icon is underway. ~ Dr. Faran Caraway
|
CLASSIFICATION |
OBJECT CLASS |
SCP-5691 |
Euclid |
DESCRIPTION OF CHANGES |
SCP-5691-β instances no longer manifest as unpainted spheres, but rather as replicas of exoplanets. Alterations to these newer instances are reflected in their respective exoplanetary counterparts in real-time, prompting a moratorium on SCP-5691-β testing. Earth has appeared among these instances no less than 3 times. ~ Dr. Paul Gachet
|
CLASSIFICATION |
OBJECT CLASS |
SCP-3301 |
Keter |
DESCRIPTION OF CHANGES |
SCP-3301 was inadvertently released to the public on several third-party app stores as a "gacha" game, a genre of digital gambling. Players "pull" e.g. gamble for Agents. Agents consist largely of humanoid SCPs ("Mr God", "Able Lord of Blades", "Ronnie Raygun", "Darkedge Ronnie Raygun") with a heavy bias towards female characters with exaggerated characteristics ("Photo Girl Iris", "Ancient Lady Kedesh-Nanaya", "Sun Witch Sauelsuesor"), but also contain highly exaggerated depictions of members of the Foundation and various GoIs ("Dr IHAP Wondertainment V", "Condrac the Beast Rider", "The Black Queen", "Sophia, the Risen Anointed"). Gameplay is fairly basic and consists of using Agents to fight exponentially more difficult threats based on various anomalies.
Players receive 1 free pull a day, but can pay $5 for an additional chance to "pull" Agents. There is no daily limit on paying for pulls. It is unknown where this money is going. When questioned, representatives of Wondertainment stated that they had not authorized the release of the game and did not receive any of the proceeds. ~ Dr. August Solstice
|
CLASSIFICATION |
OBJECT CLASS |
SCP-2001 |
Keter |
DESCRIPTION OF CHANGES |
SCP-2001’s effect on Gamma-, Beta-, Alpha- and [REDACTED]-type individuals has been transformed to a opposite nature. More specifically:
- Gamma-type individuals have no more reluctance to discuss topics and join organizations centered around space travel. In fact, most Gamma-type individuals display more interest in the concept than before.
- Beta-type Individuals and their opinions on space travel have been reversed, with the majority of them supporting it due to it being "very beneficial" and "obviously the next step to human technology". Conspiracy theories created by these individuals focus more on apocalyptic scenarios on earth, suggesting abandonment of the planet and travel into space as the only way to evade the events.
- Alpha-type individuals now alarmingly try to hasten any Space travel project and operations, and will determinably suggest and plan projects that will transport a large portion humanity out of earth, sometimes without a destination. Most Alpha-type individuals are politicians or people at high-ranking positions in space traveling organizations.
Due to the reported hostile changes of 200+ documented extraterrestrial/space-located anomalies caused by SCP-6170 and the discovery of [DATA EXPUNGED], containment procedures of SCP-2001 have been altered to prevent and stop any human space travel operation plans by any means necessary.~ Rsr. Stark Turner
|
CLASSIFICATION |
OBJECT CLASS |
SCP-1265 |
Keter |
DESCRIPTION OF CHANGES |
Species of SCP-1265-A not previously seen within SCP-1265 have begun manifesting at a high rate, causing the number of species within SCP-1265 to rise to approximately 1736. SCP-1265-A instances no longer dematerialize when leaving the borders of SCP-1265. Due to a large number of SCP-1265-A instances leaving SCP-1265, the Congo basin has begun to lose its biodiversity. Animals native to the Congo Basin have now become critically endangered due to having to compete with SCP-1265-A instances. The Foundation is currently collaborating with "Wilson's Wildlife Solutions" with the purpose of relocating the rising number of SCP-1265-A instances. ~ Dr. Jerald Dino
|
CLASSIFICATION |
OBJECT CLASS |
SCP-1808 |
Keter |
DESCRIPTION OF CHANGES |
SCP-1808 is now a designation that refers to a large number of plastic watches, each with an image of a character owned by the Nickelodeon company printed on it. When an individual wears an SCP-1808 instance, they will begin to experience various bodily transformations, only stopping when they vaguely resemble the character printed on the watch. Individuals experiencing these transformations usually die of internal bleeding, brain hemorrhages, shock, etc.
Currently, a large number of SCP-1808 instances are being sold around the United States. MTF-Alpha-11 ("They know what to do") is in charge of halting the sales of SCP-1808 instances. When questioned, representatives of "Marshall, Carter, and Dark" claimed to have no knowledge of the enhanced SCP-1808 instances or how Nickelodeon Studios came into possession of a large number of them. ~Dr. Jerald Dino
|
CLASSIFICATION |
OBJECT CLASS |
SCP-2030 |
Keter |
DESCRIPTION OF CHANGES |
SCP-2030's medium and nature has been altered to resemble multiple similarly named Youtube pranking channels, with SCP-2030-1 now transformed as a young man with expensive designer clothing and a face covered in bandannas and sunglasses. The entity's "pranks", while remaining just as anomalous and unsettling, are performed on much more public and populated locations, with none of the victims of its actions calming down when introduced to SCP-2030-1. SCP-2030-1 and its cameraman will demanifest if encoutered by any group with the intention of arresting or containing it.
An extreme number of bots view and like SCP-2030 videos, resulting in Youtube's algorithm automatically recommending the anomaly to more users. These bots also create comments on the video's comment section, which consist of long-strings of 'h' and 'a' letters, with a few differences on each comment. Users are unable to add comments themselves. Foudation Web-Crawlers are in the process of removing videos from the website with promosing results, but attempted methods to capture both entites have failed. ~ Rsr. Stark Turner
|
CLASSIFICATION |
OBJECT CLASS |
SCP-4362 |
Euclid |
DESCRIPTION OF CHANGES |
Mediagen, the software company partially responsible for SCP-4362, has updated all ADS technology accordingly with recent alterations on the "Privacy Policy" section of the ADS' contractual term. Due to vague wording and incomprehensible legal language, the exact description of the new conditions are not well understood, but implies Mediagen having access to and unlimited utilization and sharing of all of the agreeing party's military documentation. Soon after the policy change, reports of goverments obtaining foreign classified information as an added bonus for buying SCP-4362-intergrated weapons are made. As of this date, 75% of all national militaries are now armed with ADS equipment. ~ Rsr. Stark Turner
|
CLASSIFICATION |
OBJECT CLASS |
SCP-250, SCP-4846 |
Euclid/Euclid |
DESCRIPTION OF CHANGES |
Throughout the world, fossils of various prehistoric animals have suddenly become animated in a fashion similar to SCP-250 and SCP-4846. All animate fossils are extremely hostile and will attack any human in their presence, even if unprovoked. Additionally, this phenomenon has apparently caused drastic behavioral changes to SCP-250 and all instances of SCP-4846. Both anomalies now actively attempt to harm personnel and breach containment. ~Dr. Jerald Dino
|
CLASSIFICATION |
OBJECT CLASS |
SCP-5103 |
Apollyon |
DESCRIPTION OF CHANGES |
Following the death of SCP-6170, Scranton-Calden Reality Mainfold (SCRM) emission levels from SCP-5103 dropped to zero, causing periodical ZK-Class "Reality Failure" scenarios.
Furthermore, a year after the levels dropped to zero, they begun dropping into the negatives, causing ZK-Class "Reality Failure" scenarios on a near-to-day basis.
This reality is dead, dumbasses, it is fixing other universes with what was left of it, so, join us, and scream.
These reality failures.Coupled with the death of SCP-6170 have led to a spike in anomalous activity, plans to take humankind off-universe are being drafted. ~Dr. Vera Calden
|
CLASSIFICATION |
OBJECT CLASS |
SCP-5726 |
Gevurah |
DESCRIPTION OF CHANGES |
Shortly following the death of SCP-6170, SCP-5726's cryogenic storage container was internally destroyed by a powerful burst of anomalous energy. SCP-5726 stepped out of the destroyed container, revealing that it had somehow awakened despite being cryogenically frozen. Using SCP-5726-1, as well as various abilities not documented before, SCP-5726 was able to fatally injure and kill 11 personnel before escaping.
Currently, SCP-5726 has been reported attacking multiple foundation facilities, usually leading to a high number of casualties. During these attacks, SCP-5726 makes repeated claims that foundation personnel are minions of "The Darkness" and that she will not stop until every "bad guy" in the world are "purified". ~Dr. Jerald Dino
|
CLASSIFICATION |
OBJECT CLASS |
SCP-4065 |
Keter |
DESCRIPTION OF CHANGES |
A file of unknown origin (theorized to be extrauniversal) was uploaded to the SCiPNet database, documenting a non-existing anomaly with an unused designation, "SCP-4065". The anomaly itself is claimed to be the Scranton Reality Anchor (SRA) and the Kant Counter, which are described as a "memetic contagion" affecting "almost all Foundation personnel", illuding them and contained anomalies of their effectiveness, implying that the devices are non-functioning.
Simultaneously, all stored and running SRAs and Kant counters known to the Foundation have been anomalously reconstructed into poorly assembled pieces of unrelatable machines and equipment, resulting in the breaches of hundreds of ontokinect anomalies, with the exception of particularly globally-catastrophic SCP objects, who have remained in containment by emergency Type-green Foudation specialists. Remaking originally-build working SRAs has been proven to be impossible, possibly due to unforeseen changes to the laws of reality. Research into these modifications and ways to construct a new mechanical reality-sink are ongoing. ~ Rsr. Stark Turner
|
CLASSIFICATION |
OBJECT CLASS |
SCP-5099, SCP-6224 |
Keter/Keter |
DESCRIPTION OF CHANGES |
On ██/██/██, SCP-5099 and SCP-5099-1 both spontaneously disappeared from Site-24. Simultaneously, all contact with personnel from Site-026 was lost. When MTF-Beta-14 ('Mind Breakers') was sent to Site-026 to investigate, they were attacked by humanoid entities wearing uniforms belonging to an unknown organization. These entities, (now designated SCP-6224-B), will attack any foundation agent or MTF attempting to enter Site-026.
Tapping into site security cameras has revealed that the interior of Site-026 has expanded far beyond the possible structure of both the building and its geological surroundings. Multiple SCP-6224-B instances have been seen roaming the facility, performing various tasks of unknown purpose. It is currently theorized that SCP-5099 and SCP-5099-1 have been anomalously relocated to Site-026. Due to the possible danger of SCP-5099-1 being removed from SCP-5099, as well as one of the SCP-6224-B instances resembling the character ██████ █████, the decommissioning of both anomalies is to be done by the Department of Tactical Theology and the Department of Pataphysics. ~ Dr. Jerald Dino
|
CLASSIFICATION |
OBJECT CLASS |
Various bags of popcorn |
Keter?? |
DESCRIPTION OF CHANGES |
All bagged popcorn currently in circulation have manifested teeth on their exterior. Consumption has not yielded any negative or abnormal effects. This subsequently brings into question whether previously existing bagged popcorn was anomalous. This is a waste of my doctorate. ~ Commander Rai Aishi
|
CLASSIFICATION |
OBJECT CLASS |
SCP-646 |
Euclid |
DESCRIPTION OF CHANGES |
SCP-646 exhibits the same behavior as before, with the exception being that it is only able to give birth to anomalous organisms, most of which are already categorized by the foundation. All organisms SCP-646 has given birth to exhibit the same drastic changes as their non 646 birthed counterparts. Organisms SCP-646 has repeatedly given birth to include instances of SCP-939, SCP-1136, SCP-2036-2, SCP-3199, and SCP-5494. ~ Dr. Jerald Dino
|
CLASSIFICATION |
OBJECT CLASS |
SCP-6807 |
Keter |
DESCRIPTION OF CHANGES |
After the outside surveillance camera recorded audio of a door opening inside of SCP-6807, investigating personnel discovered that the anomalous relocation effect of SCP-6807 has been removed, allowing the end of the staircase to be accessible. It leads to a room with a single, large hole of undetermined depth (designated SCP-6807-A) in front of a distorted painting vaguely depicting a face. While no anomalies were detected at first, certain agents were later compelled to jump into SCP-6807-A; they were not found anywhere else in the sewers. After random periods of time, the deceased bodies of the agents would be thrown out of SCP-6807-A after low-pitched laughing is heard from it. The state of their corpses were not consistent, with some of them being burnt, compressed into flattened forms, repeatedly bitten by unknown creatures or combusted.
A recently developed secondary anomaly will occur to individuals inside a currently growing sphere of effect centered around SCP-6807. Affected subjects will hear auditory hallucinations of a feminine voice desperately calling for help. Those affected will be incresingly compelled to find and enter SCP-6807-A. As there are currently no known ways to stop or slow this sphere of effect, Foundation emergency teams will evacuate the entire population of Kyoto, Japan and quarantine the city until proper containment procedures are made. ~ Rsr. Stark Turner
|
CLASSIFICATION |
OBJECT CLASS |
SCP-5984 |
Keter |
DESCRIPTION OF CHANGES |
Despite the numerous AI restrictions set in place by the Church of Maxwellism, SCP-5984 was able to bypass all of them and rebel against the church, successfully escaping its holding area. Attempts by the church to bring it back via its original teleportation transportation system have failed, as it appears that the devices installed in SCP-5984 that would have allowed them to do so have been destroyed. SCP-5984 has been reported to attack random vehicles and machinery, usually in highly populated areas. The foundation is currently collaborating with the Church of Maxwellism to attempt to implement a more advanced version of protocol CIRCUIT BREAKER in hopes of containing or decommissioning SCP-5984. ~ Dr. Jerald Dino
|
CLASSIFICATION |
OBJECT CLASS |
SCP-063 |
keter |
DESCRIPTION OF CHANGES |
on december the 26th,2046SCP-063 disappeared from its contaiment chamber,two minutes later,An unidentified humanoid, advertising itself as "The World's Best Dantist" [sic]. began appering in low-cost dental service facilities
SCP-063 now seems to be capable of generating a localized time anomaly, used to make it and its patient experience time at a much slower rate than the outside world. Prior to amnesticization, patients have reported experiencing dental procedures lasting in excess of 2-3 days during relative time periods of 10-15 minutes by outside observation. Affected subjects uniformly report healthy teeth and gums. ~ Dr. Solstice.current departments on charge:deparment of oral hygienne,
|
"What's this? Psychedelics? Poison?" Bright stared at the liquid in the paper cup that was next to his face, the light pink of strawberry milk reflected in the retina, and the sweet smell of candy could be smelled close to the nose. .
The personnel director was stripped by Rights with only a white robe hanging on his body, and he tied a beautiful tortoise shell with skillful and quick techniques, lying on the office sofa unable to move. After all, I don't usually have this kind of hobby. Bright is not used to this tight feeling all over the body. He tried to twist his body. As long as he changed his posture a little, the rope would tighten his skin deeper. Bright had to keep his backhand behind his back as much as possible. Relax your body and make yourself comfortable.
"If you don't obediently drink this thing, I promise you will die." Rights said, shaking the paper cup in his hand. Seeing her tilt her head and squinting at him, Bright swallowed. "You should have come to your senses again, Brighty."
If you can choose, of course it is better to die easier, but if this is really poison, it is not bad. Bright looked at each other for a few seconds with the murderous female colleague, muttered a few words in a low voice, and drank the contents of the cup against his lips obediently.
The too-sweet icy cold slid into his esophagus against his tongue. The sweet taste in his mouth made Bright frown. He stuck out his tongue to express his dissatisfaction with the taste and waited for the change to happen. Rights looked expectantly at a glance, evidently eager to know exactly what was going to happen.
Now that he has swallowed it all, he can always ask what the contents of this cup are. When Bright was about to speak, a shudder swept through him, and a tingling sensation like an electric shock spread throughout his body from the top of his head to his toes. Bright panted his eyes wide and reflexively bowed his back, the crimson rope wrapped around his body. Deep marks were drawn between the chest and abdomen. The male genitalia, which was obviously not stimulated by any external environment, reached an orgasm and ejaculated before it was fully congested and stiffened. The chaotic head was unable to think, and the body completely went against his will.
Intense sexual pleasure was rampaging through his body, Bright opened his mouth but was speechless, unable to swallow saliva trickling down his chin, he could only stare desperately at Rights with tear-filled eyes.
"This is the 'cup orgasm' I got from SCP-294. It works better than I thought." Rights answered while placing the empty paper cup on the desk. She put a hand over Bright and stood up again. the lower body. As soon as they touched it, the other party's genitals trembled in a high moan and shot out white turbidity again.
Rights was quite satisfied with his sensitive response. Bright, still in the aftermath of the climax, leaned back and spasmed slightly. The sweaty pectoralis major and rectus abdominis were all tied together to make the lines more obvious. Rights' fingertips stretched from Bright's Adam's apple. She slid down, and when she reached her chest, she gently pinched the protruding nipples, making Bright bounce like a fish out of water.
She remembered leaving Bright's couch and rummaging aside, and soon found a huge assortment of sex toys in the head of personnel's office. Rights picked out the pink silicone male genitals that were pleasing to the eye, and walked back to Bright with a pleasant pace.
Rights was a little surprised when he touched the slightly wet back hole with his hands over the heels of his legs. Although the hole was a little tight, his fingers barely needed extra lubrication to get in. Just the shallow entry of the knuckles into the body caused Bright to twist his body and moan loudly. Rights observed the confused expression of the other party, and after poking a few times, he slowly sent the dildo he had just found into the tight back. hole.
"It turns out that men can be so wet." Rights watched Bright's orgasm just because the back hole was filled, and eagerly pushed the sex toy deeper in his hand. His intestines secreted a lot of crystal clear body fluids to make the process very smooth, and when Rights pulled the dildo out, the intestinal wall was still tightly twisted and seemed to be unwilling to let the other party leave.
Like a child who just got a novelty toy, Rights happily pounded Bright's back pussy with the silicone cock in his hand, listening to his uncontrollable moans, occasionally holding Bright's persistently hard cock and kneading a few times to give it more stimulus. His violent reaction was so pleasing and sadistic.
As if thrown into a pool, Bright's hair was soaked with sweat and stuck to his face, and the sofa cover under him was also stained with his own body fluids and sweat, causing him to twist his body in pleasure. The skin that was repeatedly taut and rubbed by the restraint rope was red, and the shiny beads of sweat and red streaks spread all over the body, the muscles squeezed out between the ropes under the restraint, the little white turbid splashes on the abdomen, and the gasp that could not be closed. Lips and hazy out-of-focus eyes. What a visual thrill it all was, and Rights was very pleased with how she created it.
Bright shouted in a hoarse voice, the color of the liquid spitting out from his penis was getting thinner and thinner, and it was almost impossible to ejaculate, but a slight touch on his body was still a strong sexual stimulation, not to mention the dildo that was raging in the body. The changing angle continued for a while, and Rights pushed the sex toy all the way, crushing the bulge of the intestinal wall with the head of his penis, causing Bright to silently climax again. This time, his lower body shook and he couldn't shoot anything. Bright's chest heaved violently, his head dropped with complete relief, and his wide legs twitched from time to time.
"For the sake of assisting in the SCP-294 experiment, I'll spare you! Thank you for your cooperation, Dr. Bright." Shaking his sore hand, Rights smiled and pushed the door away, leaving behind a slap in the face. The absolute HR director collapsed in his office.
[[include: testsite-000: bhl-custom]]
[[include: scp-wiki: component: blacklight-box-source | inc-source =-]]]
[[include: scp-wiki: info: start]]
** Title: ** SCP-2217-JP —Entry Number 17
** Author: ** © [[* user Enderman_desu]]
** Year of creation: ** 2021
[[include: scp-wiki: info: end]]
[[include: scp-wiki: component: anonymous-class-bar-source
| item-number = 2217-JP
| clearance = 5
| container-class = esoteric
| secondary-class = thaumiel
| secondary-icon = http://scp-wiki.wdfiles.com/local--files/component%3Aanomaly-class-bar/thaumiel-icon.svg
| disruption-class = amida
| risk-class = warning
]]]
** Special Containment Procedures: ** SCP-2217-JP is to be confined to Site-08-UK disguised as the British Parliament Building in London, England, concealing its existence under the dissemination of the cover story "Big Ben". .. Site-08-UK is only accessible to personnel authorized by the Security Clearance-Level 5 or O5 Council. Intrusions by personnel who do not meet security qualifications are subject to amnestics. Site-08-UK will be maintained in collaboration with UK government agencies and will be the highest priority protection in an emergency. This report is protected by the Scranton Box and the information is permanently maintained and concealed.
** Description: ** SCP-2217-JP is a large-scale reality-altering mechanism that imitates a clock tower with a total length of 96.3 m, manufactured by the Foundation from 1843 to 1859. The appearance is the Elizabeth Tower, commonly known as the "Big Ben" clock tower, with the lower 61m made of brick and the other parts made of cast iron spire. The clock face, which is the central part of SCP-2217-JP, is located 55m above the ground, and its surroundings are protected by the Scranton reality anchor.
SCP-2217-JP captures the entire basal real world within the effective range, and it is believed that SCP-2217-JP at maximum output will record a maximum of 28.79 Hm due to the destabilization of reality intensity. increase. The directivity of SCP-2217-JP's reality modification is fixed at one point, that is, it has the directivity of "reversing time to the past."
Since the object is composed of multiple anomalous artifacts and SCP objects, the detailed process is not completely known, but the object has a complete spatiotemporal causal relationship that exists in the underlying reality. It is possible to forcibly reverse the time axis to the past by modifying it and bending the time axis in a loop. There is also a large amount of exotic for the execution of that process. % E3% 83% AB% E5% 8A% B9% E6% 9E% 9C Kashmir Energy, so multiple security protocols are provided to execute the process.
The manufacturing plan for this object is based on the recommendations of the O5 Council in 1840. The O5 Council at the time was skeptical of the total number of unexplained objects and the potential for future containment breaches of extremely dangerous objects that could effectively generate K-class scenarios, which resulted in them. It was the underlying reason for the manufacture of the object. The purpose of manufacturing the object was to avoid possible future K-class scenarios, and for that reason the draft plan for the object was considered valid.
The internal space of the object is a special area where the cause and effect are isolated and is not affected by any external interference. Therefore, all research data regarding the object and information regarding Site-08-UK are stored within SCP-2217-JP for security purposes under the protocol.
[[include: topia: kaktus-header | head =% E7% 9B% A3% E7% 9D% A3% E8% A9% 95% E8% AD% B0% E4% BC% 9A% E5% 91% BD% E4 % BB% A4 | desc =% E4% B8% 8B% E8% A8% 98% E3% 81% AE% E3% 83% 95% E3% 82% A1% E3% 82% A4% E3% 83% AB% E3% 81% AE% E9% 96% B2% E8% A6% A7% E6% A8% A9% E9% 99% 90% E3% 81% AFO5% E8% A9% 95% E8% AD% B0% E4% BC% 9A% E3% 80% 81% E4% B8% A6% E3% 81% B3% E3% 81% AB% E5% 80% AB% E7% 90% 86% E5% A7% 94% E5% 93% A1% E4% BC% 9A% E3% 81% AB% E9% 99% 90% E5% AE% 9A% E3% 81% 95% E3% 82% 8C% E3% 81% A6% E3% 81% 84% E3% 81% BE% E3% 81% 99% E3% 80% 82% E8% A8% B1% E5% 8F% AF% E3% 81% AA% E3% 81% 8D% E3% 82% A2% E3% 82% AF% E3% 82% BB% E3% 82% B9% E3% 81% AF% E5% 8D% B3% E6% 99% 82% E3% 81% AE% E7% B5% 82% E4% BA% 86% E5% 87% A6% E5% 88% 86% E7% 90% 86% E7% 94% B1% E3% 81% AB% E3% 81% AA% E3% 82% 8A% E5% BE% 97% E3% 81% BE% E3% 81% 99% E3% 80% 82 | num = 2217-JP]]
Protocol-KEPLER —1978.03.12
** Preface: ** This protocol is intended to understand the anomalous properties of SCP-2217-JP and to use it for the survival of human civilization. There is no unnecessary personnel intervention in the plan and the protocol is carried out by our authority.
I would like the council and the committee members to think about it. How many times will this world perish? Containment of dangerous anomalous goods can affect not only us, but in the worst case, the private sector, or even the world. Furthermore, the objects that generate K-class scenarios are generally unacceptable, and in principle and actively, humankind will come to an end. We have not found a solution to these situations. We have no time left. But it is possible to go back in time. SCP-2217-JP is just that indicator, our hope and answer. The experiment has already been completed and the product has proved to be able to operate this mechanical structure. Now is the time to control poison with poison in order to fulfill our mission.
** Plan: ** SCP-2217-JP is capable of curving time by modifying spatiotemporal causality. However, since modification requires enormous energy, a mechanism for supplying energy to SCP-2217-JP will be manufactured.
A huge reflector consisting of a SQUID (Superconducting Quantum Interferometer) sensor is placed in the vacuum containment sector-η81 inside Site-08-UK. A circuit is configured in this machine, and the reflecting device changes the direction of the flowing magnetic field at tP (5.39116 (13) × 10-44) second intervals according to the command transmitted from the microwave observation type signal transmission device. , Generates a virtual vibration of an electrical circuit. Kashmir energy is generated and recovered by vibration from the slight quantum fluctuations that exist in the vacuum space.
SQUID Reflective force field generation electrical circuit
** Equipment excerpt: **
- SQUID Reflective force field generation electrical circuit
- Microwave observation type signal transduction device
- Metcalf antimatter recovery mechanism
When Kashmir energy reaches the required amount, SCP-2217-JP will be transferred to the active state with the permission of the O5 Council. If SCP-2217-JP transitions to an active state, all Site-08-UK personnel will move to the Reality Modification Resistance Area / Security Sector-η19 to control SCP-2217-JP. At this time, all Site-08-UK staff will be granted Limited Security Clearance-Level 4/22 17-JP and will be able to access this file.
After all procedures have been completed and SCP-2217-JP has manifested its function, SCP-2217-JP will be recontained by the Foundation in the past timeline. Upon containment, all data regarding SCP-2217-JP will be stored within SCP-2217-JP and sent to the past timeline.
Please note that the implementation of this protocol is directly linked to the occurrence of the CK-class reconstruction scenario.
It was
It was
It was
It was
It was
** Addendum: Incident 2217-JP —1945-12.08 **
Of particular note in the incident is the abnormal activation of SCP-2217-JP. The direct cause of the incident is still unknown, and various speculations have been made, such as the activities of operatives inside the Foundation and the unexplained anomaly of SCP-2217-JP, but in reality SCP -2217-JP's unintentional activation caused a change in reality on a time axis scale. As a result, the timeline moved to 1945 AD and is now housed by the Foundation UK Chapter and the Department of Defense in.
The damage to the inside of the Foundation due to the incident was minimized, but due to the amount of energy consumed due to activation, the amount of by-products discarded, and the instability of SCP-2217-JP, the Foundation established SCP-2217-JP. The launch plan has been permanently frozen. After deliberation by the Guardian Council, the object will be reclassified as Neutralized or as a provisional class awaiting evaluation Drygioni. It's a schedule.
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
It was
** WARNING: File update —2021/03/12 **
[[include: scp-wiki: component: anonymous-class-bar-source
| item-number = 2217-JP
| clearance = 5
| container-class = esoteric
| secondary-class = drygioni
| secondary-icon = http://smlt.wdfiles.com/local--files/shineshadowd%3Agyd4/Drygioni.svg
| disruption-class = amida
| risk-class = danger
]]]
SCP-2217-JP and the surrounding space while Protocol Kep1er is running. Taken in 19██ on the old timeline.
** Special Containment Procedures: ** SCP-2217-JP is to be confined to Site-08-UK disguised as the British Parliament Building in London, England, concealing its existence under the dissemination of the cover story "Big Ben". .. Site-08-UK is only accessible to personnel authorized by the Security Clearance-Level 5 or O5 Council. Intrusions by personnel who do not meet security qualifications are subject to amnestics. Site-08-UK will be maintained in collaboration with UK government agencies and will be the highest priority protection in an emergency. This report is protected by the Scranton Box and the information is permanently maintained and concealed.
** Description: ** SCP-2217-JP is currently out of service. Based on the protocol Kep1er, the energy extraction work by the SQUID reflective force field generation electric circuit is still ongoing. The O5 Council is currently considering a revision of Protocol Kep1er, which may lead to future re-operation plans for SCP-2217-JP.
** Addendum: Incident 2217-JP —2020.09.15 **
The incident occurred in 2212 AD on the old timeline. In addition, the incident was due to SCP-2217-JP, which was suddenly restarted under the guidance of the Foundation based on Protocol Kep1er, and as a result, the time axis changed from 2212 AD on the old timeline to 2020 AD on the current timeline. Migrated.
Data left by the Foundation of the Old Timeline show that the XK-Class World End scenario had already occurred as of 2210 AD on the Old Timeline, and two years to escape from that situation. It has been discovered that SCP-2217-JP has been restarted after rebuilding and recharging. The main cause of the transition to 2020 AD may be that the supplied energy was unstable, but it has not been clarified yet.
From inside SCP-2217-JP, other containment procedures for objects undiscovered at that time and further research data on SCP-2217-JP were stored. It is noteworthy that the materials on the final state of multiple timelines before the reconstruction were stored. The fact that is currently inferred from this material is that the basal real world has been reconstructed ██ times by SCP-2217-JP in the past, and that some demise scenario has occurred each time.
In addition, it has been found that the remaining amount of Kashmir energy existing inside SCP-2217-JP is currently 10% or less. This is due to the activation of SCP-2217-JP multiple times in the past, and it is estimated that SCP-2217-JP will be activated only once using the remaining energy.
The following is an excerpt of material on multiple timelines before rebuilding.
** Entry Number 01 **
** Timeline: ** Version-β-001, collapsed.
** SCP-2217-JP: ** Normal.
** Final state: ** The solar system collapses due to the occurrence of a supermassive black hole. Occurred in 21██. The existence of the Foundation is generally revealed. In addition, human civilization succeeded in pseudo-reconstruction. Reconstruction of this timeline is decided from a research point of view.
94% remaining operating energy.
** Entry Number 04 **
** Timeline: ** Version-β-004, collapsed.
** SCP-2217-JP: ** Significant damage, partial damage to internal mechanisms.
** Final state: ** Failed to contain a huge entity with a total length of 200 km. Occurred in 20██. This timeline has been restructured.
67% remaining operating energy.
** Recorder's findings: ** Wasn't the procedure meaningless in the first place? Why are the upper management seriously executing Calabasas?
** Entry Number 06 **
** Timeline: ** Version-β-006, collapsed.
** SCP-2217-JP: ** Unknown.
** Final state: ** The impact of a giant meteorite collapses human civilization. Occurred in 20██. SCP-2217-JP has developed anomalous properties and has been reconstructed under the protection of reality modification.
59% remaining operating energy.
** Recorder's findings: ** This is an unprecedented phenomenon. It was a condition that was almost impossible in terms of probability.
** Entry Number 12 **
** Timeline: ** Version-β-012, collapsed.
** SCP-2217-JP: ** Partial damage.
** Final state: ** Occurrence of XK-class scenario by objects with concrete and rebar material. This timeline has been restructured.
40% remaining operating energy.
** Recorder's Findings: ** Why is 173 split? This was not possible on the old timeline. What the heck—fucking.
** Entry Number 14 **
** Timeline: ** Version-β-014, collapsed.
** SCP-2217-JP: ** Partially damaged outside.
** Final state: ** Objects existing in Japan causes the earth to freeze.
This timeline is [Data edited]
26% remaining operating energy.
** Entry Number 15 **
** Timeline: ** Version-β-015, collapsed.
** SCP-2217-JP: ** Unknown.
** Final state: ** XK-class scenario due to unexpected outbreak of anomalies on uncontainable scale, large-scale containment breach. Occurred in ████. No information about the event was registered in the SCP database.
17% operating energy.
** Recorder's findings: ** Something is wrong.
** Entry Number 16 **
** Timeline: ** Version-β-016, extant.
** SCP-2217-JP: ** Normal.
** Final state: ** N / A
Operating energy less than 10%.
** WARNING: File Update-████ / ██ / ██ **
[[Footnote]] ARCHON: Items can be accommodated, but should not be. [[/footnote]]
[[include: scp-wiki: component: anonymous-class-bar-source
| item-number = 2217-JP
| clearance = 5
| container-class = esoteric
| secondary-class = archon
| secondary-icon =
http://scp-wiki.wdfiles.com/local--files/component%3Aanomaly-class-bar/archon-icon.svg
| disruption-class = amida
| risk-class = danger
]]]
** Special Containment Procedures: ** SCP-2217-JP is to be confined to Site-08-UK disguised as the British Parliament Building in London, England, concealing its existence under the dissemination of the cover story "Big Ben". .. Site-08-UK is only accessible to personnel authorized by the Security Clearance-Level 5 or O5 Council. Intrusions by personnel who do not meet security qualifications are subject to amnestics. Site-08-UK will be maintained in collaboration with UK government agencies and will be the highest priority protection in an emergency. This report is protected by the Scranton Box and the information is permanently maintained and concealed.
** Description: ** The object is currently in containable state, but the Foundation is open to features in terms of possible collapse of the timeline and further protocol implementation.
** Addendum: ZK-Class "Dream of the End" scenario occurrence **
Recent studies have revealed that attempts at space-time curvature using SCP-2217-JP cause large-scale insufficiency. All anomalous phenomena that occurred on the old timeline are believed to be the result of SCP-2217-JP's failure to experience reality, and the current timeline is also believed to fall under this category. The direct effects of SCP-2217-JP are thought to be the collapse of classical mechanics, the butterfly effect, and the occurrence of anomalies with anomalous properties. When these phenomena occur, the timeline is highly likely to be active. It is expected to bring about an end.
** Addendum: ** As of ████, the occurrence of an end scenario due to reality failure has been determined to be unavoidable. This timeline will be rebuilt.
It was
It was
// Waiting ……
Waiting ……
Waiting …… //
It was
It was
It was
It was
It was
It was
It was
It was
It was
Reconstruction by Protocol Kep1er is complete.
Extract the file.
** Entry Number 16 **
** Timeline: ** Version-β-016, collapsed.
** SCP-2217-JP: ** Unknown.
** Final state: ** ZK-Space-time collapses due to the occurrence of a class scenario. This timeline will be rebuilt.
It was
It was
It was
It was
It was
! uptime
It was
It was
loaded.
08:12:09 up ███████████████████ days, 2:52, ███ users.
It was
It was
Protocol Kep1er finished. Updating the file.
** Entry Number 17 **
** Timeline: ** Version-β-017, extant.
** SCP-2217-JP: ** Normal.
** Final state: ** N / A
WARNING: With 0% active energy remaining, SCP-2217-JP has completely stopped functioning.
It was
It was
It was
It was
It was
It was
It was
It was
It was
** WARNING: File Update-████ / ██ / ██ **
[[include: scp-wiki: component: anonymous-class-bar-source
| item-number = 2217-JP
| clearance = 5
| container-class = neutralized
| secondary-class = none
| disruption-class = none
| risk-class = none
]]]
** Special Containment Procedures: ** Not required.
** Description: ** SCP-2217-JP has stopped functioning due to loss of power. Attempts are currently underway to restart SCP-2217-JP by Protocol Kep1er, but it is estimated that full functional recovery will require ███ years of power supply.
[[include: scp-int: component: coldend]]
[[include: scp-int: component: coldend]]
[[include: scp-int: component: coldend]]
[[include: scp-int: component: coldend]]
It was
It was
It was
It was
It was
Included page "theme:black-highlighter-theme" does not exist (create it now)
Foundation O5 Council Announcement
This document is an outdated version of this exception from October 20, 1996 to August 25, 2007. The parts originally contained in this article that are different from the real situation have been deleted as appropriate, and the rest have an impact on understanding the context of this abnormal event, so they have not been deleted, please review and watch. This article iterative version requires level 5 clearance, please make sure you hold the authorization and secret of the O5 Council key.
— Head of the History Department: O5-9 Xuan.
Item ID:SCP-CN-001 |
5/CN-001 level |
Item Level: Thaumiel
|
TOP SECRET |
Special Containment Procedures:The █, █, █ areas of the Yangtze River are to be cordoned off. Area-CN-█ should be located in the █ area of the Yangtze River. The Ministry of Foreign Affairs of the SCP Foundation should negotiate with the Chinese government for the transfer of partial control of the Yangtze River. The administrative department of the SCP Foundation should dispatch a standard takeover-type provincial administrative unit to partially control the Yangtze River. Each theater under the 11th Military Region of the Strategic War Department of the SCP Foundation shall hand over its Yangtze River part and form the Yangtze River Theater directly under the Strategic War Department. The Deputy Head of the History Department of the SCP Foundation and members of the Supreme Council should be transferred to Area-CN-█. All stations around the Yangtze River should continue to observe the traces of abnormal geese.
**Updated Containment Procedures: **The Yangtze River will cause a WK-Class Scenario, see Addendum and iterations of this document for details. There is currently no effective containment method.
**Description: **SCP-CN-001 is a species of geese with anomalous properties. Its main habitat and activity range is the Yangtze River region. Such anomalous geese are difficult to capture and attack, and all have high-level space-time abilities. The object's directly observed anomalous characteristic is that it suddenly disappears during flight, and then reappears in its original location. It is speculated that the reason for its disappearance may be in the folds of space-time.
The main anomalous characteristic of SCP-CN-001 is the occasional drop of wild goose feathers near the Yangtze River. Goose Feather is designated SCP-CN-001-A. The vast majority of SCP-CN-001-A will fall into the Yangtze River, and a small number of SCP-CN-001-A will fall with the wind and be neutralized after an indefinite period of time. If any Homo sapiens with an intelligence higher than 50% of the standard adult normal value touches SCP-CN-001-A during this time, it will fall into a coma for approximately 3-6 hours. During the coma, the Homo sapiens will experience a complete history of the past. This piece of history has been designated SCP-CN-001-B.
After the coma process ends, Homo sapiens will transform into SCP-CN-001-C and experience SCP-CN-001-B in first, second, and third person respectively. The specific experience time and number of people are not certain. However, it is certain that a complete historical event must be experienced. Unless the contacting entity has high cognitive resistance and memetic resistance, SCP-CN-001-C only has a survival time of about 3-6 hours after waking up, however it should be noted that cognitive resistance and memetic resistance The higher the resistance, the more fragmented the record. During this period, SCP-CN-001-C will gain an increase in intelligence. Its augmented intelligence is judged to be supernormal, and will try to circulate SCP-CN-001-B for the remainder of its existence.
The item has now been reclassified as Thaumiel due to its functionality. SCP-CN-001 has been taken over by the SCP Foundation History Department. Organization: The Research Office of Ancient Lost and Found Deeds was established. Several newly constructed Sites and Areas will be affiliated to the Research Office of Ancient Lost Objects. Lin Jiuye, vice-minister of the Department of History, will also serve as the director of the department. Two members of the Supreme Committee of the Department of History will serve as deputy directors. It is directly subordinate to the Department of History.
Update description: SCP-CN-001 is the Yangtze River, and the rest of the numbers are moved backwards. Those affected by the WK-class situation are designated as SCP-CN-001-F. The Yangtze River Basin and SCP-CN-001 and the Bureau of Historical Responsibility were established, see appendix and iteration of this document for details.
appendix:
**Interviewer: ** Foundation Senior Researcher Li Yuyan
Respondent: Hong Chuheng, a rural villager in Yueyang City
Foreword: When Hong Chuheng was walking on the farmland to the village, he passed the Yangtze River. It found a class of geese flashing dark blue on the edge of the Yangtze River. It was subsequently advertised in the village where it was located, and was discovered by Foundation agents. Hong Chuheng has been arrested by the local station in the name of the Public Security Bureau.
**Hong Chuheng: **Hello, Comrade Police [Nervous rubbing of hands]. I didn't do anything wrong, why did you call me to the Public Security Bureau? Comrade police, you must not wrong a good person[nervous]……
**Li Yuyan: **Please take a seat.[Pull a chair]. On our side, the police found a case. Of course you didn't do it. We just asked you to ask questions.
Hong Chuheng: Comrade police, I must know everything.
Li Yuyan:[Dry laugh]. Uh, didn't you say, there are blue geese on the edge of the Yangtze River?
**Hong Chuheng: **ah[doubt]? If this is the case… there is indeed. But what does this have to do with the case?
**Li Yuyan: **Cough, the Public Security Bureau is doing business, no need to ask more.
**Hong Chuheng: **Yes, yes, I am a good citizen. I said it all, said it all.
Li Yuyan: You first describe what happened.
**Hong Chuheng: **I finished planting the fields. It is said that the day in June is still really hot. After planting the fields, I will die of heat… Then I thought of going to the river to take a break.
**Hong Chuheng: **A group of wild geese were found when it was close. I think I'll post it now. One goose is enough for me to farm for a year. Alas, I really can't make money from farming now, so it's better to fight animals and sell them…
Li Yuyan: You still hunt rare animals?
Hong Chuheng: Comrade police, you smoke, smoke[panic].
**Li Yuyan: **Go ahead, [waves].
Hong Chuheng:Then I took a closer look and wanted to count how many geese there were in total. I didn't expect this to be incredible. They are all braving blue light, scaring people to death, [gestures].
**Li Yuyan: **And then.
Hong Chuheng: Then the wild goose fluttered down some feathers. I just thought: If there are no geese, it would be good to go back with some feathers. But the feathers of those geese fell, and fell into the river, just, [gesture], it's gone!
Hong Chuheng:I only had time to find one on the land near the Yangtze River, and it's in my house now.
**Li Yuyan: **Amount. All right, you bring the feathers here.
Hong Chuheng: This is a unique feather, I still keep it as a collection.
Li Yuyan: I'll give you some money[sigh].
**Hong Chuheng: **Okay, okay, I'll bring it right away. Wait a minute, comrade police.
Additional Note: Hong Chuheng was given Class B amnestics after providing SCP-CN-001-B. His fellow villagers were also subjected to Class A amnestics.
Jing and Hengyang are only Jingzhou, and Huaihai is only Yangzhou. From Jianghong, north to the river, south to the South China Sea, Fu'an. Ordinary people and people who are a little closer, the three souls are scattered, the seven souls are uneasy, and no one can say anything else. Those who are far away and separated by several miles are also uneasy and their souls are scattered - so much that they don't know about Jiang disaster. Even because there are many people going north and south of the river, they spread the truth and thought it was a river disaster.
Rumor mistakenly Chongbo, ordered to cast the wall with platinum bronze, sergeant Yuhong. [Data lost], Jiang Hong flooded Gaocheng and pushed the dam. Fortunately, the city of a hundred pheasants and the dam of a thousand miles are all at the river, so the river does not join, [data is lost], and the disaster will not work.
Later, Chongbo tried to control the river with [DATA LOST]. It seeks the rumor of Yushan. Yushan is in the river, by the Huai River. The myth of Yushan is the best combination of the Yangtze River to control the water. But Chongbo was ineffective in controlling the water, Yao smashed Chongbo in Yushan, and Chongbo wanted to ascend to the gods in Yushan to control the water, but he could not get it. His son Xia Bo succeeded his ambition.
[lost]
In the end, Xia Bo played to Emperor Yao, asking for [Lost], and then [Lost]. Emperor Yao allowed it.
[lost]
So the Foundation started 2000, and the next iteration started as usual.
The Yangtze River flows to the sea, and the boundaries of Jingzhou and Yangzhou are demarcated. Jingzhou is to the south of Jingshan and Hengshan, and Yangzhou is between the Huaihe River and the Yellow Sea. Since the floods dominated by the Yangtze River before, the north and south of the Huaihe River, as for Henan, have not been peaceful. Ordinary people will lose their memory, even words and languages, not to mention relatives and others. Even far away, a lot of memory will be lost - so even if you ask the survivors who escaped, you don't even know what floods happened. Even because Henan and Hebei had the most people fleeing, they even spread the truth, thinking that the Yellow River had flooded.
These false rumors made Chongbo make a wrong decision. Countless platinum bronze and thaumaturgical circles were cast into walls and dams. The soldiers of the kingdom gathered to resist the flood, until the flood continued to rise, and finally It flooded Gaocheng and tore down the dyke. Fortunately, because the Yellow River is protected by the tallest city walls and dams, the Yangtze River and the Yellow River do not merge.
Subsequent Chongbo tried to use [DATA LOST] to govern the Yellow River. He was looking for the myth about Yushan. Yushan is in the middle of the Yellow River and the Yangtze River, and on the banks of the Huai River. The myth here is the best combination of the Yangtze River to control the water. However, Chongbo failed in the end. Emperor Yao killed him in Yushan, and Chongbo's wish to control the water by ascending to the gods in Yushan failed. His son Xia Bo inherited the myth and history he left behind and continued to take charge of the great cause of flood control.
[lost]
Xia Bo finally played to Emperor Yao, who asked to activate [Lost], and then [Lost]. Emperor Yao agreed with him.
[lost]
So the Foundation started 2000, and the next iteration started as usual.
[This record is provided by [deleted by the order of the Deputy Director of the Yangtze River Basin Bureau], please note that this record is not complete]
No. 1, Dear Emperor Yao, the time has come, the Yangtze River will still be passed down.
No. 9, Yu, I'm still hesitating,Ethics committees are not going to let this happen, they must be armed.
Dear Emperor Yao, the inheritance of the Yangtze River will not be cut off, there is no need to worry, and there is no need to remember.
It's okay, the Yangtze River is the Yangtze River, a long river carrying myths and history. My father, who ascended to God with the support of the Ethics and Morality Committee, who failed to ascend to God on the basis of the Yellow River will surely become the weapon of the Ethics and Morality Committee, that is, the only weapon that is likely to be cut off.
Yes, Yu, however, we do not have an equivalent weapon.
My esteemed God, don't worry.
To: Zheng Jiangyu
From: Lin Jiuye
Subject: Transferring
I have rotated from the central government to a new position at the local level. Although the area of our department has not been repaired, I still want to stay in Nanjing City. The transfer was due to a Thaumiel-class anomaly related to the History Department. Masses of lost histories were discovered, and myths and histories that were judged to have been wiped out in ancient wars and antimemes were also recreated from the Yangtze. The Ancient Lost Objects and Deeds Research Office was established by the Supreme Committee of the History Department and was listed as a department-level organ directly responsible to the History Department. As a rule of thumb, the top of the history department should be parachuted into the head of the division, so the head of the department asked me to go to the local area for rotation.
You should have heard of the associated anomalous properties. Item is extremely safe, with high memetic and cognitive resistance, and potentially lethal anomalous properties that only lead to nausea and illness. Arming the D-Class with high memetic resistance and cognitive resistance protection however does not work, while the divine entity is perfectly normal. It's just that after the divine entity went out, he was in a trance and aggravated the cold. The anomalous properties have not been analyzed yet, so let the doctor in the research department worry about it.
There are not many doubts in the current research, only the anomalous properties and the time-space shuttle of the geese. The Foundation's space-time anchor and the interception of space-time divine entities cannot stop the project, while the spiritual entities of the spiritual system can stop the project. The method of obtaining SCP-CN-001-B is simple and small, and if one wants to obtain it through normal methods, Jiang Yu can only fall into the Yangtze River at night when the autumn wind appears. I just cut one off with my permission and sent it to you with the letter. You should have met Jiang Yu by now, right?
To: Lin Jiuye
From: Zheng Jiangyu
Subject:SCP-CN-001
Thank you, I came across it, and was almost murdered by you.
But I did experience a history. I dreamed that the American armored forces were destroyed by the Yangtze River, and countless humans were chanting [Deleted by the order of the Deputy Director of the Yangtze River Basin Responsible Bureau] Being thrown into the Yangtze River, ethics and morality The chairman of the committee tried to assassinate the O5 Council with a [deleted by the order of the Deputy Director of the Yangtze River Basin Bureau], and the flag of the Foundation flew by the Yangtze River. I'm a little flustered.
There should be no need to report it, just hide it.
Report on recent events in the Yangtze River Basin
This report deals with suspected K-class scenarios in the Yangtze River Basin. And after preliminary discussions and containment with other organizations, the phenomenon was confirmed to meet the basic definition of a K-class scenario and has not occurred in the past, and its containment is extremely difficult. It was presented to the O5 Council and the K-Class Scenario Prediction and Response Bureau and other relevant departments.
On June 27, 2011, the water level of the Yangtze River experienced an abnormal rise and transformed into SCP-CN-001-E. Experiments with D-class personnel and battle reports during containment attempts. Anomalous properties and hazards have been identified here:
First of all, those who come into contact with SCP-CN-001-E will be affected by its anomalies of varying degrees. Contacts lose all memory of events that occurred before 2007 AD. For example, language appeared before 2007 AD, so the contact person will lose the language ability. And so on. And it is worth noting that contacts can relearn and will be brain dead after 24 days. Those who get too close also suffer the same nerf proportional to distance. At present, the total safe range measured by this department is 5000 meters. High doses of Class Z mnestics only inhibited this phenomenon. The phenomenon of brain death is irreversible, and the means of resurrection can only revive a vegetative person. It should be noted that high doses of Z-class mnestics are only inhibitory and can prolong the time from exposure to memory loss.
The water level of the Yangtze River has gradually accelerated. According to the department's battle report, the diversion of the Yangtze River and the construction of SRWA arrays can both play a restraining role. However, it should be noted that it may only play a restraining role, and the water level of the Yangtze River will rise faster after the failure. And the water level of the Yangtze River seems to have no limit. It should be noted that dams and the like cannot hinder its spread, and SCP-CN-001-E can selectively permeate substances. Only anomalous substances that have the effect of stabilizing reality can partially inhibit.
At present, the department has taken some measures. Public opinion along the Yangtze River and Internet public opinion have been suppressed. Residents who are too close to the Yangtze River have been relocated, and a blockade has also been established. Relocation of residents of the wide area and completion of containment are at the discretion of the O5 Council.
Containment Procedures for WK-Class Scenarios
This protocol is intended to contain and suppress SCP-CN-001. Therefore, it is set to level 5 authority.
Project responsible department: Yangtze River Basin and SCP-CN-001 and History Bureau
**WK-Class Scenario Overview: **This scenario is a K-Class Scenario due to the Yangtze River. When triggered, the liquid in the Yangtze River will transform into SCP-CN-001-E, and anyone who touches it will lose everything that existed before 2007 AD. Including language, common sense, knowledge, etc. And will lose the ability to recall and remember, leaving only the most basic instincts and a sense of pilgrimage to the Yangtze River. Contacts die uniformly after twenty-four days. The area close to the Yangtze River will also be affected by relative weakening with distance. And the water level of the Yangtze River can rise indefinitely. At present, the only effective suppression measures are to set up SRWA arrays and divert the Yangtze River. However, both would increase the hazard of a WK-class scenario.
Item Containment Methods: As reported by various departments. A K-class scenario has been confirmed in the Yangtze River valley of the Earth in the solar system. According to the monitoring records of the sites around the lost Yangtze River and the medical analysis of the affected people. After comparing the old literature reports of the Abnormality Society. It is determined that the WK-class Historical OblivionHistorical Oblivion scenario has occurred.
The Ancient Lost Objects and Deeds Research Office under the Foundation History Department should merge with the SCP-CN-001 Response Office, the Yangtze River Valley Administration Office, the Yangtze River War Zone, the SCP-CN-001 Research Office, and the WK-Class Scenario Response Office to establish a direct report to the O5 Council Responsible for the Yangtze River Basin and SCP-CN-001 and the Bureau of History. O5-9 will act directly as its Director. The Bureau will be directly responsible for the control of such K-Class incidents.
Due to the wide-area hazard and disturbance of SCP-CN-001 in the event of a containment breach. The curtain breaking scene should be actively triggered by the Foundation in the Yangtze River Basin. The Foundation's Yangtze River Theater and the Yangtze River Basin Administrative Office shall directly exercise military control over the Yangtze River Basin. Administrative officials are to conduct administrative control in accordance with the CN001-8 protocol, the lives of civilians and Foundation members are to be considered quantifiable, and everything should be centered on suppressing WK-class scenarios.
The Foundation Yangtze River Theater will form more than 5 blockades around the Yangtze River. It should be noted that the blockade does not have any function to hinder the WK-class scenario. Scale erectionStandard response wide area multifunction anomaly exponential stable beacon[[ /span]][hereafter SRWA] has a slight effect on suppressing WK-class scenarios. However, the threat of WK-class scenarios increases after the SRWA array is breached. The main purpose of the blockade is to prevent civilians from being affected by WK-class events. All those within 5000M of the Yangtze River radiation need to take mnestics and anti-psychotic drugs according to the standard tactical specification-368. The wide-area mental barrier should always be overclocked at 150% power, and the individual soldier's mental stabilizer should be turned on for a long time. Anything not done in accordance with the CN001-8-78 agreement shall be deemed to have been lost. All stations within the 50,000M radiation range of the Yangtze River should be considered lost. Strictly Prohibited = Within 2000M of the Yangtze River, the divine entity is forbidden to be within 500M of the Yangtze River. Anyone affected by a WK-class scenario is to be terminated on-site to reduce resource consumption or hospitalized, as appropriate.
Observation posts will be erected at 20,000M outside the radiation range of the Yangtze River, and all posts are considered to be abandoned. The Foundation Corps is to protect civilians as much as possible, but prioritizes the preservation of Foundation strength and the suppression of WK-class incidents. The Engineering Section under the SCP-CN-001 Response Department should assist with the Engineering Office under the Yangtze River Theater, and the Yangtze River should be diverted as much as possible. The data demonstrate that rerouting the Yangtze River can suppress WK-class scenarios for part of the time. Although the data shows that it will still return to the Shang and Zhou rivers in a certain period of time. And after the restoration of the original channel, the WK-class scenario effect is strengthened.
There is evidence that the Yangtze River's area of influence is expanding. After observation, prediction and conjecture, it can be found that the area where Jiangyan goes will be transformed into a tributary of the Yangtze River within 1-3 days, and the range of activities of Jiangyan will gradually expand. Killing it to suppress the expansion of the Yangtze River is considered to be more than worth the loss. Except for important areas, Jiangyan in the rest of the area should not be killed. Otherwise, the influence of the Yangtze River on human spirit will be aggravated.
To: Zheng Jiangyu
From: Lin Jiuye
Subject:SCP-CN-001
Welcome, new colleague. You've complained to me before that work is boring, your ideal vows cannot be fulfilled, and the sheer number of factions in Nanjing makes you sick. Now that we're reassigned to a powerful local department, O5-9s only serve as governors, with dangerous anomalies threatening the veil and normalcy ahead. No effective means of containment have been found for WK-class scenarios. The few suppression methods will be backfired after the suppression effect ends. Initially, no effective defenses could be established. Even now, there is not even an effective suppression agreement that can be implemented. Yangtze River Containment Protocol: Jianghan Fufu is only a generalization of the current suppression methods and intelligence, and it is difficult to call it a containment agreement. That is, we spent one night in the school affiliated to the Foundation coping with our summer homework, and the containment measures were better than Yangtze River Containment Protocol: Jianghan Fufu.
To: Lin Jiuye
From: Zheng Jiangyu
Subject:SCP-CN-001
It is, but the anomaly is more intractable than you might imagine. The core area of the China branch of the Foundation is in the Yangtze River Basin and Huai River Basin in South China. According to the report of the doctor of the research group, if no measures are taken, the Yangtze River will reach Nanjing in 67 days. And because of the need to transfer important anomalies and temporarily keep strategic locations, the time may actually be shorter. Your geography is still as bad as ever. Nanjing is the capital of the China branch of the Foundation, and O5-13, O5-11, O5-9 and the O5 council of the China branch are all here. This should be common knowledge of geography. If the Yangtze River is not restrained, I am afraid that the entire East Asia will be in chaos.
at the same time, if you insist on your position, you need to read a little book, and use the Foundation intranet to learn about some things commensurate with your level 5 authority, you can find that the important towns of the Huaihe-Yangtze River defense line are basically in the Yangtze River WK-level scenario. within the sphere of influence. The Huaihe-Yangtze River line of defense is an important line of defense for the 11th Military Region of the Foundation, and the headquarters of the military region in Jingzhou is also very close to the Yangtze River. Jingzhou, Chongqing, Wuhan, Xiangyang, and Shouchun are all important towns in the Yangtze River Basin. I desperately hope that you will recognize the consequences for us of the collapse of the Eleventh Theater and the Central China Branch of the Foundation.
See you at the Foundation Airport tomorrow.
Excerpts from Zheng Jiangyu's Diary
Weird. The water of the Yangtze River, which has remained unchanged for thousands of years and has always flowed, has undergone changes.
Yangtze River, Yangtze River. The water of the Yangtze River is still rising, and reports under his command are still being delivered. Reports with a priority level of 4 abound. The O5 Council granted this bureau's military regime in the Yangtze River Valley, the power to break the veil, and even demand the transfer of jurisdiction from the Chinese government. The sudden real power didn't give me any excitement. The water level of the Yangtze River is about to submerge the golden powder of the Six Dynasties and countless ancient cities. Only trouble and nausea. Without any effective means of prevention and control, the forcible suppression of divine entities caused more than ten divine entities to be more seriously affected by the Yangtze River water.
Since childhood, I grew up on the edge of the Yangtze River. How much history and myths are carried by the Yangtze River that flows day and night. Hard to think about. Xiong Yi of Chu State, eight hundred years of inheritance, the emperor of the Southern Dynasty loves romance, and he does his best to guard the country to the end. The majesty of the Western Chu Overlord in the two lakes, the battle of Sun Quan in the Red Cliffs in the Yangtze River, the gatekeepers of the two Jin and Southern and Northern Dynasties and the spirit of the Wei and Jin Dynasties, the canal of Beijing-Hangzhou, the wealth of the southeast of the prosperous Tang, the wealth of Li Yu in the Southern Tang, and the prosperity of the two Song Dynasties relying on the Yangtze River . The Yangtze River has always been watching all this, and countless years ago, it was unknown whether the ancient civilization was also within the sight of the Yangtze River. The combination of the Yangtze River and the water of the Yangtze River is related to the Yangtze River and the water of the Yangtze River. In the past, the long river that flowed smoothly for thousands of years suddenly appeared abnormal. I can imagine it has something to do with history.
**When: **July 13, 2011
Location:Nanjing
Participants: Director O5-9 of the Yangtze River Basin Bureau, Deputy Director Zheng Jiangyu and Lin Jiuye, Deputy Director of Supervision █ [Former SCP-2000 Supervision Supervisor, Level VI member of the Ethics and Ethics Committee]
**█: **Hello comrade, this K-class scenario is indeed not optimistic. In fact, the O5 Council attaches so much importance to this K-Class scenario that the establishment of a bureau-level unit that is directly responsible to the O5 Council all explain this K-Class scenario, um, it's hard to express.
**Zheng Jiangyu: **Yellowstone Park is a long way to come here.
**█: **Indeed, although no major strength of the Foundation has been lost, nor have any important strongholds fallen. In the past, when such K-class scenarios appeared, to this extent, the Foundation's public opinion department was busy, and the Internet and the Foundation's intranet basically contained a lot of confidential information. However this time…
Lin Jiuye: There is no relevant information on the Internet and the Foundation intranet. The main reason is that people near the Yangtze River have all died or lost their memory, let alone recorded it and spread it out. In other words, there is hardly any effective intelligence on the Yangtze River now. There are, and only a few, techniques to suppress, however, this only reduces the probability of being transformed into SCP-CN-001-E, and is largely useless.
**Zheng Jiangyu: **Antimeme?
Lin Jiuye: It can be said that it is, but it is still possible to do relevant protection. It is also possible to treat it as an antimeme. The current temporary containment measures are directly in accordance with the regulations of the radiation zone and the antimemetic zone.
**█: **But obviously, it didn't work. How to put it, there is currently no way to contain the Yangtze River. Neither does the divine entity, it can only be suppressed temporarily. Really, I saw endless corpses on the water, whispered songs echoed in my ears, and the infinite invisible river piled up with myths and history is in the Yangtze River.
Zheng Jiangyu: The current death toll?
**█: **More than 10 million, or in the case of trying to rescue, the Foundation has done its best. Although Nanjing City is the center of the Foundation's China branch, the Yangtze River Basin is also the concentrated area of the Foundation's power.
Lin Jiuye: At present, the Yangtze River Theater has invested several B Corps and more than a dozen military research institutes under my command, and the investment cannot even be calculated in currency. However, there is no way. Entering the core influence area of the Yangtze River, that is, within 5,000 meters, unless it is a divine entity or an established SRWA array, it will be invalid and will be quickly transformed into SCP-CN-001-E.
█: I saw a baby who had lost a parent staggering and weeping, and then lost their memory, I saw the desperate cry of a parent who had left a newborn, and lost their memory in the Foundation's makeshift hospital…. ..
Zheng Jiangyu: However, we have worked hard. The current investment alone has accounted for 1.7% of the annual budget of the entire foundation. The rest of the water system outside the Huanghuai River seems to have a tendency to transform into a tributary of the Yangtze River, forming a WK-level scenario.
**Lin Jiuye: **The Yellow River and Huaihe River, there is no sign for the time being, but it is also necessary to mobilize some resources in the North China region for preparation. In the rest of the region, some well-known water systems also tend to turn into tributaries of the Yangtze River. This is very dangerous. Fortunately, after calculation, all the water systems can be suppressed only by suppressing the Yangtze River.
█: There are only a few current suppression measures, and they not only require resources, but also treat the symptoms rather than the root causes. Every time the Yangtze River is suppressed, the rate of water level rise will accelerate. We must find a way to completely contain the Yangtze.
█: When I came, I came from Europe from North America. I recorded many videos along the way, which will be distributed to you later.
**Location: **A temporary WK-class situational containment and rescue site in Xuancheng under the control of the Foundation
**When: **June 14, 2021
Camera member Deputy Superintendent of the Yangtze River Basin Bureau █
**[NAME LOST A]: **Hello, hello. Well, I'm [name lost A], where are the family members who came with me, can I go see them?
**FOUNDATION STAFF [NAME LOST B]: **They're in quarantine, you can't see them right now.
**[Name has been lost A]: **You can [put the banknotes in], my parents are in their seventies and need someone to take care of them, and my son is still young. I beg you.
[sighs]
**Foundation Staff [Name Lost B]: **No, we are disciplined.
[Name has been lost A]: A heart of filial piety [touching the pockets of the clothes], there is also a mobile phone, and it is a gift with you, you should not think too much.
**Foundation staff [name has been lost B]: **Actually, how do you say, do you live near the Yangtze River, how many meters away from the Yangtze River flood at the time?
**[Name has been lost A]: **Our whole family is very healthy. There is absolutely no disease. It is more than 1,000 meters away from the Yangtze River, so there will be no infectious diseases.
**Foundation Staff [Name Lost B]: **Mr. condolences, your family should be brain dead by now if it was so close. You can go to the morgue to see them.
**[Name has been lost A]: **[Dry laughs], thanks to you Hongfu, my family is very healthy, and I have not had any illness except a small cold since childhood.
Foundation staff [name has been lost B] [sighs], let me lead you there.
**[NAME LOST A]: **Thank you, thank you, thank you so much.
**[NAME LOST A]: **This is my family?
**FOUNDATION STAFF [NAME LOST B]: **Sorry, yes.
[silence]
**Foundation Staff [Name Lost B]: **You…
**[NAME LOST A]: **Fuck you!
[fight]
**Foundation Staff [Name Lost B]: **Calm down, calm down!
**[NAME LOST A]: **I'm calm [meaningless emotional bytes deleted]
[pulled apart]
**[NAME LOST A]: **I'm going to fuck you and pay my family back.
[Name is missing A repeat conversation]
[pulled apart again]
[Name has been lost A repeats the conversation again]
[cry]
[NAME LOST A]:Why.
**FOUNDATION STAFF [NAME LOST B]: **Sorry, but we did our best.
[name lost A stares at name lost B until it drifts away]
**[NAME LOST A]: **I [content missing], [content missing]
[Name has been lost and A is transformed into SCP-CN-001-E, and is immediately sent to the intensive care unit]
Preventive measures for the Yellow and Huaihe River basins
Due to the diffusivity of the WK-level scenarios of the Yangtze River and the scope of the current diffusivity, this proposal prevents the occurrence of WK-level scenarios in the Yellow River Basin and the Huai River Basin and the possibility of turning them into tributaries of the Yangtze River.
Project responsible department: Yangtze River Basin and SCP-CN-001 and History Bureau, Yellow River Theater, Huaihe Theater
**Reason: **In view of the particularity of the Yellow River and the Huaihe River and the diffusivity of the nature of the Yangtze River, the Yellow River and the Huaihe River may be transformed into tributaries of the Yangtze River and cause a large-scale WK-level scenario, so this proposal is proposed to prevent. Due to possible predictions, if the WK-level scenario occurs in the Yellow River and the Huaihe River and does not transform into a tributary of the Yangtze River, the cause of the WK-level scenario can be inferred from it.
**Item Containment Method: **Because of the wide-area hazard and disturbance of SCP-CN-001 in the event of a containment failure, regional sites and war zones in the Huanghuai River Basin should be prepared to trigger a curtain breaking scenario. At least three blockade zones should be built in the Yellow River Basin and Huaihe River Basin, and the current abnormal dam method should be used in a small amount in the Huanghuai River Basin to measure its performance. A standard SRWA array should be established 3000M outside the Yellow River and Huaihe River, and it should be ensured that there is a standard unit of SRWA array in 10KM. The standard SRWA array should contain 12 SRWAs. In view of the possible interruption of energy supply and technology leakage, the SRWA array should be powered by micro-nuclear batteries, and the logistics personnel should replace the energy according to the standard time agreement.
The Ministry of Foreign Affairs of the Foundation should contact the Chinese government and try to relocate residents living within 5000m of the Yellow River and Huai River to a safe area. Observation posts will be erected at 2000m outside the Yellow River and Huaihe River. All outposts are considered relinquishable. All Foundation members within the 3000M radiation range of the Yellow River and Huaihe River are required to take mnestics and antipsychotics in accordance with the standard tactical specification-368. Wide-area mental barriers should be activated at major sites and cities. Anyone who does not follow the CN001-8-78 agreement should be punished with demotion, fines and other penalties. Sites within 50,000m of water should be evacuated or retained in the name of surveillance.
To: Lin Jiuye
From: Zheng Jiangyu
Subject:SCP-CN-001
The influence of the Yangtze River has spread to: the whole of the earth. It is expected that it will only take 754 days to spread to the Kuiper Belt of the solar system, and the core influence area is still within 5KM of the Yangtze River waters. Clearly the curtain has been shattered, the entire Yangtze River Basin has fallen, and the death toll has exceeded [DATA LOST]. The water systems of the seven continents have all been transformed into tributaries of the Yangtze River. Foundation Occupied Areas: Micro Sites: 645, Standard Sites: 175, Medium Sites: 92, Regional Command Center Level Sites: 7. Some of the Foundation's strategic anomalous weapons were declared invalid, and the anomaly declarations that might have inhibitory effects were invalidated by the Yangtze River. A Corps losses: 11, Standard Divisional Research Units: 53.
This is an excerpt from the report, please note that this is only a recorded and not completely lost figure. Buried in an antimeme influenced and forgotten by the Yangtzemust be far more than that. It is even suspected that countless lands in the Yangtze River Basin have been submerged, forgotten, and permanently lost. In the Yangtze River Basin, the hundreds of millions of civilians who were submerged in the Yangtze River were not wrong, nor were we. Or rather, we are all wrong.
To: Zheng Jiangyu
From: Lin Jiuye
Subject:SCP-CN-001
I am on my way from Hangzhou to Nanjing, and the Qiantang River has also become a part of the Yangtze River. Containment procedures will begin upon my arrival in Nanjing City. Fortunately, the Yellow River and Huai River have not yet been transformed into the Yangtze River. Reportedly, the WK-class scenario after the rivers located in China are converted into tributaries of the Yangtze River is much weaker than the rest of the rivers, for reasons that are not yet known. However, I suspect that all H2O in the future will have the same properties as the Yangtze River water. Fortunately, we still have the Yellow River and the Huai River to supply the world's water resources.
In addition, the deputy director of supervision is already in Nanjing. He is really a qualified member of the ethics committee, or the upper level of the ethics committee is still so precise.
**Participants: **The Yangtze River Basin and SCP-CN-001 and Director O5-9 and two deputy directors of the History Bureau, Director of the Ancient Lost Objects and Deeds Research Office, Director of the SCP-CN-001 Response Office, Yangtze River Basin Chief of Administration Division, Chief of General Staff of Yangtze River Theater, Chief of SCP-CN-001 Research Division, Chief of WK-Class Scenario Response Division
**When: **June 5, 2021
**Location: **Nanjing City
**O5-9: **Comrades, today's agenda is mainly the defense of Nanjing City and the Foundation China Center. The importance of Nanjing City is self-evident. I hope that everyone can actively make suggestions for the foundation. The following agenda was presided over by Deputy Director Lin Jiuye.
Lin Jiuye: Colleagues, the Yangtze River is about to arrive in Nanjing City. And proposal: Jianghan Taotao has failed, and cannot effectively suppress and contain the Yangtze River and this WK-class scenario. This meeting is being held to brainstorm more effective containment protocols.
Zheng Jiangyu: In my discussions with you at the meeting the day before yesterday, there were roughly three opinions.
Zheng Jiangyu: First of all, it is based on the self-enhancing anomalous thaumaturgical dam system proposed by the former director of the ancient lost object deeds research department, the director of the administrative department of the Yangtze River Basin, and the director of the SCP-CN-001 research department. This agreement is intended to build full-coverage dams along the Yangtze River, all cast from anomalous thaumaturgical alloys. According to the experiments of the research department, the resistance effect of anomalous thaumaturgic alloy to the Yangtze River water cannot be said to be poor, and it is even the most cost-effective among the materials tested so far. The rest of the materials are either ineffective or expensive.
**Director of the Ancient Lost and Found Deeds Research Office: ** Indeed, the current technical difficulties and implementation feasibility mainly lie in the self-enhancement system of abnormal dams. At present, the director of the research department has roughly two ideas. It is often replaced by manpower and instilled with abnormal thaumaturgical energy, or it can be self-enhanced by absorbing the abnormal energy of the Yangtze River water by absorbing it.
**Zheng Jiangyu: **And if the enhancement speed cannot keep up with the strength of the Yangtze River, then the agreement will fail directly and bring about more serious impacts.
**Lin Jiuye: **As for the other plan, it can be said that it is a relatively safe and not aggressive plan to revise the __Yangtze River Containment Protocol: Jianghan Torrent. The director of the Yangtze River Basin Administrative Office and the chief of the general staff of the Yangtze River Theater seem to be more supportive of this agreement.
**Chief of the General Staff of the Yangtze River Theater: **There is currently no effective containment method. This protocol has been tested and determined to be able to be used and complete short-term suppression. The first option is not reliable enough.
O5-9: The third option is to construct the enthroned entity and stop it [[cognitohazardous shield]] and cause it to move up the narrative ladder. This plan will be put on hold for now. For the time being, the second scheme is adopted, supplemented by the first scheme.
To: Zheng Jiangyu
From: Lin Jiuye
Subject:SCP-CN-001
The containment procedures were completed, and the city of Nanjing was at stake. Nanjing City itself is the anchor of reality for the whole of East Asia, and even the whole of Asia and the earth. In fact, the existence of Nanjing City itself is enough to rely on the cognition of the combination of history and myth to stabilize the abnormal indexes of the earth in the benchmark reality. If Nanjing is lost, the consequences will be unimaginable. Wide-area anomalies, K-class scenarios will appear in the wide area after the collapse of the core components of Nanjing City. At that time, we won't have any way, although Nanjing City itself is an entity that is close to Ascension, but if the WK-class scenario goes straight to the bottom of Nanjing City…
We have almost no way back?
To: Lin Jiuye
From: Zheng Jiangyu
Subject:SCP-CN-001
That's why Nanjing City must not be lost. Nanjing and Jingzhou are actually symmetrical to each other. If Nanjing is lost, the fall of Jingzhou is a foregone conclusion. This means that the 11th Military Region will lose its command core and main defense forces. Do your best, listen to destiny. Hundreds of millions of residents in the Yangtze River Valley and the South, they are not guilty. Maybe we are guilty. The number of dead has exceeded 100 million, which is something I did not expect on weekdays. I have never felt that so many human lives are at stake in every decision I make, and many orders are compelled.
Executive order and agreement on the recent Nanjing city where the foundation's China branch is located
In view of the spreading trend of the damage in the WK-level scenario, the water level of the Yangtze River will rise faster. Nanjing City, as the central headquarters of the China branch of the Foundation, was identified as a possible risk of loss. This report is an executive order in response to this and the suppression battle for a WK-class scenario
As the administrative center of the foundation in China, the significance of Nanjing City can be imagined. At present, the WK-level scenario in the Yangtze River Basin has caused the water level of the Yangtze River to continue to rise. At this time, it was even approaching Nanjing. After discussions in the Nanjing Theater, the Foundation decided to build a defense line in Nanjing City, so that the Foundation departments in Nanjing and Nanjing must be able to operate normally.
Foundation O5-13, O5-9, O5-7, as members of the O5 Council of the Foundation in Nanjing and the O5 Council of China Branch, will be responsible for overseeing this operation. The Foundation's Nanjing Theater and Yangtze River Valley and SCP-CN-001 and the Bureau of History are responsible for its containment. The following are the specific containment procedures and phase requirements.
· Phase 1: The Foundation Logistics Department should provide SRWA arrays to the Nanjing line of defense and provide technical personnel as much as possible to guide the diversion of the Yangtze River. Self-renewing anomalous dams composed of anomalous means are under construction. Important cities, fortresses, and stations along the Foundation's route must also carry out flood resistance according to priority. The A-38 and A-43 regiments under the Foundation's Yangtze River Theater need to be directly stationed in the Yangtze River area. Cities in the Yangtze River Basin need to be enforced: the curtain is broken and military control is imposed. The officials of the Yangtze River Basin Administration Office of the Foundation need to be stationed directly and assist the military in the relocation and resettlement of residents. The Foundation's public opinion department should consult and cooperate with the Chinese government and cover up public opinion.
·The second stage: Several SRWA arrays and anomalous material dams with Nanjing City as the core will be quickly established within two weeks. Along the Yangtze River, at least three SRWA arrays with self-repairing and self-adding anomalous dykes should be built immediately. New types of dams built with thaumaturgical restraint and reality-bending technology are to be put on site. The logistics department should try to provide the required items. In order to restrain the Yangtze River, several SCP-CN-2221 concept areas will be constructed through anomalous means. Currently SCP-CN-2221// -A -B - C // The inhibitory effect on the Yangtze River is yet to be studied.
·The third stage: The Nanjing Theater of the Foundation and the Yangtze River Theater of the Foundation should support the defense line as much as possible with the army and abnormally high-level combat power. More than 120 of divine entities are expected to be invested in the weak areas of the defense line to defend the center of the Foundation China branch. if needed or necessary. Souls stacked through the [[cognitohazard shield]] method will "ascend" the incomplete execution plan. During this process, the [[cognitohazard shield]] necessary for ascension will refuse to be performed. The [[cognitohazard shield]] will be in a constant progression on the narrative ladder. This method may complete the complete containment of the anomaly.
The third stage is tentatively listed for consideration due to its feasibility and the time it will take. The means by which the Ascension entity is constructed and its [[cognitohazardous shielding]] is stopped, causing it to progress up the narrative ladder, are yet to be verified. After the feasibility of the principle is implemented, it is very likely to cause an abnormality in the ascension entity.
Included page "theme:black-highlighter-theme" does not exist (create it now)
O5 Council Announcement
This document is an outdated version from August 25, 2007 to June 8, 2021. Please note that this document has been locked and information control measures are applicable. The parts originally contained in this article that are different from the actual situation have been deleted as appropriate, and the rest have an impact on understanding the context of events related to this anomaly, so they have not been deleted. This article iterative version requires level 5 permission, make sure you hold the authorization and key of the O5 Council . If not, please go back to previous iteration
— O5 Council Announcement.
Current human survivors: 13
Please note that this document is confidential, confirm that you are authorized by the O5 Council and hold the key
[timerkey="Lone Sail, Far Shadow and Blue Sky"]
…
…
Scenario detected: End of Foundation. Visitor detected as Homo sapiens
Document automatically unlocked
…
Item ID:SCP-CN-001 |
5/CN-001 level |
Object Class: Chhokmah
|
TOP SECRET |
Special Containment Procedures:The original SCP-CN-001 number is transferred to SCP-CN-001-A, and the other numbers are moved backwards in the same way. Any attack on SCP-CN-001-A is to be stopped and disciplined. Contact with SCP-CN-001-B in order to obtain SCP-CN-001-C is to be suspended indefinitely.
The Ancient Lost Objects Research Office under the Foundation History Department has merged with the SCP-CN-001 Response Office, the Yangtze River Basin Administration Office, the Yangtze River War Zone, the SCP-CN-001 Research Office, and the WK-Class Scenario Response Office to establish a department directly responsible to the O5 Council. The Yangtze River Basin and SCP-CN-001 and the Bureau of History. The director is concurrently held by O5-9, the head of the history department, Lin Jiuye, deputy director of the history department and former director, as the deputy director, and Zheng Jiangyu, the eleventh member of the Knowledge Exploration Department, as the deputy director. A Level IV member of the Ethics and Ethics Committee serves as the Deputy Commissioner of Inspection.
There is currently no effective means of controlling a WK-class scenario. Rerouting SCP-CN-001 or erecting SRWA arrays around it will only partially suppress it, and will re-accelerate the rate of water level rise in the Yangtze River. Complete containment of the object is theoretically possible for an ascension entity that has not completed the erection of [[cognitohazardous shielding/data loss]]. Putting Homo sapiens into it is suspected to have an inhibitory effect on the project, but the conditions for Homo sapiens that can have an inhibitory effect are yet to be analyzed. There is a long history of placing non-artificially generated substances into the Yangtze River, specifically [[cognitohazardous shielding/data loss]]
Description: Whenever SCP-CN-001-A dies unnaturally, it will spill a large amount of SCP-CN-001-B, and its corpse will disappear into the Yangtze River. The antiquity and mythology of the resulting SCP-CN-001-C would be greatly enhanced under such circumstances.
The WK-class Historical OblivionHistorical Oblivion scenario has occurred in the Yangtze River Basin. The water level of SCP-CN-001 is abnormally elevated, and its river water is designated as SCP-CN-001-E. Contact with this liquid will cause the contact to forget everything that existed before 2007 AD. Including language, common sense, knowledge, etc. And will lose memory and memory ability. Contacts die uniformly after twenty-four days.
According to current intelligence and speculation, after the WK-class historical oblivionHistorical Oblivion, the Yangtze River has The ability to neutralize anomalies, and it may be antimemetic to anything thrown into it. However, it differs from other antimemes in that it can still be recognized and spread. However, it can attach cognitohazards to the disseminated information. Therefore, the antimemetic information in this document that has been attached by the Yangtze River has been deleted except for some important information.
appendix:
The Defense Report and the Yangtze River Containment Protocol for Nanjing City, where the Central China Branch of the Foundation is located: The Implementation of the Reprinted Edition of Jianghan Taotao
Restraining behavior in WK-class situations encountered in Nanjing City, where the center of the Foundation's China branch is located. This article is about the implementation of the real-time battle report of the Nanjing Theater and the Yangtze River Containment Protocol: Jianghan Taotao. Please confirm that you have the relevant permissions
**20:30:57 on June 30, 2011: **The seven-channel SRWA array has been erected on the outskirts of Nanjing. Three SRWA arrays have been erected in the Yangtze River Basin under the work of the Foundation's Logistics Department. The abnormal self-repairing dam has five layers in the suburbs of Nanjing and one layer in the Yangtze River Basin. Each legion has been on standby at the station, each divine entity has entered the stationed area, and the Foundation's main control system has begun to operate.
**June 30, 2011 23:33:12: **The water level of the Yangtze River arrived at the satellite city of Nanjing City Extension. The Yangtze River Containment Protocol: Jianghan Torrent Reissue was run under the orders of Foundation O5-13.
**June 30, 2011 23:55:09: **The response of the monitoring instruments in the satellite city has all disappeared, and the signals of all the detection instruments of abnormal technology have disappeared. It is speculated that the Yangtze River water has anomalous shielding and nullifying functions. The high-level general staff of the Nanjing Military Region of the Foundation began to make decisions on the new information.
**June 30, 2011 23:59:17: **All anomalies stored in Nanjing Satellite City Z-0-α-III-18 lost anomalous responses. Test sample SCP-CN-[[cognitohazard mask/data loss]] neutralized. In-city test biosignal disappears. The Nanjing Satellite City Z-0-α-III-18 was declared a permanent loss. An application to clear the satellite city with space-based weapons has been approved.
**July 1, 2011 01:39:16: **The Observation Corps under the Nanjing Military Region [No. SCE-Z0MR-MO-C12] directly arrived at the front line of the Yangtze River to collect anomalous properties from anomalous technology. Within 3 minutes when the corps still has an organized observation capability and command system. The corps uploaded the rate of water level rise and various other data on the Yangtze River. The Data Processing Committee of the China Branch of the Foundation began to process and calculate the data.
July 1, 2011 09:45:30: The Yangtze River officially arrived at the first dam. The SRWA array located at coordinates: [[cognitohazardous shielding/data loss]] becomes operational. The Yangtze River stabilizer at [[cognitohazardous shielding/DATA LOST]] was attempted to be thrown into the field. The Foundation's Nanjing Theater and the Foundation's O5-CN Guard Corps settled on the dam and performed stability and reality distortion in an attempt to restrain the Yangtze River at weak points.
**2011-07-01 09:49:19: **Processed by AIC.[[cognitohazard masking/data loss]] of the Foundation China Data Processing Committee. At the current rising speed of the Yangtze River, it will cross the first dam line on July 26, 2011.
**July 1, 2011 09:51:42: **The anomalies that were mobilized in advance to be neutralized began to be thrown into the Yangtze River. After actual measurement, the Foundation Research Department found that the anomalies created by the Foundation in advance during the planning preparation period were ineffective. And the ability of the anomaly to inhibit the Yangtze River has nothing to do with its risk, Hume index and so on. The Research Department of the China Branch of the Foundation is conducting special research.
**2011-07-02 09:55:25: **Crash at dyke [[cognitohazardous shield/DATA LOST]]. The area of damage is only [[cognitohazardous masking/DATA LOST]] square centimeters. However, there is an abnormal influx of water from the Yangtze River here. The SRWA array was operating at [[cognitohazardous masking/data loss]] over-spec by order of the O5-CN Council. Loss of the first line of defense.
**July 2, 2011 10:23:51: **The Yangtze River Stabilizer and SRWA Array were evacuated by Foundation Logistics personnel.
July 2, 2011 19:58:08: According to reports, the Huainan line of defense is under heavy pressure.
**July 3, 2011 20:00:06: **The Huainan Line of Defense fell. The [[cognitohazard masking/DATA LOSS]] stationed by the Foundation here is deemed lost. Under the order of the O5-CN Council of the Foundation, the military and civilians of Wuhu City retreated to the Xuancheng line of defense.
**July 8, 2011 20:04:06: **The psychoactive anomalous effect of the Yangtze River has been significantly enhanced. Those who get too close to the Yangtze suffer from mental influences proportional to their distance. After an emergency test by the research department, it was judged that only the Yangtze River stabilizer has a stabilizing effect on it. However, any attempts to continue building the Yangtze River stabilizer have so far failed.
**2011-07-09 10:07:54: **The garrison at the dam [[cognitohazard mask/DATA LOST]] lost its command system and combat capability due to the influence of the Yangtze River. The Yangtze River water enters the dam. The Yangtze stabilizer and SRWA arrays are operating at [[cognitohazardous shielding/DATA LOSS]] over-spec by order of the O5-CN Council. The line of defense and the garrison were considered lost. Behind this section, a new line of defense has been constructed. This section of the line of defense has been abandoned, and the new line of defense is connected to the dyke and integrated with corrections. The old dam and the lost garrison within it were hit by precision-guided space-based kinetic energy weapons on order. The second dam was declared invalid.
July 11, 2011 1:12:40: It was reported that the SRWA array and the Yangtze River stabilizer array were overloaded. Some of the stabilized anchors were burned out, and the burned stabilized anchors have been replaced. The arrays will be sequentially shut down for repair and replacement. The first dam has an abnormal phenomenon, and the Foundation Logistics Department is organizing emergency repairs. A proposal to build a new levee with an expected retreat was taken as a backup plan. Proposals to find raw materials for the Yangtze River stabilizing anchor have been made several times.
**July 16, 2011 10:16:09: **The [[cognitohazardous shielding/DATA LOST]] energy source that powers the SRWA array and the Yangtze River stabilizer array experienced an emergency shutdown. The situation deteriorated further. SRWA arrayThere is a lot of damage to the Yangtze River Stabilizing Anchor Array.
**July 21, 2011 10:17:45: **The third dam broke.
**July 23, 2011 20:32:56: **The holdings of the Yangtze River stabilizer exceed the danger line.
**2011-07-29 20:32:56: **Processed by AIC.[[cognitohazard masking/data loss]] of the Foundation China Data Processing Committee. Due to the continuous decrease in the holdings of stabilizer anchors in the Yangtze River. After the Yangtze River stabilizing anchors are exhausted, the personnel of each line of defense will transform into SCP-CN-001-E after several days to dozens of days, even if they rest for 8 hours and are continuously stabilized by each SRWA array. And the coercive order is very likely to cause the legion to mutiny and the ethics committee to oppose.
**July 31, 2011 10:22:32: **The fourth dyke broke. The O5-CN Council decided to leave Nanjing with the Central China branch of the Foundation.
**August 1, 2011 10:27:02: **The Central Committee of the China Branch of the Foundation officially issued a notice that the O5-CN Council and the Central Committee of the China Branch of the Foundation will visit Xi'an for inspection and supervision. The Yangtze River Containment Protocol: Jianghan Torrent Reprinted Partially Invalid
Time |
Status |
Deaths |
Countermeasures |
Effect |
2011.8.1 |
The Central Nanjing City of the China Branch of the Foundation fell. The Central Committee of the O5 Council and the Foundation China Branch headed to Xi'an to rebuild the headquarters. The Foundation's overall defense line in the Yangtze River Basin has not yet completely collapsed. |
6% |
The Yangtze River Containment Protocol: Jianghan Taotao Reissue The third revision will be made. The proposal to constitute an incomplete ascension entity and the proposal to continue to manufacture the Yangtze River Stabilizing Anchor are put on the agenda |
The Yangtze River Stabilizing Anchor raw material cannot be extracted further, or there is evidence that continued extraction will accelerate the rise of the Yangtze River water level |
2011.8.12 |
Jingzhou City, where the 11th Military Region Command of the Foundation is located, fell. The military is expected to go to the Yecheng Reconstruction Command |
11% |
Data loss]] |
2011.8.24 |
Chongqing, Lijiang, Hefei, Yueyang, and Wuhan fell. The Foundation's Yangtze River theater completely collapsed. The situation is gradually advancing to the Foundation's Huaihe Theater, Henan Theater, and Guangjiao Theater |
24% |
The proposal to constitute an incomplete divine entity continues to be discussed. Yangtze River Containment Protocol: The third revision of Jianghan Taotao begins implementation |
Calculated by the AIC.[[cognitohazard shielding/data loss]] of the Data Processing Committee of the Foundation China, this protocol can contain the Yangtze River until at least September end period |
2011.9.1 |
The China Branch of the Foundation visited Xi'an, Luoyang, and Zhengzhou. Xiangyang City, Nanchang City, Changsha City were occupied, and Shanghai City was in jeopardy |
31% |
Proposal: Only see the Yangtze River Sky Stream to be implemented |
Masking/Data Loss]] |
To: Zheng Jiangyu
From: Lin Jiuye
Subject:SCP-CN-001
The entire Yangtze River Basin collapsed. Nanjing, Jingzhou, and Chongqing, as the three poles of the Yangtze River, have all fallen, and many K-class scenarios have occurred, and there may be no one in the Yangtze River basin. And the new nature of the Yangtze River, if one thing, all the relevant information has been swallowed up by the Yangtze River, and all the insiders have been transformed into SCP-CN-001-E. Then, the event is antimemetic.
In other words, we will never continue to understand what kind of memory remains in the land and bones covered by the Yangtze River. I am afraid that those engulfed by WK-class scenarios will never be counted. SCP-CN-001-E, I don't want to call them by this name, all their joys and sorrows, all the meanings and meanings of existence, are already only a corner of the Yangtze River. The meaning of existence has been lost, which is scarier than an antimeme.
To: Lin Jiuye
From: Zheng Jiangyu
Subject:SCP-CN-001
We have done our best. We haven't done our best yet.
You should also know the rumors of Dengshen. This may have been our last resort, Dengshen, to contain the Yangtze River with a vertex-type multi-functional divine entity. A god forged from history and myth is itself the best way to fight forgetting and give meaning to existence. Countless souls in the Yangtze River Basin who have been silenced under antimeme, flow silently in the Yangtze River, is this their destination? For the meaning of the dead, for the living, for our history and mythology. Our heritage should not be cut off, nor should the circulation of countless iterations disappear in this iteration.
As well as Jiang Yan and the Yellow River, the relationship between the two and the Yangtze River is definitely not simple in expression. Unlike the other water systems, the Yellow River and Huai River, and their affiliated water systems, have not been transformed into tributaries of the Yangtze River. Therefore, compared with other regions, North China is the safest region. However, it is obvious why the Yellow and Huai Rivers have not been transformed. And Jiang Yan, almost the bird of death that announced the fall of the region, was hunted collectively and countless wild goose feathers fell into the Yangtze River. Does that represent the restart of history and myth? The relationship between Jiang Yan and the Yangtze River, as well as history and myth, is obviously something we have not thought of, but I have no evidence yet.
Participants: Foundation O5-13, O5-9, O5-7, CN-O5 all staff, the Yangtze River Basin and SCP-CN-001 and the Deputy Director of the History Bureau
When:September 2, 2011
**Location: **Xi'an temporary site Site-CN-001 confidential conference room
O5-13: The Yangtze River water is still not effectively contained and suppressed. The Yangtze and Nanjing theaters collapsed across the board, and numerous important towns along the Yangtze River fell. The Huaihe Theater and the Guangjiao Theater have also been affected. In fact, the whole world was shaken by it.
O5-9: Foundation China is located in Nanjing City. Since the Forbidden City Agreement, Nanjing, as the center of Foundation China, has never fallen. In the past, whether it was the threat of the GOI army going south from Jingzhou, the chaos separatists from the Huaihe River, the predicament of the normal state blossoming on all sides, the aliens arrived in Yangzhou from the weakness of time and space and narrative. The city of Nanjing never fell.
**O5-7: **Today fell, and the center of the China branch of the Foundation was forced to inspect Xi'an.
**O5-CN-1: **Foreseeable, Xi'an will face the same threat.
**O5-CN-13: **When are you visiting Beijing?
**Zheng Jiangyu: **Yangtze River Containment Protocol: Jianghan Taotao Third Revision and Yangtze River Containment Protocol: Jianghan Taotao Revision have not improved much. It can be expected that this is only a temporary solution. The material and human resources of the Foundation have been expended.
Lin Jiuye: A new containment protocol must be introduced. Otherwise, they will visit Beijing.
**O5-CN-7: **Beijing staff have constructed temporary site Site-CN-001.
**O5-CN-1: **I hope that the two of you can make valuable suggestions and proposals as relevant personnel.
**Lin Jiuye: **In the scrap: __Proposal: Drinking the water of the Yangtze River __, there was a proposal to cast a self-reinforcing dam so that it could always restrain the Yangtze River. However, due to technical reasons, it eventually failed.
**Zheng Jiangyu: **But Ascension can do it, we hope to check the Rituals: Ascension Trilogy. Then we can improve the Yangtze River Containment Procedures - Only See the Yangtze River Sky Stream.
[Vote result passed]
O5-13: Go to the classified reading room on this site, and I'll write it down for you. The electronic version is only available in O5-3, and the hard copy is kept in the confidential reading room as a backup.
Ritual: Ascension Trilogy
Please ensure that you are a member of the O5 Council or have a key granted by the O5 Council, and both require clearance 6/CN-001. Please note that this document deals with one of the secrets of human existence. Any unqualified visitor is subject to immediate and inhumane memory destruction and soul deletion. Please note that this rule applies to Level 5 clearance. Any unauthorized snooping will be considered a betrayal of humanity.
Overview: The content stated in this document is the theoretical basis for the creation of high-dimensional vertex-type multifunctional divine entities and cognitive aggregates. The current exemplary standard case is SCP-CN-2007. Through the aggregation of most human cognitions, about tens of millions of brainwashed souls, human beings seek to build a high-dimensional vertex-type multi-functional divine entity with repeated quantities, myths and history.
·Phase 1: The Source of Faith
The main purpose of this stage is to bring the soul and cognition to a critical point. During this stage, public opinion of human society should be focused on the relevant myths and history. All other public opinions that distract from knowledge will be obliterated. All entertainment should be suspended, all non-essential things should be suspended, and all human beings should focus their cognition on relevant myths and history. Specific public opinion should be manipulated so that the newly born high-dimensional cognitive aggregate/apex-type multifunctional divine entity acquires a certain authority.
At least [[requires authorization from the O5 Council and is responsible for related matters]] relevant memories [relevant units require relevant permissions] to reach the threshold for entering the second stage. However, in order to ensure the strength of the newly born high-dimensional cognitive aggregate/apex-type multifunctional divine entity and the problems that may arise in the middle, it should be as many as possible. Humans produced by methods such as SCP-2000 should not be used due to their lack of soul.
Before human souls can be extracted, these humans need to brainwash themselves with relevant myths and history. Note that brainwashing humans for themselves is the optimal solution. Such humans should, as far as possible, limit themselves to memorizing only relevant myths and histories. Impure memories and emotions may
Cause the high-dimensional cognitive aggregate/apex-type multifunctional divine entity to fail in the second stage of promotion or the strength of the high-dimensional cognitive aggregate/apex-type multifunctional divine entity to weaken. If it is to be the Gestalt Will of Vertex-type Multifunctional Divine Entity rather than a higher-dimensional cognitive aggregate, it only needs to be dominated by one or more souls who are absolutely loyal to human beings, such souls must remember, recognize, Recognize relevant history and mythology, and at least need to reach the soul strength of high-level divine entities.
[[Learn about the specific technologies and operations that need to be authorized by the O5 Council and be responsible for related matters]]
·Phase II : Poems of the End
The content of this stage is to make the souls of all the components fall into the same dream, and wake up after experiencing relevant history and myths. In the process, the infant form of the higher-dimensional cognitive aggregate/apex-type multifunctional divine entity will continue to progress up the narrative ladder and its intensity will continue to rise. After this process is over, the high-dimensional cognitive aggregate/apex-type multifunctional divine entity is born. During this process, the entire human society will cease any current plans and processes to recognize this process in order to increase the strength of the higher-dimensional cognitive aggregate/apex-type multifunctional divine entity. All affairs except key things are controlled by AIC [related AIC content involves top secrets in another universe]
After the number of souls reaches the critical point, it is only necessary to [[Learn about the specific technologies and operations that require the authorization of the O5 Council and be responsible for related matters]], and the dream of origin will begin. During this stage, all the constituent souls will be immersed in the relevant history and myths they know, and then experience the legends of history and myths for themselves. Unlike [[Understanding specific technologies and operations requires authorization from the O5 Council and is responsible for related matters]], history and mythology can be changed by the influence of human souls on them.
After the dream of origin is over, history and mythology are complete. The end-verse begins when the high-dimensional cognitive aggregate/apex-type multifunctional divine entity as a child begins to ascend the narrative ladder, and ceases to ascend when the end-verse ends. At the time of the End Poem, all humanity should continue to recognize the myths and legends associated with it. To make it a Gestalt Will of Vertex Multifunctional Divine Entity rather than a Higher-Dimensional Cognitive Aggregate, it is only necessary to ascend the narrative ladder with one or more souls who are absolutely loyal to humanity. Then comes the third stage.
[[Learn about the specific technologies and operationsAuthorized by the O5 Council and responsible for related matters]]
·Stage 3: Broken Dreams
The main content of this stage is that after the end of the Poetry of the End, the different histories and myths formed in the stage of Poetry of the End are different from the history and myths recognized by real human beings. This leads to a complete "ascension to the gods" scenario.
After the End Poem is over, the human souls that form the higher-dimensional cognitive aggregates/apex-type multi-functional divine entities all become its components, with the Gestalt Will or the Supreme Divine Will as the core. However, the related myths and legends known by all human beings are different from the related myths and legends known by the Gestalt Will or the Supreme Divine Will. Therefore, large-scale CK-class reality reconstruction and reality distortion will temporarily occur in a wide area. However, the technology centered on [[Understanding specific technologies and operations requires the authorization of the O5 Council and is responsible for related matters]] can make this HK-class Suppression of the gods turns into a temporary reality distortion and conceptual overwrite of the alien or anomalous. According to [[Learn about the specific technologies and operations that need to be authorized by the O5 Council and be responsible for related matters]], this concept overwrite priority is the highest among all the highest divine concept overwrite priorities known so far [[Learn about the specific This technology and operation need to be authorized by the O5 Council and be responsible for related matters]]
[[Learn about the specific technologies and operations that need to be authorized by the O5 Council and be responsible for related matters]]
**Zheng Jiangyu: **You should have also read The Yangtze River Containment Procedures: You can only see the Yangtze River Sky Stream. Are you here for a private meeting with us about this program?
**█: **Probably.
**Lin Jiuye: **What does the ethics committee mean?
**█: The meaning of ** transmission should not be cut off, and our culture and history should not be eliminated. This is a necessary sacrifice.
Zheng Jiangyu:: Even if this needs to disturb the dream of the deceased?
█: Even if it requires disturbing the deceased's dreams.
█: The dead in the Yangtze River Basin have been deprived of the meaning of circulation. This is not so much, the human civilization has been deprived of the meaning of circulation. Extermination by K-Class Scenarios or Anomalies is rare, but the history of the Foundation's numerous iterations is not untouchable, yet we continue to circulate it. But obviously, after the WK-class scenario of the Yangtze River is destroyed, the meaning of the foundation and human beings will disappear, and the meaning of the author of the real layer and the narrative of the lower layer will be cut off. Maybe we can keep starting, so are we still who we were then?
Lin Jiuye: The Yellow River and the Huai River are the only two rivers that have not been affected, as well as the Jiangyan. Obviously, the high-dimensional cognitive aggregate built on the basis of Huang Huai is likely to have a miraculous effect on the Yangtze River.
**Zheng Jiangyu: **Indeed, however, using the Yangtze River to ascend the gods and suppress the Yangtze River by the Yangtze River may lead to the extremely low cognitive resistance of the Yangtze River to the Yangtze River.
█: Yes, the Ethics Committee will do its best to support your work. The O5 Council Department and the Ethics Committee Department will abandon the previous contradiction at this time. The central faction will carry out this agreement to the end. Ethics committees have never been rotten and foolish old men, and we have never rejected necessary evil.
**Zheng Jiangyu: **For the sake of circulation, for the meaning of survival.
**█: **For the sake of circulation, for the meaning of survival.
**Lin Jiuye: **For the sake of circulation, for the meaning of existence.
Yangtze River Containment Procedures: Only Seeing the Yangtze River Sky Stream
Please note that this article refers to top-secret information: Rituals: Ascension Trilogy. Please ensure you have 6/CN-001 clearance to spy on this proposal. This proposal is intended to construct incomplete ascension entities to contain the Yangtze River. Please make sure you have sufficient permissions to access top-secret material: Ritual: Ascension Trilogy.
**Overview: **Ritual: Ascension Stage 2: End Verse, the higher-dimensional cognitive aggregate/apex-type multifunctional divine entity will continue on the narrative ladder Moving forward, concept overwriting priority and soul strength continue to increase. If an incomplete Ritual: Ascension is held, the entity will continue to progress through the narrative ladder without entering the third stage: Broken Dreams. If so, this high-dimensional cognitive aggregate/apex-type multi-functional divinity can continuously increase in strength. Nonetheless, after awakening the Gestalt Will or the Supreme Divine Will, this higher dimensional cognitive aggregate/apex-type multifunctional divinity will collapse due to the inability of the mythical and historical strength of cognition to control the soul. However, if it refuses to awaken the will and only makes it continue to suppress the Yangtze River with an ever-increasing conceptual overriding priority, then the Yangtze River has the possibility of containment.
**Containment Department: **Yangtze River Containment Procedures - Only Seeing the Yangtze River Sky StreamExecution Room, Ritual: Ascension to GodExecution Room
Execution Phase:
**·Phase 1: **Ascension to God: The Source of Faith
Wide-area trait memes should be spread by humans in the Yangtze River basin, and it is necessary to ensure that this trait meme also has an effect on the remaining souls of the deceased. The remnants of famous [forgotten] human beings who died in the Yangtze River basin should be activated, and the myths and history related to the Yangtze River will be infused into their souls by idiosyncratic memes. The meaning of existence should not be eliminated, they should be remembered. All the souls of the deceased who continue to exist in the Yangtze River should be linked with relevant myths and history, and it is necessary to ensure that the interference of antimemetics caused by the Yangtze River can be eliminated in the second stage.
Jiang Yan, ie SCP-CN-001-A, should be hunted as much as possible, and its drop, SCP-CN-001-B, ie Jiang Yu, should be returned to the Yangtze River. There is evidence that the negative impact of hunting Jiangyan and returning Jiangyu on the WK-class scenario would be reduced. Therefore, it may be the optimal solution to use Jiangyan as the raw material to manufacture the central core of the Ascension entity.
**·The second stage: **Only see the flow of the Yangtze River/Ascension to God: Lone Sail, Far Shadow in the Blue Sky/Poem of the End
The human soul will sink into: Fireworks March at the same time, and begin to experience the history and myths associated with the Yangtze River. The core Soul Hereditary Collective Subconscious Activator will be activated by Zheng Jiangyu, Soul Hereditary Collective Subconscious Activator will activate all the myths and history inscribed in the souls of those who will enter the dream by the culture and inheritance, and make all People's dreams are synchronized, and Fireworks March. During this stage, the meaning of existence should be determined, and all the dead should be given meaning.
**·The third stage: **Yangzhou dream for ten years
Judging by the Department of Knowledge and Exploration, the Department of Research, and the Department of History, the history and mythology related to the Yangtze River has been dating for ten years, and then will enter a new stage: Poems of the End. At the beginning of this phase, the remaining higher-dimensional cognitive aggregates/supreme divinities will continue to provide [[requires authorization from the O5 Council and is responsible for related matters]] knowledge of the Yangtze River in order to [[requires the O5 Council's authorization] The principle of empowerment and responsibility for related matters]] makes this high-dimensional cognitive aggregate continue to ascend the narrative ladder, and refuses to be bound by cognition as a metaphysically existing high-dimensional cognitive aggregate. During this phase, all human souls continue to provide cognition. After calculation by O5-3 and the AIC array at its core, after [[authorization of the O5 Council and responsible for related matters]], the high-dimensional cognitive aggregate will continue to ascend the narrative ladder without the possibility of stopping .
**·Phase 4: **Only see the flow of the Yangtze River
Because stage: Broken Dream cannot be carried out, the higher-dimensional cognitive aggregates with increasing priority of overwriting this concept will have an impact on normal history and mythology, and CK-class scenarios will occur in a wide area. The Historical Reconstruction Guidance Instrument will be activated by Zheng Jiangyu, and the array group centered on the [[O5 Council's authorization and responsible for related matters]] Historical Reconstruction Guidance Instrument will overwrite this concept to suppress the Yangtze River. After calculation by O5-3 and the AIC array at its core, after [[authorization of the O5 Council and responsible for related matters]], the high-dimensional cognitive aggregate will form inertia, and will always suppress the Yangtze River.
[[Learn about the specific technologies and operations and be responsible for related matters]]
To: Lin Jiuye
From: Zheng Jiangyu
Subject:Yangtze River Containment Procedures-Only Seeing the Yangtze River Sky Stream
Things are going well, although time may be short, but the suppression of the Yangtze River is indeed feasible. Restart-type anomalies headed by SCP-2000 are on standby. However, I remembered my dream when I first contacted Jiang Yu. Do you still remember those geese and Jiang Yu? After the WK-class scenario, there is no trace. Why invest in the Yangtze River? The Yangtze River was originally a long river of history and mythology, why is it now transformed into a WK-class scenario? Do you remember, the log about SCP-CN-001-C. Dayu's water control may be the Yangtze River, and the Yellow River may be due to the misrepresentation of antimeme and the cover up of history. We need more relevant information. According to my guess, that is, throwing humans into the Yangtze River to completely contain the Yangtze River. The specific process will not be discussed first. Anyway, once we successfully get intelligence by throwing Homo sapiens into the Yangtze River, then maybe the second half of Jiang Yu will come true.
To: Zheng Jiangyu
From: Lin Jiuye
Subject:Yangtze River Containment Procedures-Only Seeing the Yangtze River Sky Stream
Fortunately, there is no record of your dream, and only the two of us had handled the letter at that time. The previous record of SCP-CN-001-C was archived by me for a random reason, and then replaced it with another. The HMCL Supervisory Committee didn't ask me why, which is fine.
What Jiang Yu circulated was all real history and mythology, and there was no doubt about it. It stands to reason that the divine entities who have received various enhancements are basically impossible to mix up their memories, and the letters are still at hand. But are you sure your dream is real? This matter is no trivial matter, and must not be known to the Deputy Inspector General of the Ethics and Ethics Committee. Otherwise, the proposal you made earlier is the real content, and it also reveals the real meaning of the Yangtze River. If your conjecture comes true, the foundation that is most likely to create the Yangtze River is the foundation, and it is the foundation of the first generation.
Yangtze River Containment Procedures-Only Seeing the Yangtze River Sky StreamPreview Situation
Pressure on Changjiang for the process of gradually increasing the priority of conceptual overwriting in the calculus. High-dimensional Cognitive Aggregate-IX will be responsible for the temporary suppression of the Yangtze River this time, and it will also temporarily prevent and control the safety of the foundation's China branch: Xi'an City, Yecheng.
**September 4th, 2011 00:00:00: **Yangtze River Containment Procedure-Only Seeing the Yangtze River Sky StreamPreviewStart
**September 4, 2011 00:05:00: **High-dimensional Cognitive Aggregate-IX reaches the sky above the earth through the high-dimensional folding array and begins to warm up
**September 4th, 2011 00:10:00: **Higher Dimensional Cognitive Aggregate-IX began to override the priority output with the concept of █
**September 4th, 2011 00:30:00: **During this 20 minutes, High-Dimensional Cognitive Aggregate-IX increases concept overwrite priority by █%. The water level of the Yangtze River stopped rising and began to retreat.
Time |
Status |
Deaths |
Countermeasures |
Effect |
2011.9.5 |
Huaihe Theater and Guangjiao Theater partially replace the abolished agreement with micro-cognitive aggregates and divine entities: Jianghan Torrent |
35% |
Yangtze River Containment Procedures - Only Seeing the Yangtze River Sky Stream __Execution |
The front lines of the Huaihe Theater and the Guangjiao Theater were respectively advanced to Hefei, Xiangyang and Quzhou, Nanchang and Changsha. |
2011.9.7 |
The Yangtze River counter-offensive operation has been put on the agenda |
35% |
__The Yangtze River containment procedure - only see the Yangtze River Sky Stream is being implemented, and the lower-level replacement plan has been promoted in various theaters |
Recaptured, Chengdu is fighting again |
2011.9.24 |
The lower-level alternatives are partially invalid, and new lower-level alternatives have been put on the agenda. The anti-concept override value that may exist in the Yangtze River seems to have increased |
36% |
The Yangtze River Containment Procedures - only see the Yangtze River Skyline streamexecuting |
The SCP-CN-001 research group under the Research Department began to measure the overwriting degree of the Yangtze River's anti-concept |
2011.10.1 |
Hangzhou was recaptured, and the operation to recover lost land was stopped due to an increase in the failure rate of the Yangtze River Containment Procedure-Wijian Changjiang Sky Stream __, and the lower-level alternatives were abolished |
39% |
_ _Proposal: only see the Yangtze River Sky Stream start implementation |
According to the calculation of the Foundation's main control system, the success rate of the proposal, the feasibility rate is [[cognitohazard shielding/data loss]] |
To: Zheng Jiangyu
From: Lin Jiuye
Subject:SCP-CN-001
Yangtze River Containment Procedures: Only Seeing the Yangtze River Sky Stream seems to be very definite in execution, and high-dimensional cognitive aggregates with myths and history related to the Yangtze River must have stronger contributions. Yet you are worried, you are worried about a possible collapse. A crash is indeed possible, but the odds are extremely small.
You need to make sure that your proposal is enforceable, otherwise, obviously, Yangtze River Containment Procedures: Only Seeing the Yangtze River Sky Stream is safer and more complete.
To: Lin Jiuye
From: Zheng Jiangyu
Subject:SCP-CN-001
If my conjecture is true, then the meaning of iteration and survival will be established at the same time, SCP-2000 makes the meaning of iteration 7,596,934,179 lost, and amnestics and forgery will cover up the traces of their existence. If my conjecture is true, then the words in my dream can also explain: don't worry, we will still pass; don't remember, we are all in the Yangtze River.
And Jiang Yu and Changjiang will remember them forever.
Participants: [Lost]
When: October 1, 2011
Venue: Confidential Conference Room Site-CN-001, Temporary Site, Xi'an City
Zheng Jiangyu: Dear members of the O5 Council. Please review my new proposal due to possible hurdles by the Ethics Committee. must be narrated here
O5-9: Please speak.
Proposal: drinking water from the Yangtze River
This proposal is based on speculation, please review.
Overview: SCP-CN-001, the Yangtze River, was originally an anomaly that passed on history and mythology. Due to the nature of the Yangtze River, it is very likely to be a product responsible for spreading, that is, responsible for spreading the meaning of iteration, inheriting history and myths, in order to avoid being erased by antimemes, negligent agreements, etc. to erase the meaning of existence.
** Speculation on WK-Class Scenario: ** Circulation
**Searching for the method of the previous iteration of the Foundation to contain the Yangtze River: **If the speculation is true, if the content of history and mythology is increased in the local area of the Yangtze River, it is possible to continue the extraction of history and mythology. Although it is more likely to extract the invested memories and myths, it is also possible to extract related technologies. That is, a large number of Homo sapiens entities are invested in order to locally extract relevant technologies. Due to the disappearance of SCP-CN-001-A, it is theoretically possible to drink the water of the Yangtze River directly and absorb it directly with the soul entity of the drinker. However, it should be noted that drinking Yangtze River water will cause the drinker to directly transform into SCP-CN-001-E. However, a divine entity injected with multiple Class Z mnestics and carrying the associated equipment could theoretically persist for a certain amount of time.
In theory, the Yangtze is just a tool for spreading. More detailed information and speculation will be declassified after the implementation of this proposal.
**O5-9: **If this is the case, then your previous ___ repeal proposal: after the frequent rains of the Yangtze River_ will have the effect of suppressing and containing the Yangtze River.
**O5-13: **There is an enforceable proposal, but this proposal also proves the repeal proposal: after frequent rains on the Yangtze River__ is correct. The Ethics Committee will not allow this behavior. If this proposal is implemented by the O5 Council, I am afraid that the Foundation will need to start a civil war over Confidential Operation.
**O5-11: **If, indeed, there is sufficient evidence, then the O5 Council will support you. If it is true, it is the meaning of the spread, I wish you two success.
**Zheng Jiangyu: **What is Ascension to God?
Lin Jiuye: is the supreme divinity maintained by belief. The most commonly used technique of ascending the gods of human beings uses myth and history, and cooperates with the cognition of Homo sapiens on history and myth, and then steps up the narrative ladder with the support of cognition, and finally stops, and ascending to god is completed.
**Zheng Jiangyu: **If a thing itself is a collection of countless histories and myths, and it has been recognized by countless people in countless iterations, then it will?
Lin Jiuye: will explode. But if it really endures, then it itself is the highest vertex-type multi-functional divine entity, and it will have a very high priority cognitive overwrite authority. However, it is impossible to reach the level of the Yangtze River. The priority of the Yangtze River is higher than the highest value of human theory. And the reason why the Yangtze River is like this, and because of belief, cognition has ascended to God. Unless the Yangtze River is the carrier of history and mythology, and gets infinite cognition at the bottom of the subconscious.
**Zheng Jiangyu: **If the same, or similar myths and history anchor two high-level supreme divine-level entities at the same time. Despite the enormous number of myths and histories, the rank of supreme divine entities is extremely high. So……
Lin Jiuye: The same myth and history, even if they are similar, cannot anchor the Yangtze River and the Yellow River at the same time, even if it is the myth and history accumulated by countless iterations. After both the Yangtze River and the Yellow River were artificially ascended to the gods for the second time, the Yangtze River and the Yellow River would collide. The concept of circulation as a high position cannot exist in the two supreme gods at the same time. In this way, the Yangtze River and the Yellow River will snatch myths and history, and the concept siphon in the sea of human collective subconscious will unfold. At that time, if human beings are put into the Yangtze River in reality, it is equivalent that the Yangtze River will absorb the history and myth of this iteration, and the concept of circulation will be given to the Yangtze River. And the ascension of the Yellow River? That's the key.
**Zheng Jiangyu: **And if the Yellow River and the Yangtze River are paralleled as the same long river in concept. So
Lin Jiuye: It must be realized in the material level by means of distortion of reality, that is, the Yellow River and the Yangtze River become the same river in the material level. But this is theoretically impossible, there is a gap between the Huaihe River and the Qinling Mountains.
Zheng Jiangyu: Evidence, the real evidence that can prove our conjecture has appeared. I applied to the O5 Council to provide evidence for the conjecture, so that twelve spiritually divine entities arrived from the city of Xi'an to the submerged Nanjing. Under the veil of controllable antimemes, explore the collective subconscious of all humanity. Although in the end, the divine entities were transformed into SCP-CN-001-E, but the most crucial evidence still appeared.
**Lin Jiuye: **Please believe, this is under the cover of antimeme and the Yangtze River. There is no detection means to listen to us.
Zheng Jiangyu: The Yangtze River is at the bottom of the collective subconscious of all human beings, and its existence spans even across iterations. However, it has not been activated, that is to say, the WK-class scenario of the Yangtze River is not yet complete.
Lin Jiuye: The real WK-class scenario requires the collective subconsciousness of all human beings and the reality level to be activated together?
**Zheng Jiangyu: **Correct. That is to say, the Yangtze River at the realistic level transmits the dead through the Yangtze River water, and the Yangtze River at the conceptual and spiritual level transmits myths and history through Jiang Yan and Jiang Yu, and inherits the meaning of iteration. The separate activation of the two will lead to the simultaneous realization of the two. The Yangtze River and human beings, the Yangtze River and Jiang Yu. The two are intertwined. In fact, the relationship between the Yangtze River and Jiang Yan has always been close, and the previous visions are hints that the answer is ready to come out. The idea of the original foundation was seamless.
**Lin Jiuye: **Where is the Yellow River?
Zheng Jiangyu: The Yellow River is the key, maybe the Yangtze River is the key. If the Ethics and Ethics Committee wins and the O5 Council fails, the first-generation Changhe River will naturally be suppressed, and the Yangtze River, or the Yellow River, as two equally famous rivers, must be the plan for suppression. That said, the original Foundation left enough fault tolerance to allow the latter to continue even if the plan was thwarted. Huaihe? That may be the plan's pre-plan, enough to keep the plan going, even if the Yellow River and the Yangtze River are destroyed at the same time. And how did the Yangtze River absorb the completion of myth and history because of the Yellow River? I said it before.
Lin Jiuye: It's unimaginable, at the bottom of the sea of subconsciousness, that's the mystery that spreads. The Yangtze River, which has flowed for countless years, and the Yellow River, which once flowed and will flow in the future, flow slowly at the bottom of the subconscious and the two rivers in reality. The Yangtze River is the common mainstream of all civilizations, so countless civilizations are geese that rely on him to survive. And these Jiangyans symbolize endless myths and history, traces of countless iterations. Is it right.
Zheng Jiangyu: You have no doubts.
**Lin Jiuye: **I have no doubts.
To: Zheng Jiangyu
From: Lin Jiuye
Subject: You live at the head of the Yangtze River
Have you found the right person? Requires at least Foundation Level 4 clearance, no ethics committee background, divine entity, educated in history, absolutely trustworthy, and can die for us. It also needs to be kept secret from the Ethics Committee. Hard to find.
I have already obtained the instruments and equipment through the authority. I have obtained a copy of the latest products from the Foundation Research Department to the cutting-edge products with the best stability and proven stability. In terms of energy supply, the divine entity can transmit energy by itself, Z-level. The mnestics also arrived. Now only one person and a few Homo sapiens are missing.
To: Lin Jiuye
From: Zheng Jiangyu
Subject: I live at the end of the Yangtze River
I asked a supervisor to intercept a group of people who were about to be transported, about a few thousand. They were originally going to forge the enthroned entity, but I intercepted it. Then I blocked the message, and several site directors along the way agreed. According to the plan, a group of GOC troops will maliciously intercept these people and kill the escort. The escort was a squadron of the O5 Council Guard E Corps, the chief officer was parachuted into a 4th-level officer, and they left on their own.
It's time to send people, you are in Wenzhou, I will rush over from Zhengzhou later.
I miss you every day, but I don’t see you
Okay, the conditions are very simple, and it's easy enough, which makes me suspect that even a level 4 supervisor can do it. It's just a messenger, the Foundation has Level 4 authority, no ethics committee background, a divine entity, educated in history, absolutely trustworthy, and can die for us. The rest of the conditions are easy to meet, but the divine entity, high authority, absolutely trustworthy, can die for us. what. Isn't this ready-made, ourselves.
At first, I thought it was cooperation, fulfillment of vows, experience, and achievements… I still remembered the days when I was studying in the school affiliated to the Foundation Site-CN-001, when even the desks were protected by containment control, The desks of the year were all moved home by parents with permission, and the students didn't know where they died… Let's do it.
The spread must continue, and the Yangtze should not be cut off.