: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 }
特殊收容措施:
常规收容房间(5x5m),在需要的情况下也可以减小收容空间,内置有可容纳30L左右的透明储水池即可,以便于观测。墙面需替换为单面可视窗,保证YHN-KHE-065在受到监管的同时无法观测到人类或人形物体。
同时为保证不被误食,收容中的YHN-KHE-065需以水与色素成5:1的比例混合,保证水体呈现鲜明的红色,并加入同比例苦味剂。该措施需一周一次,全程不得被YHN-KHE-065观测到人类或人形物体。
在此基础上请确保湿度检测器每时每刻处于正常工作的状态。
描述
发现地为德国布赖斯高弗莱堡地区,泉眼位于弗莱堡地标黑森林内部,占地约为一公顷。该项目的泉眼位于一处石坡下距离地面60cm一处人工开凿的平台上,水流顺着平台两侧的疏水口流入泉眼下方一处长宽均为3m的不规则圆形泉池,水下可见度极高,平均深度为2.3m。在自然光下池水呈现出靛蓝色,池底覆盖一层3cm的白色盐层。
特性:
- 该项目具有唯一性和整体性。
- 该项目在饮用200ml后在个体上完全生效,低于该范围的饮用该项目被确定均为有益且安全的。
- 该项目在饮用超过200ml后会使个体的肉体、精神产生固化,但收到致命伤害依旧会死亡,但在死亡后依旧存在意识并能进行活动,具体原理未知。
附录
该项目并无枯水期和丰水期,每日流量维持在0.03m³/s,其下有一处露天泉池,露天泉池下方联通黑森林地下水系,位于该项目周围的植物大多为草本植物,在对其进行测龄后发现■■■,
YHN-KHE-065距离市区较近,同时弗莱堡地区人民因习俗原因常年饮用山泉水,在派遣人员对当地地下水系和居民饮用水进行检测后,确认该项目连通地下水系,并在当地饮用水中检测出3%的YHN-KHE-065,因摄入含量有限,判断为无需进行干涉。
该项目最初是在一次布赖斯高弗莱堡地区常规微生物采集中被发现,一名微生物科学家偏离了常规道路,出于研究目的,他在偶然间提取了该项目的池水,并发现一种本该在极短时间内死去的微生物已然在该项目中存活了接近100年,而其他几种微生物的存活时间也远远超出常规寿命。
这不可思议的消息很快登上了德国微生物报刊,但很快被紧急撤下。随即该项目的样本被回收,YHN-KHE-065周边一公里范围被封锁,相关人员进行■■■■处理。
该项目的池水中含有一定量的微生物,但微生物的含量远低于其他自然水池,且缺乏更高级的捕食者,并未在池中形成任何形式的食物链。
除此之外,在该项目一公里范围内并未发现除鸟类外任意生物,即使捕捉到生物放在该项目一公里范围内,被捕捉到的生物也会在脱离控制后迅速逃离该区域。
周边的居民聚居地中,最近的村庄也位于YHN-KHE-065一公里外,在对居民问及该项目时,大部分居民都对此忌讳莫深,只有个别几位老人愿意解答并告诫前去交流的博士———“一定不要喝下去,那泉水已经被上帝抛弃了。”
YHN-KHE-065具有整体性的概念
在提取该项目的过程中,收到了多名人员反馈了诸如“倒不完”“这个小碗我已经倒了半小时了”等回复。在具体测试后,发现无论是用任意容器从YHN-KHE-065中取出的如YHN-KHE-065-1等其他附属编号个体,本质上都是该项目的不同表现形式,任何试图倒出的行为都被视为直接倾泻YHN-KHE-065,而被倒出的该项目液体会以不明原理的方式重新回到YHN-KHE-065中。
在确定了该项目的整体性和对周围环境进行考察后,出于保存和为周边居民的安全考虑,选择在收集足量样本(30L)后对该项目的露天泉池和泉眼进行爆破,确保在地面上无法目击到YHN-KHE-065并取用该项目。在爆破后连续一周对地下水系进行检测,确认到地下水系中含有的YHN-KHE-065含量并未产生变化。此后对该项目的野外管辖区域设立无人监控设施,并每半月进行一次水质检测。
该项目的管理难度相对简单,但根据负责该项目的研究员所说,YHN-KHE-065也许存在自我意识。
在对该项目的研究员A进行心理评估确认其心智正常后,根据其描述,研究员A在该项目周围进入睡眠状态后会在梦中固定见到一名身高70cm左右的昂撒女童,但该女童并不能观测到研究员A并做出反应,研究员A也不能对女孩进行任何形式的干涉。
出于安全考虑,对研究员A的鼻腔和肺部进行取样,确定其中含有微量的YHN-KHE-065,猜测为自然蒸发后被研究员A吸入,但摄入量小于阈值,仅对研究员A暂定进行“记录梦境内容”的要求。
因一些原因,对该项目的研究在前期搁置了一段时间,一直到研究员A的报告后才重启了对该项目的研究。
在对该项目进行饮用后,服用者表示其口感与普通的水差别较小,只是口感上相对水更加苦涩,适口性较差。
在饮用200ml之前,服用者的身体并没有明显变化,身体各项指标缓慢升高至良好水平,但在一至两天后再次缓慢回退至原先水平。
但在饮用200ml后,服用者身体上产生了一些新的变化,服用者身体各项指标上升至良好后不再衰退。对服用者的血液等体液进行提取研究,获得的血液等样本都展现了相当的活性,在观察一周后样本依旧与刚从体内提取时相同,后将这些样本重新注射回服用者体内,服用者也并未表现出任何不适。
为了得到更多的数据,服用者的小拇指被手术取下,取下后不进行止血,服用者的血液并未从伤处流出,应该从伤口流出的血液通过不知名的途径继续在小拇指中进行循环使小拇指保持活性,在试验结束后将小拇指接回服用者伤口处也并未出现不适。
饮用该项目的个体在存活状态下收到的任何非致命伤害都能在修复后迅速恢复,不会留下任何可能的后遗症,离体的组织结构也可以在不被破坏形体的情况下保持活性,无需外界进行营养供给
后续对服用者的头部进行钝器击打,在头骨粉碎性骨折、脑组织流出的情况下,服用者的呼吸、心跳等生命体征在几个小时内停止。但服用者在无生命体征、大脑破坏的情况下依旧可以行动,甚至能呼喊“救命”等意义明确的词汇。
在后续的观察中,服用者依然存在理智并能进行活动,但被钝器击打的头部并未恢复,缺少的组织在体外依旧能保持活性。但在观察14小时后,服用者已经无法表达任何语言,只能无意义的哀嚎。在为其进行手术修复头部伤处后,该服用者的生命体征也并未回升,并处于理智全无的精神崩溃状态。
即使在该项目的作用下,受伤部分能够保持活性直到进行手术修复,死亡的状态也无法改变,并在死亡后会一直收到致死伤害的折磨。在承受痛苦的同时,对该个体其进行■■伤害测试,经过检查后确认该个体依旧保持自我意识,推测YHN-KHE-065具有固化精神的特性
为了结束他的痛苦,将其送入焚化炉进行焚烧,但即使变成骨骼碎块和灰烬,服用者的残骸也依旧在以肉眼可见的幅度挣扎。
而彻底压碎成骨灰后,骨灰也依旧以一个人形整体的形态进行剧烈挣扎,仿佛依旧在承受着焚化碾碎的痛苦。
确认使用常规手段无法毁灭取用了该项目的个体后,为避免风险,即日起向上层递交申请对服用者残骸进行■■■■,在使用■■■■后,骨灰不再凝聚成人形进行挣扎,同时失去任何可用仪器观测到的活动。
为避免意外误食,特要求在YHN-KHE-065内滴加特质色素溶剂,以便减少意外,同时以便在意外发生后最快找出饮用YHN-KHE-065的个体并对其进行■■■■。
以下记录可能会对一部分人员产生不良影响,请酌情观看。
【20■■.■.■】
Mr.邵:为了确定YHN-KHE-065的具体作用,我们对附录1中的实验进行了复刻,但这一次我们使用了■■将我们的“志愿者”进行了复原,以此来提取到我们没有得到的信息。
【椅子挪动的声音】
Mr.邵:你好,感觉如何
员工■■:……我还活着?
Mr.邵:是的,你还活着,感觉如何。
员工■■:我感觉…度日如年,我好像在火焰里度过了,几千年几万年一样,我…都不知道我还是不是人类,我是吗?
Mr.邵:你当然是人类,不过在极端痛苦下的错觉会让你认为自己经历了相当长的时间……
员工■■:不,不,我看见了,我看见周围的一切都在褪色,时间被拉长了,我看见……大地在倒转,我…我融化了。
Mr.邵:剧烈的疼痛让你的精神遭受了毁灭性的打击,你的人格和精神不堪重负…产生了融化的错觉。但是别担心,在之后我们会使用■■■■让你重新回归正常的生活。还有别的能和我分享的部分吗。
员工■■: 其实在你们动手之前,我喝下那东西之后,我感觉自己好像…被诅咒了。
Mr.邵:被诅咒了吗,具体是怎么感觉到的。
员工■■:我感觉有什么东西在后面注视着我,但是回头只有那滩水,随着我转过头去,那种注视感不仅没有消失,还越来越强烈…我还听见有孩子在笑,但是那笑声…令我毛骨悚然。
Mr.邵:为什么这么说
员工■■:先生,我有两个女儿,孩子的笑声就像一串银铃,让你忍不住跟着笑。但那个笑声就像,就像是腐坏的八音盒一样,迫不及待的想要享受我接下来的惨状…即使是现在,我也感觉自己好像被从水里捞起来一样。
Mr.邵:她还在诅咒你吗?
员工■■:我不清楚,也许…嗬嗬
【在怪异的抽搐中,员工■■开始向下滴水,20s后化作一滩水渍】
Mr.邵:被诅咒了吗……来人把这些液体收集一下我等会还要用。
在该记录一周后,YHN-KHE-065突破收容。
突破原因是因为蒸发后气体从天花板渗入,在天花板内部积蓄大量液体,这些液体在一分钟内将所有与收容YHN-KHE-065的设施相连的区域淹没,收容设施内未及时撤离的42位工作人员被迫饮下大量液体,并在支援到来前一直处于溺水状态。
在■■■■■后,该收容设施解封,42名工作人员在事后均未完成心理测试,在递交申请■■■后,以上42名工作人员全部■■■■,在此后YHN-KHE-065的危险评级提升,并加装湿度监控器,需每时每刻保证湿度监控器处于运作状态。
【20■■.■.■】
Mr.邵:现在是柏林时间20■■.■.■,很不幸,我们这里的人除了我差不多都完蛋了,幸运的是,我还活着,但我能做什么呢,我亲手封锁了收容区域与外界联系的大门,防止任何一滴那个东西流出来,但我能感受到门后传来的撞击声,也许是我的同事还是别的什么东西,我都■■的不在乎。
Mr.邵:抱歉,我不应该爆粗口,这个记录可能会被收录起来,希望后期能给我去掉这句脏话……我又在说什么见鬼。但我确实能感觉到,有什么东西在看我,她在笑,声音还真的就像破烂八音盒一样……里面的人别撞了我求你们了我真的受不了了……来个人和我说说话吧……
Mr.邵:为什么会是我遇见这种见鬼的事情,我那么努力的读书考出来才不是为了遇见这种事情……明明说的时候告诉我这玩意特别有价值,可能是不老泉这种好东西,但是想想要是真那么好怎么可能轮到我……我明明为了这些付出了一切,为什么要这样对我,告诉我啊为什么……滋滋我只是……想得到滋滋……,仅此……而已。
【记录中断】
【20■■.■.■】
Mr.A:在那件事发生的时候,我前往了其他分部进行学习,我想我是幸运的。但在那之后这处区域会有一段时间只有我一个人进行工作了,我只希望不会太久。
……
在进行了■■■■后,这里回归了原本的样子,新刷的墙还透着油漆的味道,灰色的地板锃亮,监控设施还在嗒嗒作响,好像很多人只是离开了一会……只是一小会而已。
回来的时候,我看见了门外的邵,他已经不再适合在这里工作了,我想他最终的归宿恐怕是某个疯人院,也许没有逃走,在门内和大家一起淹没对他来说也是一种解脱。
邵的努力早在来这里之前我就有所耳闻,除了急功近利了这一点,他其实是我羡慕的样子。
但那么努力,却最终在这里一无所有。
不该是这样的,我抬头看向它,那一汪清泉。它也回望我,水面淡淡泛起水波,八音盒也许今天不在家,我想。
我检查了湿度检测仪器,他还在正常运作,但我还是觉得肺里充满了水,像一个小时候玩过的充水气球一样,喘不过气。
一个人收拾了他们的遗物,部门里最小的才21岁,前几天才过的生日,我送他的马克杯都还摆在桌子上,上面画着丑丑的小熊,我内心泛起了一种酸涩,只是撇了一眼就给收了起来。
那么高的一个人,能收起来的东西原来只有这么一点,一个小盒子就能装下。
我又一次站在它的面前,午夜微寒,我梦见了它,但我不想了解她,所以我醒了过来,在凌晨三点的时候坐在监控室里。
我想了一宿,尽量让我的措辞严谨,不会被上级看出过多的私情。
爆破泉眼,单面玻璃,滴入色素,空空如也的环境。
我对你的过去不感兴趣,YHN-KHE-065,如你所见,我是一个凡人,会疼会老会死,但我不在乎,那42个人也不在乎。
所以啊,你挺可怜的。
我第一次抽烟,呛的我都流眼泪了。
设施里本来是不允许抽烟的,但我此刻需要一些调味剂,需要一些能让我保持清醒的东西,至于处罚……以后再说。
亮起的炽热中,飘起丝丝微苦的蒸汽。
唯独你,应该永远的孤独下去。
【记录结束】
« YHN-KHE-0064 | YHN-KHE-0065 | YHN-KHE-0066 »


