Object C-277 - 「思想钢印」
: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 }

> 权限登入:研究员Null

> Error
> Error
> Error

> Null

> 系统重新启动中……
> 系统重启失败!

> 检测到权限码正确。

> 正在进行生物计量学检测……
> 生物计量学检测通过。

研究员 Null,欢迎访问MEG-C17数据库,请输入您的指令。

access Object-C-277

> 数据库未检索到标记为Object-C-277的文档。是否重新检索?(Y/N)

Y

> 已检索到 1 篇标记符合Object-C-277的文档。正在加载中……

> 文档链接:Object-C-277(1).bdoc

/.../Object C-277(1).bdoc

统合物品分类系统
物品编号:C-277
位置:M.E.G.基地内
安全性:危险
用途:
精神控制
状态:
被隔离储存
1.png

未知标识

Object C-277,又称思想钢印,是一类极其危险的用于精神控制的物品。

描述

思想钢印外观表现为一银白色立方体,正面印有一未知标识,推测可能为制造该机器的组织标识。其背面有操作屏及操作台,已知其已通过未知方法接入后室万维网并无法断开。内部预装了可远程操控的操作系统,但仅可输入任意文字并进行「注入」操作。

目前仅有的四台思想钢印:「Argos」、「Blanche」、「Keymaster」、「Nostalgi」「Null4​̷͓̏̕​̷̧̏͌​̴͓͇̀͛​̶̓̂ͅ‍̵̝̏​̶̨̤̇​̶̳̘̍̽​̵̭̥̠̩͚̃͊̚͜͝​̵̡̛̹͛͗̆͘ͅ​̶̡̠̰̮̲̬̅̒̎̆̚​̸͓̩̭̼̼̇́́̈́̆̃‍̸̢͍̯̃​̴̨͕̯̹͕́́͒̐​̷̻̰̙̪̏̓̅́̕​̸̡̫̣̊͛̀̿͜​̸̗͌͌̓͒​̵̨̗̻͓̕​̴͍͑‍̶̼̲͔̦̒̔̇͝​̶̬̍͜͝​̷̡͕̅​̶͓̗̼̜́​̴̝́̊̑​̵̘̝̫̝̎​̸̳͚̝͒̀̀̑‍̷̣̗̯̖̰̒͋̌̑​̵̧̡̹̰̔̇̓͠​̴̧̨̺̮̥͂04​̴̫͋͝​̶̡́​̸̛̹̭​̷̬̹̟̄͆‍̷͔̫̎​̴̜͇̥̋̄​̸̉​̷͓̏̕​̷̧̏͌​̴͓͇̀͛​̶̓̂ͅ‍̵̝̏​̶̨̤̇​̶̳̘̍̽​̴̝́̊̑​̵̘̝̫̝̎​̸̳͚̝͒̀̀̑‍̷̣̗̯̖̰̒͋̌̑​̵̧̡̹̰̔̇̓͠​̴͂」都是于2024/11/12中午出现在Level 11的M.E.G.Beta基地中的。

思想钢印而出现的还有残缺不全的,带有同种标识的思想钢印的操作指导。但可阅读部分并未注明在当时未知作用的思想钢印的详细情况。


通过以上实验数据,M.E.G.得知了该物品的能力和适用范围。但由于该物品具有极大的潜在危害,故M.E.G.已进行物理隔离、储存该物品。

原理

推测思想钢印能够通过某种未知的精神/物理手段影响大脑皮层中进行判断的区域,从而让大脑在未经判断的情况下将某种信念或思想烙印在大脑之中。

用途

由于其极高的危险性和潜在的伦理问题,M.E.G.已禁止对该物品的后续一切操作和实验。


> 文档已阅读完毕。是否退出阅读模式?(Y/N)

Y

研究员 Null,欢迎回来,请输入您的指令。

Samukawa.bfln

> 检测到系统代码文件。

> 导入中……

> 导入中断。

> Error
> Error
> Error

> Null

> 权限验证成功。

监督者Null,您现在已处于系统安全模式中。

elevate account to maximum privileges

> 权限已提升。当前您的权限为:Null级。

load program steelseal.bpex

> 权限验证通过。

> 当前您试图打开的是:思想钢印指示接口调试程序steelseal.bpex。该程序被标记为绝对禁止。确认开启吗?(Y/N)

Y

思想钢印指示接口调试程序

接口地址

正在连接…(25%)


正在连接…(40%)


正在连接…(65%)


正在连接…(90%)


连接成功。

思想钢印指令模块准备就绪。

termination of insurance measures

> 保险措施已解除。

adjust the mode to wide range meme mode

> 模式已调整。

adjust the meme output power to 100%

> 功率已调整。

set launch content:他人即地狱L'enfer, c'est les autres

准备发射。

发射成功。
预设内容:他人即地狱L'enfer, c'est les autres

