:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);} to { opacity: 1; clip-path: inset(0);} } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem);} to { opacity: 1; transform: translateX(0);} } @keyframes expand2 { from { opacity: 0; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @keyframes fade { from { opacity: 0;} to { opacity: 1;} } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
侦测到生命迹象
模因接种查明
欢迎,尊敬的龙**
你好,我的继任者。无论在看到这份文件时你被称作O5-CN-1还是十二生肖-“鼠”,我希望你能理解这个头衔所代表的责任之重大,你的每一个判断不仅影响着中国分部的命运,更关系着全世界的安危。如果你做好了承担起这一切的心理准备,那么继续看下去,然后履行你的责任。

你一定听说过《拉莱耶协议》的传闻。你大概会觉得这些谣传是多么可笑,又或者你在晋升的过程中开始怀疑它有几分可信。现在你手握5级权限,整个中国分部的数据库都为你所用,而恐怕你无法在任何一份文档上看到它的真相。
《拉莱耶协议》存在于我的脑海中。如果你愿意走上我的道路,它也将存于你的心中。
许久以前,基金会得到了一块完全无法破坏的宝石,而这块宝石的原主人在日记中记述它被发现于一个由四块符文石碑构成的原始奇术阵当中。在研究宝石的过程中基金会发现了它的其他性质,便组建了一个研究小组去调查它的来历。这本应是个简单的任务,但迟迟没有进展,而Site-04的人手却所剩无几。我们最终意识到我们已经踏入了另一个领域——尽管我们连自己是如何意识到这一点都已忘却——并将那个十余人的研究小组(原本可能有数百人)改组为一个独立部门,日后它成为了名为反概念部的不存在的部门。
1931年,反概念部的前身在墨西哥发现了一群外形近似鲨鱼的逆模因实体。它们漂浮于半空,将目光所及之处的金属制品收纳至口袋空间中,鳞上刻满了各式各样我们至今仍无法完全理解的奇术符号。基金会很快派出了几支小队前往处理,而这时我们发现这些异常鲨鱼不仅缺乏攻击性,甚至连求生欲都很薄弱,同伴的死甚至都不值得他们为之停留一瞬,而唯一能吸引它们的只有铁,齿轮和机械。尽管缺乏成熟的记忆强化技术,最终我们还是成功捕获了其中几个实体,而大多数个体则再没被发现过。
5年后,我们试图从被收容的这几只鲨鱼身上获取它们族群的情报,于是我们启用了万花筒KALEIDOSCOPE计划的成果来感知其思想。被关在不同的收容间之后,任意一只鲨鱼都能了解其他个体所处房间的情况。它们的脑结构被扭曲为具有奇术意义的诡异形态,而在使用反奇术立场局部隔绝其头部后这些鲨鱼首次显示出类似恐惧与不安的情绪,这让我们相信它们通过改造自己的大脑来实现与其他个体的精神链接。接着我们决定更进一步,让我们的人潜入到它们的意识当中,结果事情出了岔子。
这些鲨鱼的思维并没有与其他鲨鱼直接连接,它们的意识链接之间有一个中介,德雷斯博士称其为异魔Eldritch。异魔的思想与我们所知的任何生物都截然不同,如同一片无序的混沌。我们试图探知它的思想,同时也是在将自己的头脑向它敞开大门。现代模因学的基础理论之一再次应验——理念圈的交互从不是单向的,一个理念输入可以被逆转为理念输出。结果是当时的研究人员将自己暴露于那片混沌理念当中,并向其中输出了人类的文化理念,然后接受了异魔的反哺。
我们向它的思想里投入砒霜,再饮下自它思维中流出的鸩酒,而现代模因学告诉我们模因在不加控制的情况下将在理念圈中迅速传播。这就是我们与异魔的第一次接触,同时也是一次华丽的同归于尽。它的思想与我们相差甚远以至于我们的意识完全无法承载其中的只言片语,结果便是实验人员纷纷失去理智试图传播自己得知的属于另一个种族的“真知”,然后这份剧毒流窜于理念圈之间。我们尝试使用记忆删除来遏制模因的传播,但于事无补,从相关人员到站点主管一个个陷入癫狂。我们舍弃了整个站点,但在站点之外已经有平民成为了传染的媒介,然后这场狂潮席卷整个墨西哥和半个美国,直至O5指挥部。
你可能对第二次理念战争这个词有印象,这曾被我们用于称呼那半年里人类与异魔间的生存竞争。在确认到那些鲨鱼运用逆模因效应影响战争走向后我们改称其第二次理念&逆模因战争,不过有关情报已被封锁于反概念部之内。1937年启用的忽怠协定The Ennui Protocol抹去了绝大多数人对那场战争的正确认知,而反概念部成员是为数不多我们能接触到的没有失去这段记忆的人,同时也是你我了解那场战争的唯一渠道。
反概念部从未停止对他们最初目标的探索。在漫长的研究中,他们对被他们称作“锁”的那块宝石的认识逐渐加深,而记忆强化剂的研发也让他们看透面纱下的真相。Young爵士曾偶然踏足的那片残破庙宇属于一个古城遗迹的一部分,而整个古城都被笼罩于一片逆模因遮蔽效应下。反概念部在那里建立了科研站点Site-31,而在Site-04面临来自异魔的模因威胁时,反概念部与负责其运作的5级人员带着“锁”撤入那片区域。在大众眼中的反概念部就此消失,而遁入阴影的反概念部得以在此安全研究逆转战局的手段。上面的模因触媒便是当时的杰作,它能够将你从你所处的理念圈当中剥离出来,让你不受他人理念的干扰,缺陷也很明显——使用者与他人的理念交流被隔断,也就意味着接受新理念的难度成倍增长,而这是大部分人类承受不起的代价。他们还研究过其他策略,但多数和这个一样杀敌一千自损八百。
他们最大的收获是发现了之前驻守人员遗落的手稿,上面的考古发现让我们知道这个古城是一个无比古老的文明建立的,而那个文明也曾面对一次理念战争。我们了解到“锁”中保存的某物似乎是那个文明制造的用于结束第一次理念战争的武器,但因不明原因放弃使用。即便如此,没有用来开“锁”的钥匙,我们也无法使用它来应对我们的危机。
新年之际是战争的转折点。来自基金会的讯息传播至所有还未关闭通讯的站点,并提到破碎之神教会将为基金会准备一个和某个对象谈判的机会。教会称这群我行我素的机神信徒为迪普DIPWAN,而那是一群鲨鱼。
滑稽的是这场战争的结果正是由这些间接引发战争的元凶所宣判的。经过数十道文化过滤程序后,我们知晓了迪普WAN想要传达的信息——来自人类理念文化的模因同样在异魔身上起了效果。根据它们的测算,异魔将于3月死于理念圈崩毁,届时人类与迪普WAN的文化结构都将严重受其影响,而如果双方联手,这一影响可以被降到最低。
它们的条件只有一个——杜绝这一事态的再度发生。它们相信异魔是一个人丁兴旺的种族,而其中一部分个体将来很可能再像这样被人类以错误的方式处理,届时又将以其中一方的死来结束这一切。在取得基金会的同意后,双方于迪普WAN的圣所签订了一份协议,并开始筹划月光行动的相关事项。
现在你应该明白《拉莱耶协议》是什么了。基金会最终选择将执行这份协议的任务交给反概念部,因为只有他们掌握了将这些风险信息封锁起来的手段。之后这一切落下帷幕,基金会采取某种方法将夺走数亿人理性的致命模因封存起来,具体手段连反概念部都没能知晓。许多人对此都有自己的解释,而我的解释是我们曾有一位洛夫克拉夫特博士,而今不再有了。
没有人想要再来一次理念战争。为数不多的知情者恐惧着鲨鱼所代表的那个不可名状的敌人——哪怕我们后来在海底发现了死于理念圈崩解的异魔尸体——并坚信万花筒计划是这一切的罪魁祸首。基金会终止了万花筒计划,将相关人员调配至新的研究计划上,而曾经被收容的那几只鲨鱼已经在战争引发的混乱中不知所踪。
我们很快遗忘了这一切,化合物ENUI-5的效力之强远超我们的想象。而短暂的合作并没有拉近基金会与对方的距离,迪普WAN不再出现于基金会视野内,而破碎之神教会正忙于另一件大事,《拉莱耶协议》也没有被记录于数据库之内,反概念部则继续使用逆模因来隐藏自身的存在。在这之后基金会真的发现了许多不同的异魔生物,而就在一些人主张彻底解明它们究竟为何物的时候,我们也在警惕着惨剧会不会被再度酿成。
这些就是我想对你说的,反概念部如何转移至O5-CN议会麾下则是另一个漫长的故事了。联系反概念部的线路编码保存在附件里,准备好和他们打个招呼吧。
我不知道当你打开这份文件的时候世界已经变成了什么样子,但我相信你与我一样不希望人类历史在自己这一代便抵达终点。你可以像我一样继续履行这份协议,或是找出另一条更好的道路。但无论如何,记住我们控制与收容,都是为了更好地保护。