: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 }

项目名称:愿者上钩
项目编号:YHN-KHE-577
危险等级:SECURE
归档者:余于
特殊收容措施:YHN-KHE-577应被放置在长2.5米,宽0.5米,高0.2米的特制保险柜中,由至少一名安保人员负责看管,钥匙应由在收容室外面的负责看管的安保人员负责保存,每次使用需向站点主任提交书面申请。
描述
YHN-KHE-577从外表上看与普通的中国古代竹制钓鱼竿无异,竿体为一根长2.21m的黄色竹子,目前经检测用作竿体的竹子的品种疑似为淡竹,钓线总长 7.7m,两端分别连接竿头与鱼钩,鱼钩长1.2cm,值得注意的是YHN-KHE 577的鱼钩任何没有弯曲,YHN-KHE-577的异常在于其可以轻易的在任何水下环境(如水池,河流,水库,游泳池)中钓上物体(包括但不限于:鱼类贝类蟹类),即使是水里没有东西。
YHN-KHE 577最初被发现于中国(数据删除)的一名钓鱼主播手中,因为持有者的多次公开在社交平台上使用该异常,最终引起了协会关注,协会派遣特工前往调查后发现了YHN-KHE-577。
附录
检测YHN-KHE-577在不同环境下进行垂钓以确定其具体属性
实验条件:在长1m宽1m深0.8米的纯净水池中放入10条普通金鱼,实验员A使用YHN-KHE-577进行垂钓
实验录像:
实验员A(观察鱼钩):呃,我真的不用在上面放点饵料吗?
观察员A:就YHN-KHE-577目前表现的性质来看暂时没有必要
实验员A:难不成那些鱼会自己咬钓不成?
观察员:就以往的案例来看,大约五分钟内就至少会有一次“收获”
实验员A:好吧(将鱼钩甩入水下)
(二十五分钟后)
(试验金鱼并未对YHN-KHE-577产生明显兴趣,异常被认定为未生效)
实验报告:在后续的多次试验中证实YHN-KHE-577所垂钓的水域若是处于“被外界观测”情况下,其异常效应并不会生效,目前已尝试使用光学手段和声学手段进行观测YHN-KHE-577的垂钓水域,结果均会使异常效应失效。
实验条件:在长10m宽8m深0.8米的水池,其水使用未经过任何处理的(数据删除)地区的河水,实验员A使用YHN-KHE-577进行垂钓。
实验录像:
实验员A(将鱼钩甩入水中)
(两分23秒后)
一条浔鱼咬住鱼钩,产生的拉力引起实验员A注意,然后被钓上放入一旁水桶中
实验员A:在我刚刚钓上来的时候,我看见那条鱼死死的咬住鱼钩,我为了把它放在水桶中花了很大力气,而且在它咬钩的时候力量大的吓人,我不觉得一只鱼有这种力量
实验员A(再次将鱼钩甩入水中)
(三分钟后)
YHN-KHE-577突然产生了一股拉力,实验员A在受到拉力时明显产生了严重的惊慌,但在一番拉扯后,最终还是钓上了拉力的来源,但并不是用作实验的金鱼,而是一条长16cm的黑色鲤鱼
观察员B:虽然这水比较浑浊,但是这条鲤鱼不可能是从水里混进来的吧?
观察员A:这河水我们没有经过任何处理,但我们肯定会做数次检查以保证没有东西混入,你也知道我们不可能犯这种低级的错误。
观察员B:我也正是知道,申请放入侦查设备。
(实验员A将鱼钩放入水中,同时一个专门的声波探测器被放入水中,实时检测水中生物,在观察室的屏幕上一片空白,表示水中没有生物)
(十八分钟后)
观察员A:根据之前的实验来看我认为YHN-KHE-577的异常应该要在水下环境会不被观察的情况下才会生效,将设备回收我们再试一下
(设备回收,两分钟后)
YHN-KHE-577忽然产生了一股巨大的拉力,实验员A差点被拉入水下,最后身旁在安保员的帮助下才将拉力来源拖上岸,值得注意的是,即使承受了巨大的压力YHN-KHE-577的竹竿体都没有出现弯曲
拉力来源为一条1.6米的草鱼,即使已经死亡,其嘴部死死的咬住鱼钩
观察员A:老实说如果这么大条鱼,当初都没有检测出来的话,只能绝对不可能,所以说我这应该是异常的能力之一
(这此后的三十分钟里,实验员A总共收获了11次,收获的鱼的种类都是淡水鱼类)
实验报告:
经过几次试验YHN-KHE-577可以钓上的鱼的种类,跟所垂钓的水有一定的关系,比如说你只能在海水里面钓到海水鱼,也只能从淡水鱼里面钓到淡水鱼,YHN-KHE-577所钓到的鱼都是目前在地球上所发现的,在其后的基因检测和行为检测中皆发现没有异常,但是在数次钓鱼实验中,被钓到的鱼所产生的巨大拉力远远超过了那些鱼生物极限所能发出的力量,尚不明确其巨大拉力来源。
实验条件:在长20m宽15m深7米的水池中放入(数据删除)地区的海水,实验员A使用YHN-KHE-577进行垂钓,实验员A佩戴安全绳防止被拉力来源拖下水
实验录像:
实验员A(将鱼钩甩入水中)(2分45秒后)
YHN-KHE-577突然传来一股巨大的拉力,即使有所准备,实验员A依旧被这股拉力拉的跌倒,如果不是提前准备的安全绳实验员A极有可能被拖入水下,实验员A大声呼叫身旁的安保员帮助,安保员立刻使用特制的水下武器向引力来源射击,两分钟后引力来源被拖上岸
引力来源是一只2.4m的鲨鱼,因为安保人员的射击,在上岸的时候已经死亡,但是直到死去依旧紧紧的咬住鱼钩
实验报告:在多次实验中被钓起的鱼如果要咬住直鱼钩,直到被拖上岸的话,需要的咬合力远远超过了它们的上限,所以可以确定YHN-KHE-577拥有一定的现实扭曲能力及可能会对鱼类造成精神影响,尚不明确是否会对人类产生影响
实验条件:在长20m宽15m深7米的水池中放入(数据删除)地区的海水,海水再进入水池前进行五次检测以确保无生物混入,实验员A使用YHN-KHE-577进行垂钓,实验员B穿戴潜水服携带录音和录像设备,潜入水下近距离观察并记录 YHN-KHE-577鱼钩部分
实验录像:
实验员A(将鱼钩甩入水中)(3分21秒后)
水下突然传来一股巨大的拉力,,实验员A实验员A再次呼叫身旁的安保员帮助,安保员帮助实验员A拉力,直到3分钟后引力来源被拖上岸
引力来源为实验员B,实验员B在被拖上岸时进已经窒息昏迷,在其嘴中发现了YHN-KHE-577的鱼钩及鱼线部分,潜水服的氧气面罩被打开(目前推测为实验员B自行打开),携带的录音和录像设备消失不见
事后补充:
实验员B在第一时间到了救治但是实验员B在苏醒后,实验员B失去了下水后的记忆,所以无法知道实验员B在水下发生了什么
实验报告:
目前可以推测出 YHN-KHE-577会对人类精神造成影响,从实验员B的结果来看YHN-KHE-577可能具有一定的“智慧”,但是由于资料损失暂时无法得知更多结果
实验条件:在长20m宽15m深7米的水池中放入(数据删除)地区的海水,实验员C使用YHN-KHE-577进行垂钓,实验员C并未佩戴安全绳
实验录像:
实验员C(将鱼钩甩入水中)(4分45秒后)
YHN-KHE-577突然传来一股巨大的拉力,完全没有准备的实验员C被这股拉力直接连同 YHN-KHE-577拖入水下,
实验员C被引力来源直接拖入水下消失
安保员立刻前往水池边准备营救,但是实验员C已经彻底消失
(17秒后)
YHN-KHE-577从水中浮到水面上
事后补充:
安保员立刻回收YHN-KHE-577,同时水池被抽干检查,同时对水池对的水进行化验,依旧没有发现实验员C踪迹,实验员C被归为“身亡”
实验报告:
经过实验得知如果垂钓者被YHN-KHE-577,拖下水的话会在水中消失,推测应是YHN-KHE-577的异常所导致,但是尚不清楚消失者是被“杀死”还是“转送”,通过异常□□□可以得知消失者的“肉体与精神”已不在目前整个人类社会的影响范围内,所以目前而言所有被YHN-KHE-577拖下水而消失的人员均视为“身亡”
访谈记录
询问对象:实验员A
时间:(数据删除)
观察员A:实验已经结束了,你现在没有必要这么紧张,现在需要你陈述一下,实验中你认为异常的地方,比如说你认为你在实验中的某个时候受到YHN-KHE-577影响,明白了吗?
实验员A:我明白,真的要说影响的话,让我想起了一点,就是在那个钩鱼竿钩到东西的时候,不知道怎么回事,我有一种“我把上面的东西钩上来,我肯定会后悔”的感觉,结果就是不管下面的某些拉力有多大,我都死死的抓住那个钓鱼竿,没有松手,老实说,现在想来我都感觉挺匪夷所思的,因为我也能猜到,如果我被拖下去的话,我可能就完了,但是我当时只有一个念头,就是把下面的东西钩上来,现在想来真的太奇怪了
询问对象:实验员B
时间:(数据删除)
观察员B:你能确定以下所说的话都是在清醒的情况下描述的吗?
实验员B:我确定,这个问题我已经回答很多遍了
观察员B:那么请你再描述一下你下水后所遇到的
实验员B:我真的记不清了,真的,但是当时下水过后我有种感觉,“就是像鱼一样”
观察员B :你能解释一下“像鱼一样”吗?
实验员B:就是……很难描述,你知道吗,就是我知道我是个人,但是当时下水过后,只有一种感觉,我就是条鱼
观察员B:所以说你就打开了氧气面罩?
实验员B:不知道,别的我真的不知道,不要再问了,求你们了
(实验员B情绪突然崩溃,询问被迫终止)
(后经口口口证实,实验员B失去了大量水下的记忆,只剩下部分极其模糊的记忆,目前该段记忆无法通过催眠手段和药物手段恢复)
«YHN-KHE-0576 | YHN-KHE-0577 | YHN-KHE-0578 »