> 退出并关闭系统?(Y/N)

Y

幕起

他关上了电脑,断开网络,起身伸了个懒腰。

旁边就是窗户。外面蔚蓝色的海洋和蔚蓝色的天空融为一体,像一颗蓝宝石,映照在血红色的房间里。
他嗤笑一声,脸上带着玩味:「一幅美丽的幕布……等戏剧上演之时,血与泪的点缀——真是一出完美的悲剧。」
他拿起一旁的画笔,在一旁贴在墙上的一副工笔画上,写下了四个单词。

Are we cool yet?

然后他纵身一跃,消失在茫茫海洋之中。

幕落




桌上的笔记

像我这样有艺术细胞的疯子在无聊的时候,总会想想艺术的。但可惜的是在以前的世界里,一个被看做疯子的艺术家可没有机会施展他的「艺术」。因此,非常可悲的——我的很多想法无法得到解答。
而上天给我送来了礼物。这个世界,是一个完美的画布。一个没有边框的画布。它终于能使我最伟大问题的答案得到验证:
如果你能够让全世界相信你的一句话,说什么才会让这个世界最快的在恐慌中毁灭?
我的答案是:他人即地狱L'enfer, c'est les autres
如果每个人都相信这句话,都相信这世上的所有人都想要暗算他——由此牵扯出的人性角斗与交织着谎言和欺骗的真相——啊,简直是世界上最完美的史诗。

我将亲手造就这一幕。








































就这样了吗….








































最后一个晚上,思想钢印「Nostalgi」「Null4​̷͓̏̕​̷̧̏͌​̴͓͇̀͛​̶̓̂ͅ‍̵̝̏​̶̨̤̇​̶̳̘̍̽​̵̭̥̠̩͚̃͊̚͜͝​̵̡̛̹͛͗̆͘ͅ​̶̡̠̰̮̲̬̅̒̎̆̚​̸͓̩̭̼̼̇́́̈́̆̃‍̸̢͍̯̃​̴̨͕̯̹͕́́͒̐​̷̻̰̙̪̏̓̅́̕​̸̡̫̣̊͛̀̿͜​̸̗͌͌̓͒​̵̨̗̻͓̕​̴͍͑‍̶̼̲͔̦̒̔̇͝​̶̬̍͜͝​̷̡͕̅​̶͓̗̼̜́​̴̝́̊̑​̵̘̝̫̝̎​̸̳͚̝͒̀̀̑‍̷̣̗̯̖̰̒͋̌̑​̵̧̡̹̰̔̇̓͠​̴̧̨̺̮̥͂04​̴̫͋͝​̶̡́​̸̛̹̭​̷̬̹̟̄͆‍̷͔̫̎​̴̜͇̥̋̄​̸̉​̷͓̏̕​̷̧̏͌​̴͓͇̀͛​̶̓̂ͅ‍̵̝̏​̶̨̤̇​̶̳̘̍̽​̴̝́̊̑​̵̘̝̫̝̎​̸̳͚̝͒̀̀̑‍̷̣̗̯̖̰̒͋̌̑​̵̧̡̹̰̔̇̓͠​̴͂」的操作屏幕开始闪耀。一阵杂音过后,一个男人的声音传了出来。




音频记录:Null

[轻轻的咳嗽声]

基金会,你到时候了。
你们基金会为了自身统治地位的稳固和安全竟然不惜使用这种东西来让人忠诚于你…这他妈无异于剥夺所有员工的自由意志。
你们背叛了世界。
其实也不意外。倒不如说,这很符合你们的行事风格。

[轻笑]

毕竟伟大的基金会要保护常态嘛。那作为常态的中流砥柱的基金会自然有所谓的义务和责任来保护世界——多么伟大。
闲话少叙了。当你们听到这段录音的时候,我可以信誓旦旦的保证:你们内部已经有无数的混沌分裂者了。
我几乎都能看到你们脸上的震惊了。你们肯定想不到我们是怎么做到的。嘛,让我来告诉你们吧:以子之矛攻子之盾而已——给你们一个提示点:你们的思想钢印。
想不出来?那我可要开始揭秘了。放心,你们所有员工在最开始都不会被看出异常,因为我们也不傻,所有员工一开始的信念都是所谓「忠于基金会」的,但是——只要稍微过一段时间你们就会发现——我们在其中添加了不至于被你们看出来的一点小小的改动。
你们应该知道,在大脑中存在命题判断的神经回路。这就是思想钢印的原理——可以控制大脑对命题真伪的判断。
这就是关键点。命题的真伪,看似对立,但其实他们是相似的:在神经元传输模式中表现为某个关键信号的流向;而在思想钢印的数学模型中,则只由一个正负号决定,正者判断为真,负者判断为伪。
在所有四台思想钢印中,这个符号

都为负。

[音频结束]

M.E.G.数据库管理系统

指示码
认证号
权限码














除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License