Phenomenon Cloud-96 “远行症候群”
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }





这便是那个视频的全部内容,你面不改色地看完了屏幕上一行又一行闪过的文字。看完视频后,你点开了这个视频的发布者的主页——这个发布者名为“Farer847A1”,总共发了两条视频,于是你点开了另一条视频。

这条视频明显是公开的,其中的内容让你皱起眉头。

About 5 minutes later…

很明显,这个视频中蕴含着大量隐藏信息。于是你将整段视频下载下来,并将中间的呓语部分音频单独提取。

提取后的音频波谱中呈现出几个数字:12250825。

而中间闪过的画面被你单独裁剪下来,每个画面都有一些零散的字符,你将画面重叠后沿从左到右、从上到下的顺序排列得到如下字符:

U2FsdGVkX184N4QRslmnSLcO76y7LuTrblpZj7Qb8nYGAFrzf/O5uKJ9qQTwgXLh

除此之外,你在视频的最后一帧中发现了一个在黑屏中的一个灰色的单词:“far”。

你将那串字符放入解码器,试探性地将“far”作为密钥填了上去,随后依次尝试了AES、DES以及其它一些,只有AES得到正常结果:“46-61-72-623-61-632-64-73”。

这看起来没有任何意义。

于是你放下了它,去干了些别的事。

在看完一个调侃九键与二十六键间差别的视频后,你想到了什么,随后返回,将那段字符复制下来,并将其中的“623”改为“6c”,“632”改为“6e”。

这看起来是一串十六进……

Warning:connection missed
Warning:connection missed
Warning:connection missed
Warning:connection missed
Try to debug




时间点已回归正常坐标。

来自时间线外的干扰已终止。




讯息来源:UNC4后室分部
主题:NULL

我们对极光原发生的特殊现象做了进一步调查,并从多种猜想中筛选出最可能的一项假说,并尝试通过实验进行验证。

我们将这一假说称为“中心引力法则”。具体内容如下:

在发现Phenomenon Cloud-77后,我们对“层级”与“组成元素”间的关系展开了探究。结果表明,“层级”对“组成元素”存在一定吸引作用,同时“组成元素”彼此之间也存在吸引作用。依据前厅恒星形成理论,我们提出如下推断:层级本身是“组成元素”相互吸引并达成某种特殊平衡后的产物,因此每个“层级”必然存在一个“核心”以维持周边“元素”的正常运转。该“核心”可以是一处标志性建筑、一个概念,乃至“平庸”本身。

在以标志性建筑作为“核心”的层级中,我们观测到一条难以察觉的规律:No‑Clip通道通常建立在标志性建筑附近,且距离该“核心”越近,建立No‑Clip通道的概率越高。此规律或可推广至所有露天及尺寸不限的层级,但该推论尚未获得实证。

我们对具有标志性建筑的多个层级进行了相关实验,最后的结果证明了我们的猜想。但有一例例外——一名志愿者在切出后,到达了一个距离标志性建筑超过万米的坐标,这无疑说明:即使切出至“中心点”的概率极大,但切出至极远处并非没有可能。

我们在尝试通过一些方式更改“概率”,以进行对层级更远处的探索,我们希望能够临时获得一台现实稳定锚以进行更多尝试。

你将监督者们的想法做了一些加工,将它们发送给UNC4后便登出通讯系统,打开了backtube打算浏览一些视频以娱乐。

一个视频引起了你的注意,这个视频的标题是“Searching for the end※”,而封面则由一系列难以看懂的图案拼凑而成。

你点开了视频,视频有一分42秒,里面的内容绝大多数是一个人的行走,能够清晰地听到他的脚步声。而后30秒视频内容出现了些许变化:一直盖住整个视频的、重复的雪地变得凹

ERROR
ERROR
ERROR
ERROR



远离远方

远离远方

远离远方

远离远方

远离远方

远离远方

远离远方

远离远方

远离远方

远离远方

远离远方

远离远方

远离远方

时序错乱时序错乱信息容纳上限已达140※※※※※※在为何的清晨落下遥远的帷幕,不可寻之地藏匿于时之末流,111,流水向西流淌,流水向东奔腾,礁石被流水冲刷。物体运动是相对的,水流清空剩余干涸河床,水流重新灌满河床。大约140亿左右立方,光年是最大容量,本源宇宙即是宇宙本源,我不知道从西方奔来的东方过客为何向着北方行走,如同无人知晓地球是不是平的,地球的界限是什么。宇宙是有边无界的,后方宇宙不是宇宙,边界之外是层层叠叠的边界,遥远的远方传来遥远的远方传来遥远的远方传来一展歌喉,从今至古我是从天上掉下来的,过去与未来有关,三位一体是世界本源吗。我不清楚,或许那是唯一的答案了吧,呵呵呵从无如此的日出美丽,从垂直于墙面的孔洞中透出答案。


被遗失的线索(一)


