:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
Assigned Site
Provicional Area-XXXX
Site Director
Dr Morrison
Research Head
Dr Kelly
Assigned MTF
the following MTF could br required in the event of a contiment breach MTF Lambda-12 ("Pest Control"),MTF Epsilon-11 ("Nine-Tailed Fox"), Phi-2 ("Clever Girls").
interior de scp-6000-1
entrada a scp-6000-1
Special Containment Procedures:: Because of the location of SCP-XXXX it was decided to build the provisional area-6664 for containment. Entry to SCP-XXXX always requires a minimum level 3/XXXX authorization", any unauthorized person must be detained and be given class-A amnesties.
The area will act as a way to prevent the escape of instances of SCP-XXXX-3 from the cavern and as a form of defense from the cavern in case any interest groups attack the area.
(revision): In order to avoid a containment breach, it has been decided to reclassify the provisional area-XXXX as a permanent area and to assign additional security protocols to it due to the recent attempts of intrusion by the aforementioned groups, will be assigned additional security personnel and advanced equipment.
Debido a las propiedades anómalas de scp-XXXX-1, se deberá de seguir estrictamente sin desviarse del camino marcado por el personal, para evitar perderse dentro de la estructura laberíntica de scp-XXXX-1, esta medida se implementó después del descubrimiento de scp-XXXX debido que en la exploración inicial varios miembros del personal se perdieron el en el trayecto entre el área-XXXX y scp-XXXX-1 hasta scp-XXXX-2.
Near the exit of the cave has been built several outposts with guards and research personnel to record the landscape, fauna, and flora of SCP-XXXX-2. all personnel with unauthorized security access 3/XXXX will be strictly prohibited from going beyond the outposts without having at least consulted the area director "Dr. Chester Morrison" and having been approved by him and Dra. Kelly (research director). Both will also have to approve an expedition to enter SCP-XXXX-2, the expedition will have to be escorted by at least 8 guards because of how dangerous the (instances of SCP-XXXX-3) fauna and native flora of SCP-XXXX-2 can be.
Description:: SCP-XXXX is the classification given to locations that lead to an anomalous cavern that supports and leads to an autonomous ecosystem inhabited by various types of no anomalous living beings and that in turn cohabit with anomalies within the ecosystem, consists of SCP-XXXX-1, SCP-XXXX-2, and SCP-XXXX-3.
The Scp-XXXX-1 is the cave that is formed by limestone rocks of marine origin, of 85 million years ago, approximately, it is believed that they were sculpted by the current of a river, which runs under the cave, to 95 meters of depth. The cave consists of a single gallery divided into 19 rooms, full of stalactites and stalagmites, the maximum height reached by the halls is 21 meters and a width of 42 meters and it was found that the cave has a length of 4 kilometers to tour it round and round.
The cave is in █████, █████, Mexico. The cave was initially discovered due to the report of an agent of the foundation infiltrated with the local authorities who alerted the foundation of the anomalous activity in the region and the alarming amount of non-native fauna that began to be sighted in the area.
In the distance, one can see in the structure of the cave, a complete ecosystem, but limited by a rocky roof. the ecosystem formed in this space has been denominated as SCP -XXXX-2.
When the path of the cave described above ends, when it ends at the exit, we see what appears to be a landscape plan, with an estimated dimension between 100,000 to 150,000 square kilometers, which begins with a rocky surface of limestone and continues to an abundant clearing of varied fauna and flora, of which several anomalies cataloged by the foundation have been sighted, while of some others, their existence is known only to other interest groups, noting that the rest have never been recorded, whereas of the latter have been classified as an anomalous set of fauna and flora identified as Scp-XXXX-3, of which its current count is between 3100 and 3500 detected, which have been mixed and adapted very well with the species and fauna known in the environment of SCP-XXXX-2
note:(For a full report of the Scp’s sighted within SCP-XXXX-2 open the file "Scan-AD report and logs of detected anomalies within scp-XXXX "

Addendum:
<Begin Log, Wednesday, April 2, 2021>
The "pandora’s box" incident is the designation given to the series of events and locations that led to the discovery of scp-XXXX.
The incident consisted of the alert of the infiltrated agent of the foundation James William, who alerted the foundation about the growing anomalous activity in the region, after which the foundation displaced the mobile detachment"" who was the one who originally arrived in the area.
After deploying the mobile detachment MTF Epsilon-6 ("Village Idiots") responded to the foundation 48 hours after landing, reporting the loss of 40% of the MTF, they also confirmed the sightings reported by agent "" but added to the record the discovery of several instances of 4 SCPs which were identified as (Scp-939. Scp-966, Scp-2086 and Scp-3199) the previous record was written by the director of the Privicional-6664 area, Dr. Chester Morrison.
The MTF "had requested reinforcement specialized in the type of anomalies described above, the deployment of the MTF´s Lambda-12 ("Pest Control"),MTF Epsilon-11 ("Nine-Tailed Fox"), Phi-2 ("Clever Girls").was approved to assist in the containment of reported anomalies was in turn sent to an investigative team to find out the whereabouts of the reported anomalies, to prevent the "" of the foundation from being revealed , be co-informed with the local government , officially saying that the anomalous warning area, now called the "exclusion zone"" had suffered a forest fire, to cover up the veracity of the announcement the controlled burning of the surrounding forests was ordered, The immediate evacuation of all population centers at a distance of 40 kl was also ordered.
Once the area had been secured, it would have to contain anomalies that had been discovered within the exclusion area," MOBILE DETACHMENTS WERE DEPLOYED AT 600 HOURS TO SUPPORT MTF Epsilon-6 ("Village Idiots"), by the time the MTF arrived in the exclusion zone they started a phasing-in campaign to reduce the size of the exclusion zone after the arrival of the MTF MTF´s Lambda-12 ("Pest Control"),MTF Epsilon-11 ("Nine-Tailed Fox"), Phi-2 ("Clever Girls"), it was also discovered that there were more anomalies in the zone, meanwhile nonabnormal animals who are not part of the local fauna were moved to the site"", the battle that the MTF fought to penetrate and secure the exclusion zone lasted 2 days, which was when the foundation contained the anomalies and the exclusion zone was secured, when the research team came to "drafted" quickly discovered the origin of the anomalies sighted, which led to a Cavern near Taxco which was quickly taken over by the foundation and the locals were told to close the cave completely on the premise that reports of seismic activity in the region had been reported, and government would give you free access to a research firm.
<End Log, Friday, April 4, 2021 >
Closing Statement: [Small summary and passage on what transpired afterward]
**<Begin Log, Tuesday, may 25, 2021>*
Upon entering the cave, they immediately discovered its anomalous properties since to explore the cave was initially sent to an exploration team made up of 6 members of the class D staff, which was made up of;
• D-08122
• D-08123
• D-08124
• D-08125
• D-08126
• D-08127
which were equipped with standard scanning equipment, consisting of a flashlight, a radio, a standard "" pistol, a harness and belt for storing equipment, video equipment, audio and a backpack.
When class D personnel were ordered to enter the cave, they were warned that if they refused they would be terminated by the security personnel, class D unanimously accepted and proceeded to enter the cave.
By the time the initial exploration team returned, the staff realized that only D-had returned, which in an agitated manner communicated to the staff about the experience suffered during the exploration
D-08122 stated the following:
"I and the rest of the team started to go into the cave, at first everything seemed normal and only seemed to be a natural cave until after 1 hour of walking the weird things started to happen, First we noticed that as we moved forward we were moving slower and slower as if the ground was expanding below us, then the equipment started to fail including the flashlights at that time we all panicked, but by the time the lights came back there were only four of us, the only thing left of the others were their shadows that seemed to have been stunned on the rock, this puzzled us a lot as we had never seen anything like that and out of nowhere everyone started running, Me and someone else started running together while the others split up and headed towards the inside of the cave, I don’t know why anyone would do that" meanwhile, we kept running to reach the exit but we remembered the warning they gave us, then we decided to reach the others one of them did not listen when we shouted back and that separating was not a good idea, then he gave us the reason and came towards us, meanwhile , the other guy started to stop running, but from one moment to the next almost like magic the stones were closed and the stalagmites and the stalactites grew in a matter of second leaving him trapped on the other side, while we were trying to remove the rock the subject started screaming for help stating that 2 other people in robes started talking to him about what he was doing there, "they called us prisoners and that our jailers were the foundation." It was then when the 3 of us heard gunshots a kind of growl from the other side, we could only hear their cries of pain, we started running back to the exit "All we cared about was getting out of there" and by the time we got to the exit we discovered that we had not reached earth or at least not our own since the exterior of the cave looked like a nuclear wasteland, lifeless and you were nowhere to be found, In the distance we only saw two sides fighting each other until a projectile hit the entrance to the cave and we decided to go back where we had come from By the time we got back one of the guys had completely changed his appearance and instead of being a man he was now a woman and he threatened us with the gun that if we didn’t give him our equipment, he would kill us, he told us that he had already been there 3 months and that he was tired of not being able to find a way out, but out of nowhere a giant red-skinned animal with garlic on its back came out of the darkness and began to devour it we fled in fear, By the time we saw the light from the entrance to the cavern and saw the camp in the distance we knew we’d be safe but when I looked back, my partner had disappeared into darkness and fear, all I did was run over here."
Note: after this D-08122 was terminated.
Apparently the cave and its structure presents anomalous characteristics that make difficult the task of entering it, such as instances of scp-939 that could be observed in the video record, when it appears if a person is exposed to a light source and suddenly turns off just leave the shadows of the subjects, it is likely that the different intersections of the cave can be randomly closed which causes portals to be opened to different dimensions which is when the trapped subjects are teleported to another dimension such as that described by D-08122, it has been discovered that the anomalous effects of the cave can be somewhat avoided if one follows a specific path and does not turn over the steps, in addition to inhibiting the properties of scp-6664-1 Scranton reality anchors have been installed along the road that was marked by the foundation to get to the other end of scp-6664-1, it is also still being investigated to find out who were the humanoids who spoke to D-08125, several staff members have already suggested that they might be members of the serpent’s hand as they referred to the foundation as "jailers".
<End Log, Tuesday, may 25, 2021 >
Closing Statement:
"so far only a small region of the cave has been left for future research on its anomalous characteristics, this as a request of Dr.Kelly"

<Begin Log, Tuesday, 25 March 2021>
<START LOG>
(for more information see the initial dispatch file).
The entrance to the cave is surrounded by a landscape brimming with fauna and flora that extends throughout the cave, due to its large size and the strange configuration of the interior, it was difficult for the staff to map and study the cave in a way that made sense of the location of the different rooms or the way they connected to each other, the structure did not seem to have a clear sequence in time and space, because of these variables, the explorers ended up being lost inside, so from this accident it was decided to initiate a search protocol in which the personnel would advance and map the cave manually and gradually to avoid losing more equipment and personnel, In addition, it has also been chosen to use Scranton reality anchors to inhibit the anomalous properties of the cave.
After a month of the arrival of the foundation, we managed to reach the end of the cave, from which we measured the time and distance to cross it back and forth, discovering that its journey lasts four hours in which they travel four kilometers in length, 2 hours of one way and 2 hours of return to be able to travel the cave from start to finish.
Once we reached the end, we observed an entry of light between the surrounding rocks, we advanced and we noticed the existence of flora inside the cave and
a small river that ended up winking at a wasteland where we could observe the interior of scp-XXXX-2 which seemed to be a natural ecosystem devoid of any anomalous property or focus of interest, this thought changed as we advanced as the limestone roof began to disappear like the ground to end up passing into a natural landscape covered with anomalous native flora that would later be classified as scp-XXXX-3, there was also a skylight in the distance apparently without any sense because we had gone 4 kilometers into the mountain and there was no entry of light, as well as sources of water to raise the formation of rivers or small ponds.
We were all shocked when we climbed up the skylight and discovered without any logical explanation that it seemed that the cave had expanded 8 times its size and the ecosystem did nothing but grow in diversity and dimensions, we also discovered that within scp-XXXX-2 there were fauna, which at the beginning of the route was not anomalous or did not have special characteristics that would distinguish them notoriously from their counterparts outside scp-XXXX-2, however as they entered the cavern they discovered anomalous flora and fauna, which it was decided to classify as scp-XXXX-3, this due to the initial scanning that approximated the existence of between 3100 and 3500 anomalies within SCP-XXXX-2, which was later confirmed when several SCPs contained by the foundation were discovered and confirmed to be totally independent of those already contained by the foundation, of the first SCPs to be confirmed were scp-939 alerting the existence of between 39 to 56 instances of scp-939 and SCP- of which so far only one instance of this has been registered.
<End Log, Wednesday, April 2, 2021>
Closing Statement: [Small summary and passage on what transpired afterward]
Foreword: (the previous anomalies have been spotted within SCP-XXXX-2, most were supposed to be already contained in the foundation and it has been confirmed that they are independent instances of those already contained)
<Begin Log, Wednesday, June 2, 2021>
“reporte de exploración-AD”
SCP’s discovered within scp-XXXX
| SCP´s | amount that have been seen in scp-XXXX-2 |
| I. SCP-939 | 56 |
| II. SCP-3887 |1 | |
| III. Incinideer | 5 |
| IV. SCP-3199 | 3 |
| V. SCP-4032 | 1 |
| VI. SCP-1000 | 1 |
| VII. SCP-5699 | 1 |
| VIII SCP-5160 | 1 |
| IX. SCP-2086t | 2 |
| X. SCP-4975 | 1 |
| XI. SCP- 5893 | 1 |
| XII. SCP- 4274 | 1 |
| XIII. SCP-4980 | 1 |
| XIV. SCP- 5338 | 2 |
| XV. SCP-966 | 16 |
note: more records will be added over time as the scans of scp-XXXX are still in progress ; it is estimated that""ON JUNE 8, 2021 "" WILL BE READY "" New logs in a mater of days (.wait..)
.<End Log, Wednesday, June 2, 2021>
Closing Statement:All anomalies that have been seen were classified as scp-XXXX-3 to avoid an inefficiency of classification and bureaucracy, all intances should be classified as extemo dangerous and should be terminated if they attempt to leave scp-XXXX-2.
the anomalies so far catalogued are only those that the incestigation equiopes have managed to catalog and record in images and video but that does not mean that they are the only ones, the scanners initially counted between 3100 and 3500 anomalies dentreo of scp-XXXX-2, now that number has risen to more than 6000 anomalies detected this is epecula that it is due that the initial scan was carried out in scp-XXXX-1 and the last one was carried out inside scp-XXXX-2.
a.t.t: Dra. kelly:
.<End Log, Wednesday, June 2, 2021>
Interviewed: Dr.Simons
Interviewer: Dr. Kelly
Foreword:Interview with Doctor Simons and incident "blackout"
Begin Log, Tuesday, June 1, 2021,>
Dr.Kelly: Tell me Dr.Simons what exactly happened during the scan at SCP-XXXX-2, the whole exploration team is very excited to share their findings regarding SCP-XXXX-2, why do you look more skeptical?
*Dr.Simons: everyone seems to be very happy about the situation but why should we really be? , just look at all the anomalies we’ve discovered only in the first scans, and the director told me that I had to censor more than half of them and that I could only report the discovery of 15 SCP s within SCP-XXXX-2 officially as it could affect morale and delay exploration operations.
Dr.kelly: What did you find inside the SCP instances that I report in your record?
Dr.Simons: imagine we found another SCP-682 native of SCP-XXXX-2
Dr.kelly: (speaking alertly) are you saying that instances of these SCPs exist in the cave?
Dr.Simons: of course not, nor anyone who wanted clones of those 3 walking around, but just imagine that it was.
Dr.kelly: would be a huge disappointment if, apart from having to contain an anomalous ecosystem with thousands of anomalies, an instance of these anomalies were to be found among them.
Dr.Simons: I think the same thing, but I don’t know why you refer to scp-XXXX-2 like that,the only anomalous effect it has is that it is natural, before you refute me about this let me say that scp-XXXX is indeed an anomaly, But do we consider it an anomaly because it has anomalies inside it, and if it didn’t, it would still be? , by this I do not mean that we should consider scp-XXXX as something natural, however, we have also discovered fauna and flora within scp-XXXX2 and why these are not part of scp-XXXX-3, what exactly makes something natural and that it does not?
Dra.kelly:(determinedly):I would say that what makes something abnormal is that it does not comply with the laws of nature or the sciences, such as; physics, biology and chemistry, etc.
But above all that it is immensely superior and unbalanced in comparison with the other things that exist in our reality.
Dr.Simons: if I understand it but who says we are correct that the sciences and natural laws are only our point of view? , how many times have mankind believed in superstitions that they considered absolute truths and that in the end ended up being completely false,who tells us that in 50 years the sciences will continue to be applied in the same way or that the actions and decisions we make right now could be seen in a bad way in the future.
Dra.kelly: has good arguments doctor, however, if the foundation was not right why is it that we have effectively contained most of the scp s contained by the foundation? And if science wasn’t the future of humanity, how is the technology of the foundation so advanced? , even the anomalies that cannot be contained by the foundation have been discovered by science and I find it odd that it expresses itself so from science seeing that we are scientists and the fact that it compares science to old superstitions that were left by history, Besides, without science and technology everyone would be in chaos or the human species would have been extinct long ago, For example scp-2000 has rebuilt civilization before k-class scenarios. Tell me doctor why we should not consider scp-XXXX as a dangerous anomaly against humanity or think that science cannot become the answer to containment of any anomaly, that has been the only thing that separates humanity from all anomalies? , isn’t that right?
Dr.Simons: because we do not know if science is the absolute truth, who says that science is not superstition?
Dr.kelly: the fact that it works.
Doctor, why do you think he’s actually being interviewed?
Dr.Simons: to talk about the anomalous nature of scp-XXXX, what else would we have to talk about?
Dr.kelly: Doctor we have discovered your recent talks with a member of the interest group called "the hand of the snake", do you think we would not notice? , your offices were never soundproofed as you requested or not the way you requested they were installed speakers and headphones after storms that allow us to listen to all kinds of audio in a room at any time, Isn’t that a perfect sample of the fidelity of science and technology? , we have discovered your conspiracy against the foundation we also discover that you have been in contact lately with the hand of the serpent and that you have tried to convince several staff members to go with you to the "Wanderer’s Library".
Dr.Simons: That’s a lie, I was never in contact with the hand of the snake because I really wanted to, I’m doing it because it’s necessary, my loyalty to the foundation is immeasurable, but, their methods are antiquated and do not open their eyes to the nature of reality, it is that same thing that led to the foundation to its own destruction, really no one knows the nature or the reality of anything, the hand of the snake uses keywords, not because they really think that way but rather because it is the only way the foundation will understand what the hand of the serpent is trying to make them understand.
Dr.kelly: if our methods were outdated we would never have discovered that it was in contact with the hand of the snake’s hand, Doctor.
*Dr.Simons: that-is…
**Interrogation room speaker: ** "Security protocols activated, containment gap detected, Attention, all personnel should head to the nearest evacuation areas, the detachment "" is already on its way to the "redacted" area (repeat)".
*Dr.kelly:We have to get out of here, (says the security staff)escort the doctor simons to the nearest evacuation area.
End Log, Tuesday, June 1, 2021>
***Closing Statement: ** Just before the interview was cut off, the chaos insurgency launched an attack on the provisional area-XXXX which caused the cessation of all electricity in the area causing a containment breach, members of the chaos insurgency infiltrated among the personnel were also discovered, releasing from scp-XXXX-2 several instances of scp-XXXX-3, causing a containment breach from this incident it was decided to convert the provisional area-6664 as a permanent centered area, but not exclusive to the containment of scp-XXXX in addition during the containment breach Dr. simons disappeared and was never seen again, we found his escort stunned near the evacuation area.
[[/div]]
(for more information see the initial dispatch file).
NOTICE FROM THE FOUNDATION RECORDS AND INFORMATION SECURITY ADMINISTRATION
This record was added anomalously and so far all attempts to remove it have resulted in the removal of the file scp-XXXX, therefore it has been decided to leave the file, however only personnel with level 4 authorization can access to this as, this was implemented as a precaution to avoid a repetition of "blackout" incident.
— Maria Jones, Director, RAISA
la mano de la serpiente ha estado observando su actividad con lo “anomalía” que clasificaron como scp-XXXX, debido a que ustedes clasifican, encierran e incluso destruyen si así lo consideran necesario, asumen que lo que hacen es irrefutable, como podrían equivocarse, se hacen llamar la fundación SCP, nosotros los llamamos “los carceleros”, ustedes encierran, evitan y mienten o lo que sería lo mismo que secure, contain, protect. Ustedes afirman que hacen los correcto que los medios que usen se justifican por el fin que tanto anhelan, ustedes encierran a lo que ustedes llaman anomalías que no son más que manifestaciones de la naturaleza que no comprenden entonces al no comprenderlas las juzgan como extrañas, peligrosas e incluso llegan a decir que no tiene sentido o razones para existir.
Al igual que las prisiones ustedes encierran a los inadaptados y los exilian del mundo dicen y afirman que no tiene futuro, dependiendo de su juicio llegan a destruirlas, las prisiones encierran a los presos no para rehabilitarlos y adaptarlos a la sociedad si no para exiliarlos y castigarlos, ¿en qué momento esta técnica ha reducido el crimen o el número de presos?, de misma manera, ustedes hacen lo mismo con las así llamadas anomalías las cuales encierran, exilian y ocultan del mundo porque el mundo tendría que ser como se supone que los humanos catalogan como normal, ¿realmente existen lo normal y si existe que caracteriza a algo normal?.
Ante estos hechos su intento de contener los anormales y lo antinatural será infructífero en la naturaleza como tal no existe algo malo o algo bueno, claro que hay objetos o entidades que por su naturaleza pueden llegar a ser peligrosas, pero que no lo puede llegar a ser, por ejemplo; “un arma no tiene poder por si sola sino aquel que tenga el valor de usarla”, scp-XXXX no está siendo contenido porque su naturaleza lo haga anómalo o siquiera peligroso, realmente se contiene por el hecho de que si alguien ajeno a nosotros como la insurgencia del caos o la COG llegara a poner sus manos sobre el paraíso o sería totalmente destruido por la COG o terminaría par el beneficio de la insurgencia del caos, sus archivos dicen haber descubierto un aproximado de entre 3100 a 3500 anomalías dentro del paraíso, pero realmente no conocen su naturaleza y su propósito, de hecho, podríamos decir que nadie lo sabe, en realidad tampoco sabes el significado de naturaleza, toda la realidad humana no es más que una ficción creada por si misma para intentar comprender el universo, creemos que vivimos en un universo lleno de orden y sentido, pero la verdad apunta más al universo dominado por el caos y el sin sentido.
En retrospectiva, está el hecho de la revolución agrícola, ¿Qué sería el humano sin esta gran revolución?, lo más probable es que seguiríamos siendo cuadrillas de cazadores y recolectores repartidos en cientos en todo el mundo, cundo el homo sapiens llego a Australia alrededor del 45,000 A.C, la fauna y flora australiana se reducción a la mitad y eso que hoy en día es una bastante diversa y abundante, ¿y si esto es así quien fue el responsable de su extinción?, la respuesta más acertada sería el “humano”, quien más que el humano sería capaz de destruir y extinguir a la gran mayoría de las especies a todo lugar donde vaya, se tiene pruebas de que las demás especies de homínidos sapientes terminaron por extinguirse después de la llegada del homo sapiens a la zona, con esto no quiero decir que el humano sea malo, sino más bien ¿que no los humanos seriamos una anomalía para todas las demás especies que se han extinguido por su presencia?
Incluso lo hicimos con la “anomalía” que ustedes catalogan como scp-1000 quien dice que scp-1000 no fue como nosotros, eran inteligentes he incluso se tienen registros de que ellos también llegaron a contener anomalías ,tales como “”, quien dice que en su tiempo nosotros no fuimos una anomalía para ellos, al igual que con otra especies scp-1000 fue casi erradicado de la tierra, aun así, siguen existiendo y parece que la mayoría ni si quiera recuerda que alguna vez llegaron a tener el mismo control del mundo como los homo-sapiens hoy en día ¿que no los humanos debería de clasificarse como una anomalía?
Con esto no quiero señalar que los humanos sean antinaturales ni que la fundación no tenga propósito alguno si no lo digo para hacer notar que todo depende de la percepción.
Como tal no existe lo anormal y lo natural tales palabras no tiene un sentido concreto da a lo anteriormente mencionado, solo las usamos para explicar lo inexplicable, pero eso no quiere decir que tales conceptos realmente existan.
Si quieren entender de una forma la realidad, la realidad seria como una maquina compleja la cual funciona de manera excepcional cuando tiene todas sus piezas, pero si se retira una solo pieza la maquina comenzara a mal funcionar lo que ocasionaría fallas en la función que realiza la máquina, bueno , con esto si a la realidad le quitan piezas pasaría algo similar, las así llamadas anomalías son retiradas de la realidad o peor aun destruidas es como quitarle piezas a la máquina de la realidad una maquina incomprensible que se cree que se entiende, pero que reamente nadie la tiene, el hecho de contener o destruir anomalías es el mismo hecho de dañar a la maquina que tiene la función de sostener la realidad, lo que descubrí en scp-XXXX me hizo ver esto. Scp-XXXX por asimismo no es anómalo o siquiera peligroso es anómalo porque ustedes lo clasificaron así por su falta de entendimiento de la realidad y lo consideran peligroso no porque sea una amenaza contra la humanidad, si no mas bien lo hace una amenaza para sí misma.
En el ecosistema de scp-XXXX todas las especies anómalas o no anómalas podían coexistir de una forma estable si acabar con la existencia total de una especie, ¿no es scp-XXXX-2 un espejo de la realidad una versión reducida del universo el único lugar donde impera el caos y por lo tanto todas las manifestaciones de la naturaleza pueden tener orden?, debido que el caos es la forma de orden más eficiente que existe solo que no lo entendemos y por lo tanto lo llamamos caos pero ¿quién realmente dice que esto sea real?, eso mismo pasa con las anomalías.
La fundación clasifica como extraño, peligroso y amenazador a lo que no pueden explicar con la ciencia y esto no lo hacen por nada, lo hacen por miedo ya que el mayor miedo da la fundación es la extinción de la realidad lo que significa la extinción de la realidad humana y que por lo tanto es lo mismo que la extinción de la especie humana, y por qué los humanos somos tan importantes como para hacer prevalecer nuestra especie sobre las demás otras, hemos tenido la capacidad de reiniciar a la civilización con la ayuda de scp-2000, hemos destruido la civilización de scp-1000 y aun así los seguimos cazando para evitar que su población crezca. Tenemos pruebas que la especie de scp-4000 lo fue de misma manera y fueron exiliados a otra dimensión, ¿es la naturaleza la suma del caos y lo inexplicable y eso da como resultado el orden?
La mano de la serpiente le propone a la fundación que cambien sus métodos y que se replanten su perspectiva y primordialmente para que abran los ojos ya que no todo se ve igual desde diferentes perspectivas.
Como últimas palabras la biblioteca del errante no le cierra las puertas a la fundación, ustedes mismos se cierran la puerta a la biblioteca, esperemos que su reciente descubrimiento que llamaron spc-XXXX pueda ser protegido de los intereses egoístas, ya que realmente no lo contienen más bien lo protegen.
Atentamente: Doctor Simons exempleado de la Fundación de nivel 4






Per 


