@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;
background: unset;
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;
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;
}
}
}
}
: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);
--logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg");
}
#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);
}
#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;
}
Containment Class:
euclid
Depiction of SCP-6000 by the 15th-century Chinese artist Shen Zhou (沈周). Note the characteristic dual-voyager motif and the Araucaria-like silhouettes of the trees in the right of the painting.
Special Containment Procedures: Due to the stochastic nature of its effects, SCP-XXXX is currently considered uncontainable. Foundation historians are to acquire copies of any media depicting SCP-6000, and are to continue to promulgate the hypothesis that these depictions refer to a non-anomalous habitat type.
Description: SCP-6000 refers to a temperate coniferous forest of indeterminate location and indeterminate existence. All data substantiating SCP-XXXX’s existence are in the form of historical documents (many of a mythological nature) either describing it as a location or detailing a journey to, into, and out of SCP-6000. Documents describing SCP-6000 have been found ranging throughout recorded history.
SCP-6000 is consistently described as possessing the following attributes:
- Location within a valley in a mountainous region.
- Canopy dominated by conifers, usually named as either cedar or pine. As multiple plants bear both these names, the exact species are often not determinable.
- High species richness. The majority of species are represented in the understory or as fauna, while the overstory is much more homogeneous. No animals are described that are not native to the region in which the writer locates SCP-6000; however, descriptions of plants are much more fanciful and may include distinctly anomalous or impossible phenotypes (for example, trees greater than 130 m in height; achlorotic instances isolated from any nearby photosynthesizers and therefore lacking in a carbohydrate source; or trees with sufficient canopy density and crown width that their weight would exceed the maximum possible compressive strength of wood).
- Location significantly distant from the writer’s place of habitation, requiring a multi-day journey (regardless of method of transport) to access and to traverse. Often, SCP-6000 is described only a portion of an account of a longer journey, indicating that the source writer did not at the time identify the traverse of SCP-6000 as being exceptionally out of the ordinary.
- Any party undertaking travel to or through the forest is composed of exactly two individuals. These two voyagers may otherwise be of any age, gender, and vocation.
It is currently undetermined if entry to SCP-6000 is dependent upon personal actions or is entirely stochastic.
Examples of sources or translations of sources describing SCP-6000 are provided below. For a full catalogue of SCP-6000 attestations, please contact the Historical Department.
This tale depicts the struggles of Atsu-hery-ib, the assistant to a merchant, to return to his home and family in Egypt after becoming stranded in Levantine Phoenicia due to a series of misfortunes. Like to The Voyage of Wenamun, scholarship has been divided on whether this document was intended to be an accurate report of a genuine journey or whether it was intended to serve as “fiction set in a real historical time” (Tyldesley, 2011). This particular episode comes relatively early in the tale: Atsu-hery-ib is attempting to travel overland to the port of Tyre with a recently-made companion named Chibale. The two men have sought directions at a homestead, but have subsequently taken an incorrect turning and been led further into the mountains.
Now the soils of this place were both black and white, and a multitude of streams ran through them. Indeed even the air was damp, and water gathered upon our garments as we walked. Many living things there were among the trunks, and we had no names for them, for they were new and strange to our sight. And the trees themselves were beyond anything that we had known: their heads were lost within the clouds, and their trunks were composed of snakeskins, and their branches lay thickly as the plaits of a woman’s hair. Surely they had never been before put to the axe, for no inroads did we cross and no marks were there upon the trunks from any blows.
And Chibale spoke to me, saying: “Surely this is the forest from which the cedar is harvested; the cedar that is shipped to Kemet on Egyptian ships.”
But I denied him, saying: “No, for there is not a mark on any tree, nor have we crossed any inroads. Say rather that this must be the forest to which man does not go, and that we ourselves may be the first people to tread this land.”
Thus did we approach the holy shrine of the Mothers and the Fathers in the wild places; yet our eyes were veiled, and we were blinded, and did not know where it was that we passed. For this passage have I done them honour in Khemenu and within my own household: Nun and Naunet, Kek and Kauket. Libations I prepare for you, o lords who were before all, engenderers, supporters and raisers of the world and all therein!
The land passed into foothills, and we reached the shore not far to the north of Tyre. With the last of our coin, we purchased passage to the city, and there sought one who could find for us a ship returning to Kemet.
This text was found in the drafts of translator Edward FitzGerald after his death.
I
Above our brow the Branches arching sweep,
Unfold their Leaves whose many Hues did keep
From times when man Bestrode the new-made Earth
The Maker’s hour, where Time wends deep and deep!
II
Behind us the City, before us Wood—
Beneath this moon-glazed Night we shiv’ring stood
To cross into that Vale of ancient Stars
And tow’ring Grace of teeming livelihood!
III
Thought we, the Wine: whom coax’d this forth from Mind!
Yet ere we lay our hand Upon the the Rind
Of yonder tree with Crown outstretched from Sight—
Felt Fern, and Moss, and Bark of firmest kind.
IV
Beheld us the Path, strewn as though with Rose
Green-glowing whorls, kindled from dark Repose.
This earthly Garden of strange-curling fans—
Whose palaces from pitted Stone expose.
V
Down flows the Water, jacinth-red and Bright
Tipped down stairs of Air, from Allah’s own height
As we stepped forth into the ancient Sand
Of waves that stretch unto Eternal Sight.
Vafþrúðnismál is a poem from the Codex Regius detailing a contest of wits between the god Óðinn and the giant Vafþrúðnir. The questions and answers laid out in the poem mainly concern Norse cosmogony.
Óðinn spake:
Much have I fared | much have I found,
Much have I got of the gods:
What shall live of mankind | when at last there comes
The mighty winter to men?
Vafþrúðnir spake:
In Hoddmimir’s wood | shall hide themselves
Lif and Lifthrasir then;
The morning dews | for meat shall they have,
Such food shall men then find.
Be not afraid! | Beneath the branches
In gladness shall they go
The children of men | within the meadow
And men in woven byre
The serpent-tree’s limbs | shall shelter them
In the meadows vetch grow.
Upon their heart | shall the runes be scribed,
On drinking ….. will learn……..
…..will be spoken
Fathers in counsel with sons.
Mothers……. | ……. their daughters…..
……… will be washed ………..
This section derives from the personal account of botanist Samuel Langhorne’s 1879-80 expedition in the Lushai Hills in India with the intention of cataloguing the biodiversity and geology of the region. The remainder of the document is publicly available, and here only the relevant section has been cited.
October 16, 1879
A most impressive thing has occurred over the last two days.
With my guide, I set off early in the morning the day before yesterday, for we had calculated that, with the change in elevation, we were likely to be delayed along the road throughout the morning. And I had predicted rightly, for soon the road (at best of times a slew of mud and cart-ruts) had dwindled to a track, hung over with branches and vines so that as one walked they struck one about the ears. Back and forth it switched along the hillside, so that we had to walk ten times the distance for any forward travel, and though I count myself a fit man the upclimbing and the humidity had soon rendered me breathless.
I barely even noticed when the track reached a saddle between two peaks, and we paused after the climb to drink. But in the moment that I had recovered my breath, a sun-ray pierced the upper layer of clouds and set the underlying fog to glowing, as though we would walk down into a sea whipped white by wind. But descend we did, all too soon - and though I had expected nothing more than an equal trudge downhill, stepping into the valley was as stepping into another world entirely.
Oh, how gloriously diverse this vale! Any botanist would count themselves lucky but to see it one time. There were ferns the size of trees, and trees with trunks like spines and heads brushing the clouds, and bark so greatly ridged that I felt myself beetle-small beside them. And beetles there were too, in abundance - in gold and green and glimmering teal, weevils with long hooked snouts picking their paths carefully along ruffled leaf margins, and dragonflies the length of my arm. Under every fold of leaf, in every crevice, on every surface there was another flower, epiphyte, scurrier, all gem-bright and diamond-dusted with condensation! I quite forgot myself and all my thoughts to look at them. From tree to tree we walked, and at each one I would cry out “look, look! Do you see?”, for at each there seemed to be some novel fern or form that no eyes before had fallen upon. I am sure we made no time at all, for all these interruptions of mine, and yet all I could consider was to gaze upon them longer, until I understood the purposes of the Lord in his makings, for I could not imagine these anything less than his designs, made at the dawning of the world.
Yet so enraptured was I by this profusion of life that I utterly forgot to collect some samples to send back to the museum! There is not time to return, as we already fall behind our estimated itinerary and intend to arrive in Serhmun in two days. And with no specimens - not even a single sketch - of course I can describe none of them for the scientific establishment.
And yet, somehow, I do not find this missed opportunity as great a grief as it may have been. Once I would have feared what this great gap in knowledge would do to my career; even but two days ago I would have thought “Surely my failure to catalogue this environment, should it become known, would destroy all my credibility as a scientist.” Surely I would have worried that another would pass through and publish before me, and steal the credit that should rightly have been mine, and that I would spend years upon years in resentment and shame, all for a few missed samples. And then I would have argued with myself as to whether I even desired such recognition, for have I not myself complained that the museum is staffed with self-aggrandizing busybodies? Have I not discarded so many publications as puerile, fraudulent, untrustworthy? Ah, the sentiment I bear the establishment has certainly been turbulent, and yet I still long - or longed - for its admiration.
But now I do not worry. Tonight it seems acceptable to bear whatever concern I have for my and science’s future within myself, and to leave the jungle and all its novel plants alone. Indeed I think that even if I had them before me now I would struggle to describe them. In that place it seemed as though understanding needed not be tempered by language; what was existed, without the need to be supported with context.
I write this in the first village we have seen since that forest. It is small and the people here are primitive, but my guide nonetheless procured wine as dark as muscle and I drank thoroughly. I have eaten, and twilight falls, and for now these things suffice.
Addendum 6000-1: On 18/06/2018, Foundation Agent Yuan Bǎi was reported missing by her partner Foundation Agent Ren Ling during a routine investigation of a property in Khorgas, Xinjiang Province, China. A search of the area performed a day later did not find any trace of her or suggest any reason for her disappearance. However, 25 days later, Agent Yuan contacted the Foundation from Bole, Xinjiang Province, China, requesting retrieval. She declined to discuss the events of the period in person, but provided the Foundation with her body camera. A transcript of the footage from this camera, covering this time period, follows.
Video Analysis: SCP-6000
Date:** 18/06/2018 to ~13/07/2018
Note: This transcript has been abridged, with extraneous speech and repetitive sections removed. A full transcript is available upon request.
Day 01
Agent Yuan switches on her body camera. She and Agent Ren is standing along the edge of a gravel road, with the vehicle parked beside her. Ahead, the road is gated to prevent vehicle entry.
Agent Yuan: Huh, these fellows really are rural, aren’t they.
Agent Ren nods, and both proceed along the road. The surrounding environment is semi-arid, dominated by dirt and grasses. However, as they continue walking, the ground begins to descend, and the vegetation changes to include some xerotolerant shrubs. As they walk, they carry on a conversation, presumably begun during transit, about the potential future influences of AI development on political thought.
To the left of the road, a dirt path branches off. The agents stop at this point.
Agent Yuan: Now, I suspect this just joins up on the other side of that curve. I’ll go down it a little ways - you want to dart around to make sure that it actually does connect?
Agent Ren looks around, but apparently does not notice anything of concern.
Agent Ren: Okay, I’ll check. If it’s not in 100 meters, I’m coming back.
Agent Yuan: Sounds good.
Agent Yuan proceeds down the dirt path and into the shrubs. The path does not reconnect with the road within 100 meters; however, Agent Yuan does not turn back, but rather continues to follow the path. The slope of the ground increases, and it is clear that the depression into which Agent Yuan is descending is large. Possibly due to the slope of the land, there appears to be greater availability of water here than near the road, as the vegetation grows more lush and herbs begin to fill the spaces between the shrubs.
Agent Yuan’s radio crackles, and the voice of Agent Ren is heard.
Agent Ren: Bai? Bai, it’s been an hour since you were supposed to come find me. If you don’t respond to this, I’m assuming you can’t and I’m calling you in as missing.
Agent Yuan ignores the transmission, and her radio picks up no further signals. After approximately 2.5 hours of walking, the vegetation begins to include small trees and undergrowth indicative of an ecotone between shrubland and forest. She has not spoken since separating from Agent Ren.
Over the next several hours, the environment grows more humid and more vegetated. Tree height and diversity increases, although the understory reaches a maximum coverage and then begins to decrease, likely due to limited light. Tree genera identifiable include Larix (larch), Pinus (pine), Cedrus (cedar), Cupressus (cypress), and Ficus (fig). The canopy height and composition at this point resembles that found in East Asian and Pacific temperate rainforests. The forest floor and understory is dominated by large ferns and grasses.
When night falls, Agent Yuan halts in her travel and begins to construct a nest out of leaf litter and organic debris at the base of one of the conifers. She settles into it and appears to sleep.
Day 02
Agent Yuan rises slightly after dawn and continues along what appears to be her heading from the previous day. The trail she has been following peters out after approximately an hour of walking; however, the undergrowth is thin enough that it does not inhibit her movement.
In the early afternoon, there is a flash of light from ground level to Agent Yuan’s left.
Agent Yuan: Hello? Is someone there?
She draws her sidearm and investigates the source of the light. It is revealed to have come from a cleft between the buttress roots of a large Ficus. Within this hollow has been deposited a loosely-woven undyed cloth, a rectangular frame of deer or elk antlers, and a shallow copper alloy bowl. Agent Yuan lifts and examines all the objects, but there is no indication of who placed them there nor their intended purpose.
Agent Yuan appears to consider something for several minutes, then uses the antler frame and the cloth to construct a rough frame pack, into which she places the bowl. She rises and continues on her previous heading until nightfall, whereupon she makes a nest similar to that she created the previous night and sleeps within it.
Day 03
Agent Yuan spends approximately 4 hours retrieving, examining, and discarding Araucaria cones that have fallen to the forest floor. Initially, she examines each cone individually; however, after approximately 30 minutes, she adopts a technique involving gathering a large number of cones into a pile, after which she sits down and skims through the cones en masse. She eventually selects one cone on unidentifiable criteria, which she places into the pack.
Day 04
The forest floor community has shifted from being grass-dominated to being dominated by clubmosses and ferns. The understory comprises seed ferns and cycads in addition to small conifers and broadleaved shrubs. Based upon the relative position of the sun throughout the day, Agent Yuan has been travelling in an eastward direction. Her pace has slowed compared to the previous three days, and she spends most of her time examining various flora, organic debris, water bodies, and rock outcrops along her route.
An epiphyte observed by Agent Yuan upon the bark of an unidentified tree. The broad leaves with pinnate venation indicate a taxonomic placement in the Dicotelydoneae. The purpose of the epidermal spines is unknown, as no herbivore presence has been observed so far in SCP-6000.
Day 12
The forest begins to open out into a wide valley, through which the canopy layer of the forest can be discerned. The silhouettes of the emergent trees indicate that the majority of them are in the Araucariaceae family, despite its members being largely restricted to the Southern Hemisphere.
The terrain can now be seen more clearly and has a clear karst topology, with large calcareous outcrops and scowles scattered among the trees. Agent Yuan looks to her left, where a karst spring giving rise to a small stream can be seen.
Agent Yuan: Well? Shall we?
She begins to energetically follow the stream downhill.
Day 14
Agent Yuan briefly emerges from the canopy and observes an apparently dolomitic cliff face with the river she has been following running by its base. There are many caves and horizontal clefts pitting the rockface, two of which have small springs forming waterfalls within them. Agent Yuan descends to the riverbank and crosses. She navigates up the talus slope to the base of the cliff and begins to pick her way along it. The terrain is slippery, forcing her to slow her pace.
Eventually, she manages to scramble up to a shallow ledge running horizontally along the cliff face. A large crack divides the ledge and cuts into the cliff; Agent Yuan examines the entrance, then enters it, finding a small cave with a pebbled floor. The cave contains evidence of previous habitation: there is a fire scar near the entrance and several finger flutings along the walls, as well as a small clay pot sitting near the fire scar.
Agent Yuan removes from the clay pot a scroll, and unfurls it to reveal approximately a page of writing in the Old Novgorod dialect The substrate appears to be made from the bark of a young conifer, which has been peeled, smoothed, and flattened. The writing has been incised into it.
The text of the manuscript reads as follows:
Lord, guide my thoughts, for I fear for my children. That is what I continue to think of, today: that I have now been nine days in the wild, when I should by now have returned to them, to bake them bread and stew them meat, and comfort them in their distress.
And they should have cause to be distressed. For the rumour of war has surely drawn closer still since I have become lost here among the trees. Not since the days of my grandmother has there been such mistrust between our princes. Not since the days of my grandmother have we all, slave to boyar, had such reason to expect a sudden call to lend arms, and a sudden rise in taxes such that our granaries will lie empty.
And now that I think of her, I wonder if she felt the same. If her own children, my mother and uncles, were always in her thoughts, and her prayers filled with the desire not even that they should grow up strong but that they should grow up at all. Not that their lives should be upright and holy, but that they should have them at all.
And even should our prince make peace, will it be a peace that I would recognize? How do I know that he shall not sell out our lands and forests to the Yem? How do I know we will not be made to pay their tribute, and they will not send their lords to cut our trees and buy our livestock, until we are in poverty?
And yet, my children will not need me the less should these things happen. My grandmother did not need her family the less, as she told me. So should I find my way back to them, I cannot change the mind of the prince, but yet I can pray. I can spin them thread regardless of the shadow of war, and they will need to be clothed. I can tend the goats even though I be afeared, and they will need milk and meat.
My grandmother showed me these things when my hands were small. Is this how she survived her youth? Surely it must have been.
I hear you, lord, and your meaning. I keep going. Though home perhaps be strange, I keep seeking it.
A bioluminescent organism observed by Agent Yuan among the leaf litter. Its taxonomic placement remains uncertain.
Day 17
Agent Yuan runs along the upper surface of a thick (~2 m diameter) branch. Her bare feet are visible at the bottom of the frame. The lateral surfaces of the branches are thickly colonized by ferns, mosses, fungal thalli, and leafy epiphytes. Although the camera is pointed downwards, the ground is concealed from view by a thick layer of mist occasionally broken by the crowns of canopy trees. She can be heard laughing.
An organism observed by Agent Yuan upon the bark of a cypress tree. Its taxonomic placement remains uncertain.
Day 24
The terrain has become very waterlogged, necessitating a dramatic decrease in Agent Yuan’s rate of travel. She navigates between small “islands” consisting of proximal root masses and consolidated organic material or limestone outcrops. The understory vegetation appears limited to small bryophytes up to 20 cm in height. The canopy vegetation is a mixture of woody and scale trees with diameters estimated up to 15 m; occasionally, large achlorotic spire-shaped structures are also visible, although Agent Yuan never approaches close enough to one for further identification to be possible.
On all previous days, Agent Yuan ceased travel slightly prior to local sunset (it is noted that the daylength in SCP-6000 has been slowly decreasing since Agent Yuan’s entry, with the time between successive sunsets currently approximately 21.5 hours). However, this time she continues through twilight and into full night.
Day 25
The video feed gradually brightens over a period of approximately 20 minutes. Agent Yuan kneels facing a body of water that extends to the horizon. The shore is sandy, and many dark, mushroom-like protrusions extend into the shallows. She holds the bowl obtained on Day 02 in both hands. It is partially filled with a dark, opaque liquid.
Agent Yuan: We were resting as the night fell over us, curled up there in the crook of one of those great arms. [laughs] “We”, I say, when all along it was just myself, doubled. Myself and all the other parts, that I never thought of, that I still doubted and feared. My human self and animal self, separated out in my consciousness. But in that moment, the two turned each to the other, and I said - the foxfire was all kindling, down there in the mists and in clusters up the bark, and I said - “it looks like a city,” I said.
And it was. It was suddenly streetlights, and tall towers, and people crawling around down through the crowded streets - and it remained the forest nonetheless, the towers shadowing them were sequoias, and they bought food from stalls that were clusters of sprouting mushrooms. The forest is the city, and the city is a forest.
We never think of it like that, do we? It’s always “here is the wild, the natural, and here is the built”, never-the-two-shall-meet, and we forget that we are the creatures who build. It is as innate to us as flight to birds. Though we say our technologies will ruin us, and our societies will ruin us, they haven’t yet. Why should they? It is human nature, to want a world easier for our children. There is no line. Between the natural and the man-made there is no war. [laughs] There never was a war. It was always us, and it always will be us - each generation, ideally adapted to their parents’ world. We evolve only to evolve further.
Agent Yuan: And so here I am. I’ve found an ocean, here where there cannot be an ocean. But I brought it with me, carried it in this bowl, in the atria of my heart, since that first droplet in the primordial sea. The endpoint of an unbroken chain of beings and mistakes and near-misses. The world almost ended before, in the Permian, in the Ordovician, but it wasn’t enough. [laughs] And I fear - what, some indescribable dependence on technology? As though my ancestors never depended on their hoes, nor the crinoids on the reef. As though time before the current is holy, and time proceeding from it debased.
How arrogant, to draw the line there. How needless, to borrow shame simply for being as humans always have been.
Agent Yuan: So I’ll go back, and - Jianyu and I have been thinking about children. I will bear them with the body I have only because of a single ancestor and a single virus, and they will grow up, and learn things I never dreamed of knowing, and I will be afraid. They will be heading into a future filled with new and strange technologies, unknowable to me - and their children, and their children - and I will fear that it is too indulgent, too unnatural. Just as my grandmother feared for me, and her grandmother for her, back and back and back. And what could be more natural than that?
Agent Yuan lifts the bowl to her face and tilts it towards herself.