地心说,日心说,古老的人类为何反复追问同一个问题:中心在何处?

※记载着亚里士多德提出“以太”,一种填充天体之外空间的第五元素。即使他无法证明,但坚信其存在。

如果把蓝色通道视作一片海,那么那些被标记为“无限”的层级,那些无限的岛屿——它们的外围,是蓝色通道的大海吗?

或者,什么都没有。

亦或是世界的尽头。

一片没有尽头的混沌之地,遗失者只得于那没有尽头的尽头中寻找尽头的无尽海洋。



你已迷失

你已迷失其中

你已迷失于遥远的虚妄之地其中

你已在不见尽头的旅途间迷失于遥远的虚妄之地之中

你已在不见尽头的旅途间迷失于向量乱流遍布的遥远虚妄之地之中






这看起来是一串十六进制代码,即“46-61-72-6c-61-6e-64-73”,只需要把其中的十六进制都换成十进制,或许谜底就揭晓了。

“70-97-114-108-97-110-100-115”。

或许还是那些字母的ASCII码?你尝试着将它们转换成字母,并拼在了一起。

















远行触界,近侯钟鸣

我们派出的探险队与我们失去了联系——就在他们切出后的47秒后。在失联两分钟后他们与我们再次恢复讯息,随后立即中断。

在短暂的恢复讯息期间,他们向我们发送了一条简短的讯息,标题为:“远行触界,近侯钟鸣”,并伴随着一条长达九小时的探索视频,这很明显有些古怪。

我们将那条讯息放在了下方。





失踪报告


记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失记忆遗失

被遗失的线索(二)


4oCc6L655aKD5LmL5aKZ4oCd5piv5bm/
5LmJ6L655aKD5LmL5Zyw5pyA6Z2g6L+R
5Lit5b+D55qE5Yy65Z+f77yM5LuF5Zyo
5LiA5Liq5Z2Q5qCH6L206LaF6L+HMTIy
NTA4MjXnsbPml7blh7rnjrA=


时间点检索成功,正在正常跳转……





现象编号 Cloud-96

等级 6

分类:永久性 不可控 未探明

区域:任意层级极远处

形式:崩坏

描述

Phenomenon Cloud-96,暂称为“距离现象”,亦称“远行症候群”,是近期被确认的一类异常现象。目前关于该现象的全部信息均来源于一支失联探索者小队传回的部分影像资料。由于影像内容可能受到未知因素干扰,与实际情况存在偏差,该现象的相关细节暂不对公众开放。

已知“距离现象”持久性地作用于所有层级。但在距离层级“中心”较近的区域,其影响幅度趋近于可忽略水平。只有当流浪者与“中心”的直线距离达到某一阈值1后,现象的影响方可被明确感知。

在受“距离现象”影响较为显著的区域内,电磁波的传播表现出高度不稳定性。所有在该区域内录制的影像资料均会出现显著的信号失真,伴随频率中等的噪波干扰及周期性花屏现象。

值得特别关注的是,受“距离现象”深度影响的流浪者会诱发一种来源不明的“前进”冲动。该冲动的强度随现象作用加深而递增,但其最终指向的后果尚未可知。基于现有安全准则,当流浪者观察到周围环境出现纹理剥离、色彩偏移或空间不连续等崩坏前兆时,应立即折返,直至环境恢复稳定状态。

“距离现象”的作用强度可划分为多个递进阶段,具体分类及特征如下:

阶段一

该阶段表现为间歇性的视觉信息缺失:画面中随机出现区域性的像素块消失,缺失区域呈现为均匀的灰色或黑色平面,边界锐利,无过渡。环境声音中开始叠加频率不稳定的噪波,噪波强度随时间无规律波动。

部分物品在该阶段已表现出功能异常。已知受影响的物品包括:

  • 皇家口粮:营养成分的释放机制紊乱,摄入后无法提供预期的热量与饱腹感;
  • 寂静汁液:消音效果衰减至可忽略水平,无法抑制周围环境的声波传播;
  • 指向树脂:遇水后不再稳定指向出口,运动轨迹出现随机偏转或原地振荡。

上述异常的具体机制尚未明确,但所有异常均在流浪者远离层级中心后出现,且随距离增加而加剧。

阶段二

此阶段的环境视觉呈现出现显著的RGB通道偏移:红、绿、蓝三色通道在空间上发生错位,导致物体边缘出现彩色重影,偏移幅度随距离中心增加而增大。噪波强度上升至可干扰语音识别的水平,背景中持续存在高频电磁杂音。

同时地形几何结构开始出现局部故障,具体表现为:

  • 地面随机隆起面积小于1平方米、高度在9至15米之间的锥形或柱状山峰,其出现与消失无规律可循;
  • 地表网格状凸起,呈边长约0.2至0.5米的棋盘形貌,凸起高度约5至10厘米,行走时产生非连续触感。

此外,处于该阶段的流浪者丧失正常入睡能力。

阶段三

