: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 }
生存难度:生存難度:
等级等級 2
- 安全
- 空间轻微异常
- 实体绝迹
level NO-191 是后室NO层群的第191层,发现于2028/7/24。
描述
Level NO-191 的第一幅照片,石板结构编号为B-02。
Level NO-191 的另一幅照片,石板结构编号为X-05。
概况与构造
level NO-191 是一片近乎纯黑、无重力1的虚空,空间极其广袤,目前未探测到边界,已探测范围半径有5km。流浪者在此会失去重心,仅靠反作用力移动。空间由无数2半透明石板构成,各石板在三维中错置排列,有异常的规律感。大多数石板为矩形或规则多边形,大小从1dm^2至6m^2不等,边缘散发微光,厚度介于 1-2cm之间,质地似磨砂玻璃,硬度较硬。石板边缘较锐利,容易划破皮肤,应当注意。少数石板边缘会散发橙色光芒,原因未知。部分石板有动态性,运动方式包括维持旋转、线性移动或无规律飘动。同时,一部分石板会组成一种特殊结构,具有一定特性。下表收录了目前已发现的8种石板结构:
| 编号 | 结构构造 |
|---|---|
| B-01 | 沿一条直线线性延展,最长达 480m。 |
| B-02 | 六边形石板组成一个平面,面积最大可达300m^2,具有轻微吸附力。 |
| T-03 | 三排石板交于一点形成“T”形,焦点有较微吸力。 |
| X-04 | 石板呈放射状向多面扩散,中心可能转动。 |
| X-05 | 长条形或铅笔形的石板由中心辐射组成一个球状,是为数不多的能由流浪者改变其运动状态的石板结构之一。 |
| R-06 | 单个或多个石板围绕某一中心转动,周期均为6分22秒. |
| S-07 | 石板呈蛇形排列,有微弱斥力,可辅助行进。 |
| Δ-08 | 石板组成中空的柏拉图立体,内部有较强离心力,尚不明其原因。 |
部分地区存在“断点”:视觉上能看到存在石板,但接近到某个距离3后会发现石板并不存在,这种现象可能导致流浪者在行进时失去定位与转向能力。可使用激光测距仪等设备判断“断点”。
感知体验
空气存在但静止,偶有流动,成分与前厅类似。声音传播正常,但因为环境开阔,回声延迟较大,一般为 1.8 至 2 秒。不同石板结构中反射声速有差异,在不同石板结构交界处可听到多重回声。
除石板边缘发光外,本层级中没有其他任何已知光源。照明设备均可正常使用,但亮度普遍降低了15%~30%。
行动与导航
由于无重力,无法行走或跑动,最基本的方式为轻推附近石板,但与大部分石板的接触不会对其产生反作用力,其原理未知。部分石板表面有微弱吸附力,可短暂维持身体稳定。使用带钩链、旋绳枪、物理扩展特工装备有助于行动。
实体
目前未发现任何已确认的实体。
基地、社区和前哨
目前未发现任何基地、社区和前哨。
出入口
已知入口:
- 在任意层级中梦到自己迷失方向可能会进入该层级;
- 在level NO-4的任意房间内堆积板状物超过10块可能会进入该层级;
- 在level NO-12切入某一面特殊墙壁4会来到该层级。
出口:
- 多数探索者于持续向某一方向漂行超过6小时后切出至随机层级;
- 在某一案例中,一位流浪者误入一个未被确认的石板结构后进入level NO-41,随后失联。
-
- _
探索者编号 R-308“Lex”与 M.E.G. 中枢通信摘要
LEX/191-NO-001
发件人:s.liamdleif|R.xeL#s.liamdleif|R.xeL 收件人:ten.laiciffo|retneC-G.E.M#ten.laiciffo|retneC-G.E.M 时间:切出level NO-191后 +00:07:32 主题:刚刚离开level NO-191
报告总部:
我刚刚从level NO-191中脱离,方式是通过持续向某一方向漂行超过6小时。现在确认处于level NO-68。目前情绪良好。
当前准备在层级内进行8小时的短期探索后切出。稍后继续报告。
LEX/191-NO-002
发件人:s.liamdleif|R.xeL#s.liamdleif|R.xeL 收件人:ten.laiciffo|retneC-G.E.M#ten.laiciffo|retneC-G.E.M 时间:切出level NO-191后 +01:57:22 标题:【紧急】不明切出路径触发 / 我为何现在在level NO-38?
报告总部:
我刚被强制切出,但我没有触发任何出口。
我原计划从level NO-68进入level NO-37进行探索,但下一秒我就直接来到了 level NO-38。我之前在这层停留过,它不该和level NO-68之间有任何直接连接。
请核查记录。我担心我从level NO-191 带出了什么。
ten.laiciffo|retneC-G.E.M#ten.laiciffo|retneC-G.E.M
发件人:GEM.sisylana|K.yrokciH#GEM.sisylana|K.yrokciH 收件人:s.liamdleif|R.xeL#s.liamdleif|R.xeL 时间:切出level NO-191后 +02:01:34 标题:RE:不明切出路径触发 / 我为何现在在level NO-38?
Lex,
中心数据库确认你从level NO-68直接切入level NO-38的行为不符合正常层级过渡路径,除非遇到强信息源扰动或文象干预。
我们将会去level NO-68探查是否有新出口。你从level NO-191切出后是否感受到任何异样?或是否曾与某石板结构互动过久?
LEX/191-NO-003
发件人:s.liamdleif|R.xeL#s.liamdleif|R.xeL 收件人:ten.laiciffo|retneC-G.E.M#ten.laiciffo|retneC-G.E.M 时间:切出level SY-191后 +03:51:03 标题:再次切出:目前在level NO-8
报告总部:
我在切出level NO-38前尝试寻找陆地,现在突然来到level NO-8。
我现在比较确定了:我连续两次都跳入了编号比当前小30的层级。68 → 38 → 8。
我开始怀疑level NO-191 残留了某种传送型标记?或者,我被嵌入了某种逻辑。
LEX/191-NO-004
发件人:ga.liamdleif|R.xeL#ga.liamdleif|R.xeL 收件人:ten.laiciffo|retneC-G.E.M#ten.laiciffo|retneC-G.E.M 时间:切出level SY-191后 +05:46:32 标题:初步假设:“编号回溯律”存在
我刚做了个测试:
停在level NO-82小时未离开,结果被强制切出了,下一刻我在level NO-N22。这是-22,不是22。
这层不在 M.E.G.的数据库中。显然,我到了一个新层级,这里到处都是粘稠的彩色液体和膨胀的不稳定光球。我目前藏在一个球体后面,它反光但有温度,我想这地方的生存难度可能至少是……5e。
请立即更新:
任何离开level NO-191 的人,在此后如不在大约1.9小时的时间内内离开所处编号层级,将被强制切出至“当前编号减30”的层级。
ten.laiciffo|retneC-G.E.M#ten.laiciffo|retneC-G.E.M
发件人:GEM.sisylana|K.yrokciH#GEM.sisylana|K.yrokciH 收件人:s.liamdleif|R.xeL#s.liamdleif|R.xeL 时间:切出level SY-191后 +05:49:43 标题:RE:初步假设:“编号回溯律”存在
Lex,你在执行出色的研究。总部正在验证其他level NO-191 切出者的行为轨迹,目前已有至少2例证实类似模式。
level NO-N22未正式归档。若确认为高危层级,请优先保命,放弃记录,尝试一切可行方法逃出。
LEX/191-NO-005
发件人:ga.liamdleif|R.xeL#ga.liamdleif|R.xeL 收件人:ten.laiciffo|retneC-G.E.M#ten.laiciffo|retneC-G.E.M 时间:切出level SY-191后 +05:56:25 标题:如果我出不去了
报告总部:
情况不妙。我似乎无法离开level NO-N22。整个空间混乱无比,周围声音延迟超过6秒,方向感丧失。情况可能更糟,这里似乎是死区。
请使用我前面发送的数据更新level NO-191 条目——尤其是编号回溯律。它是真实的、可重复的。
如果有机会救我,我会等在这里;如果没有,请别让下一个人再经历我这一遭。
LEX/191-NO-006
报告总部:
我感觉我可能撑不到救援来了。这里的空间实在太过粘稠,我打算把这里命名为“胶域”。请尽快补充该层级的档案,哪怕只有一点。
我现在唯一关心的就是level NO-191的档案。如果档案修改完成了,请告诉我一声,哪怕我再也收不到。现在Wi-fi很不稳定,我不确定这封邮件还能不能传出。我可能要长眠在这里了,遗体也不会留下,请告诉我的家人,我会在天堂生活的很好……
是否查看?
生存难度:生存難度:
等级等級 unknown
- {$one}
- {$two}
- 强制切出入机制
描述
前面全都说过了,这里我们先突出重点。
编号回溯律
所有进入过level NO-191的流浪者,将受到一种未知机制影响,称为“编号回溯律"。
其机制如下:
一旦流浪者离开level NO-191,之后进入的任意主层级,若在1.91小时(约为114分钟,6870秒)5内未离开,则会被强制传送至该层级编号减去30的层级。
示例:
- 若你离开level NO-191后进入Level NO-85,并停留超过1.91小时,则你将被自动切入Level NO-55;
- 若进入的是编号小于30的层级,则会切出至负编号层级。
该特性不受层级安全性、出入口等任何限制控制,已知方式中无有效阻断手段。
建议与应对
- 使用精准计时工具并设立提醒。
- 在每一次离开level NO-191后记录时间,携带纸本或绑定辅助装置。
- 若连续触发,请尽量尝试切入非主层级。
- 尽快确定所在层级编号,如果是危险层级编号再加上30的结果,请尽量再1.91切出。
附录
-
- _
关于Level NO-191的特性“编号回溯律"的研究报告
编号:M.E.G.-TS-NO191/the-30CascadeRule-2025
记录员: Ira.T(M.E.G.时空特性调查组)
报告时间:2025年6月23日
保密级别:可公开传播
一、研究背景
Level NO-191被初步确认具备一种高度危险的后续迁移机制,即"编号回溯律"(The -30 Cascade Rule)6,引起了后室探索者在离开该层级后进入任意编号层级时的强制切出入现象。为此,M.E.G.于20年1月至3月期间对该特性进行了为期15日的追踪与模拟研究。7
二、研究目的
- 验证“编号回溯律“是否确实受限于“1.91小时"停留时间;
- 判定是否存在例外或中断方式;
- 评估其是否受层级类型、安全性、稳定性影响;
- 推导其可能机制以指导流浪者规避风险。
三、实验过程与方法
(1)受试组构成:
- 样本人数:27人(均为已切出Level NO-191的流浪者志愿者)
- 分组标准:
- A组:主层级+停留<19.1h(9人)
- B组:主层级+停留>19.1h(10人)
- C组:子区级或隐秘层级(8人)
(2)操作流程:
- 每组成员统一使用标准时计设备;
- 严格记录进入与切出时间;
- 使用心理标记测试追踪被动迁移时间节点;
- 若发生编号下降,记录目标层级编号与偏移量。
四、关键结果汇总
受试组 停留时长 回溯事件发生率 回溯偏移 是否主动可控 A组 <19.1h 0% N/A N/A B组 >19.1h 100% 固定30 否 C组 任意 0% N/A N/A 其他观测结果:
- 回溯过程不可中止,且发生前无显著物理征兆;
- 时间精准性容差为±30秒;
- 所有被回溯个体无一例外地在切出后短暂失忆(平均13~21秒),后恢复。
五、初步结论
- “编号回溯律”激活条件为:进入任意主层级后停留超过19.1小时;
- 该机制对子区级和隐秘层级无效;
- 回溯目的地为当前编号减30的层级,含负数编号;
- 不依赖安全性、稳定性及层级本身设定,具强制性。
六、理论推论
某些未知机制正在试图阻止探索者向更高层扩张。
七、附加建议
- 每次离开Level NO-191后,应尽快进入子区级和隐秘层级进行缓冲;
- 可设置“19小时警报程序”,配合物理闹钟、语言录音等加强提醒;
- 长时间团队探索中需轮流检查个体计时状态。
« Level NO-190 | Level NO-191 | Level NO-192 »