该阶段流浪者的空间位移呈现非连续特征。具体表现为:单次迈步动作可导致位置坐标发生数十米至上百米的瞬时跃迁,中间位移过程完全缺失;跃迁方向与预期行进方向之间无必然相关性,可能出现横向、斜向乃至反向位移。

周围环境的视觉呈现出现显著的“丢帧”现象——画面以离散的、不规则的间隔刷新,相邻帧之间的运动轨迹断裂,物体呈现跳跃式位置变化。该现象或许与电磁波传输的间歇性中断有关,但无法完全归因于信号衰减。

阶段四

该阶段中,物品的空间表征发生解体。具体表现为:物体的纹理贴图从其几何模型上剥离,以平面形式悬浮于原位置数米之外,贴图方向与观察角度无关;物体的碰撞箱与视觉模型之间失去对应关系,流浪者可能穿过可见物体或撞上不可见障碍。

流浪者的动作输出出现显著的非连续化。行走、抬手等基本动作呈现为离散的“卡顿”状态——动作在时间轴上被分割为若干静止帧,每一帧停留0.5至2秒后瞬移至下一姿态,中间过渡动画完全缺失。该现象与流浪者的意识感知无关:流浪者自身无法察觉动作的中断,但外部记录设备可明确观测到。

处于该阶段的个体已不具备自主折返的能力。任何继续前进的尝试均可能导致空间定位彻底丢失。

阶段五

对于该阶段的具体情况,我们正在进一步解析视频以进行编写。

应对方式

缓解:
  • 无法缓解
  • 远离距离层级“中心”过于遥远的区域
加剧:
  • 尝试探寻远处


AltyType将手从键盘上剥离,伸了个懒腰后继续点开那份视频录像,对着其中的事物做着笔记。突然,他发觉视角远处出现一片黑色的条形马赛克,于是他开启倍速,看到了那一条黑色越来越厚,覆盖了整片天空,随后视角彻底定格。

那种黑色马赛克不像是原本存在于这一视频中的事物。

于是AltyType上报了这一情况,闲了下来,去Backtube上刷了一些视频。

等到一小时后,一份被修复的录像文件被传来,AltyType立刻打开,拖到了八小时处,随后他看清了那黑色马赛克的背后是什么——

那是一堵直拔云霄、极其破碎、表面布满垂直于墙面的巨型孔洞的高墙。日光透过孔洞,透过屏幕,照在了AltyType的双眼上,映出那堵仿佛世间一切错误化身的高墙。




Connection Accepted!
已接入M.E.G-Cr Level Cloud-xxx 通讯部



您有一则新的讯息!

> Receive?(Y/N)

> Y

Message Transmitting……
将等待升华为一种动态的实践,即可构筑生命根本性优势的基石








你将监督者们的想法做了一些加工,将它们发送给UNC4后便登出通讯系统,打开了backtube打算浏览一些视频以娱乐。

一个视频引起了你的注意,这个视频的标题是“Searching for the end※”,而封面则由一系列难以看懂的图案拼凑而成。

你点开了视频,视频有一分42秒,里面的内容绝大多数是一个人的行走,能够清晰地听到他的脚步声。而后30秒视频内容出现了些许变化:一直盖住整个视频的、重复的雪地变得凹凸不平,且出现类似Level 1.1第二阶段的色彩分离,然而拍摄者似乎并未察觉到这些,继续往前行走。

看完视频后,你又反复观看了好几遍,你的直觉告诉你这个视频有些隐藏的要素没有被你注意到——于是你将视频上传到一个剪辑软件,随后在后三十秒与前七十二秒的交界处找到两帧图案,发现了一些奇怪的画面。

第一帧的画面是三行字符:

53 74 61 79
49 6E
43 65 6E 74 65 72

而第二帧则是一个放置于纯黑色背景上的图案,整体呈现为一个被框在正方形中的时钟。

你返回视频,抱着寻找更多线索的心态打开了简介,简介里只有一行字符:“OFFlQ2Y3YlIwdHU=”。而视频的发布者只发过这一个视频,且用户名完全由减号、下划线和等于号组成,无法解密。

这很明显需要解密,于是你先破解了那个源于视频中的谜题,那很明显是十六进制代码。将它们转化为十进制后,你得到了一连串ASCII码,而它们被转化为对应字母后可以组成三个单词:"Stay""In""Center",不过这看起来没什么用……

于是你把目光放在第二行字符上。

你先考虑了AES等加密方式,但分别将三个单词进行各种拼接后作为密钥仍然无法得到任何信息。突然,你灵光一闪,想到了之前你的某次解谜经历,于是将这串字符放到了Base64解码器中,得到了字符“8QeCf7bR0tu”,这很明显是一个backtube视频id。

你访问了这个视频,视频本身是不公开的。

???
2036年1月14日 0:00 2▶





0:00/3:51
————————————————————————————



© The Cloudrooms云室维基 (2022-2026) - 本站不遵循CC协议。