@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
:root { /* header measurements */ --header-height-on-desktop: 10rem; --header-height-on-mobile: 10rem; --header-h1-font-size: clamp(2rem, 5vw, 2.8125rem); --header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem); --logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg"); } #header { --search-textbox-text-color: var(--swatch-secondary-color); background: none; } #header::before { content: " "; position: absolute; width: 100%; height: 100%; left: 0; top: 0.75rem; background-image: var(--logo-image); background-repeat: no-repeat; background-position: center 0; background-size: auto calc(var(--header-height-on-desktop) - 1.5rem); opacity: 0.8; pointer-events: none; } #header h1, #header h2 { margin: 0; padding: 0; width: 100%; height: var(--header-height-on-desktop); display: flex; align-items: center; justify-content: center; display: flex; align-items: center; justify-content: center; } #header h1 a, #header h1 a::before, #header h2 span, #header h2 span::before { margin: 0; padding: 0; z-index: 0; display: block; text-align: center; } #header h1 { z-index: 1; } #header h1 a::before, #header h1 a::after { content: var(--header-title); } #header h1 a::before { color: rgb(var(--swatch-text-tertiary-color)); z-index: -1; -webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark)); } #header h1 a::after { color: rgb(var(--swatch-headerh1-color)); z-index: 1; } #header h2 { z-index: 0; text-transform: uppercase; pointer-events: none; } #header h2 span { margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em); } #header h2 span::before, #header h2 span::after { --wght: 600; content: var(--header-subtitle); position: absolute; left: 50%; transform: translateY(-50%) translateX(-50%); width: 100%; text-align: center; } #header h2 span::before { -webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark)); } #header h2 span::after { color: rgb(var(--swatch-headerh2-color)); z-index: 1; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { color: rgba(0, 0, 0, 0); } @media (min-width: 36rem) { #login-status { flex-grow: 1; left: 3%; right: initial; } #login-status::before { --mask-image: none; background-color: transparent; } #login-status:not(:focus-within) { color: rgb(var(--login-line-divider-color)); -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; user-select: initial; } #login-status #account-topbutton, #login-status:not(:focus-within) #account-topbutton { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgba(var(--login-arrow-color), 0); } #login-status #account-topbutton::before{ --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--login-arrow-color), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton:hover::before { --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; } #login-status:not(:focus-within) #account-topbutton::after { display: none; } #login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); pointer-events: all; -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) { opacity: 1; } #login-status #my-account { --wght: 300; } #account-options { background: var(--gradient-header); } #search-top-box { top: 1.5em; right: 3%; background: rgba(var(--search-focus-textbox-bg-color), 0.4); } #search-top-box:focus-within ~ #login-status { opacity: 1; } #search-top-box::after { transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); } #search-top-box:not(:focus-within)::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0% 100% ); background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #search-top-box:not(:focus-within):hover::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgb(var(--search-icon-hover-bg-color)); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) { max-width: var(--search-width); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { max-width: var(--search-width); padding: 0 var(--search-height) 0 1em; outline-width: 0; background-color: rgb(var(--search-focus-textbox-bg-color), 0.35); color: rgba(var(--search-textbox-text-color), 0.4); cursor: pointer; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"], #search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] { pointer-events: all; border: none; } } #page-title::after, .meta-title::after, #page-title::before, .meta-title::before { content: ""; flex-grow: 1; height: 0.0625rem; background: rgb(var(--swatch-primary)); } #page-title::before, .meta-title::before { margin: auto 1.25rem auto auto; }
特殊收容措施: 对SCP-6716-α的收容措施主要集中于防止外部团体通过观测独立推导出此方程组。主要实现手段则是细致传播关于阿吉巴场1本质及相关物理现象的假情报。在低权限文件中,应当始终将阿吉巴辐射描述为神性活动的副产物,而非一种肇因要素。此外,所有基金会衍生自SCP-6716-α的资产必须被呈现为有不同来源。例如:
- 通过内在和敬拜向量分析得出的神性现象相关信息,应被归结为破解经典或人类学研究得出。
- 通过SCP-6716-α创造的新型仪式和圣物,应被归结为合理考古发掘的发现,或被描述为原因因素不明确的异常现象(如前一文档所述)。
- 为外部行动创造的新圣徒、新神、新半神,应通过植入考古证据给予掩盖,将其暗示为在历史上已经存在,且已被各类合理的秘密团体崇拜。
对所有已知关注神性现象、且有能力对此开展实证研究、接触现代计算机硬件或类似设备的团体,应给予高优先度监控。要获取此假情报行动(代号金小牛行动)的更多详情,请联系假情报部。
描述: SCP-6716-α是一系列偏微分方程式,其中完整描述了阿吉巴场及其与塔尔塔洛场、休谟场的交互。 这些方程式是由战术神学研究团队领导人Dr. Thornby根据对研究员Roberts周边阿吉巴场、以及事故SCP-6716-1事件的研究推导而来。2
阿吉巴场在大部分被视为神圣的现象中是肇因要件,包括已知全部噬信3实体、大部分多能实体、所有已知宗教器物、部分形式奇术、以及其他各式异常。诸如奇迹等转瞬现象在模型中是波前之间的高相长干涉。实体和器物则是被外来敬拜因子或与实体自身意识交互所稳定的驻波。在对任何阿吉巴类异常的相关场及向量进行完整描述后,便可对此异常实现完全理解,完美预测其在不同条件下的行为表现。然而,由于解开此偏微分方程组存在固有的困难性,这只是在理论上存在可能。
SCP-6716-α描述中的场相互作用极度复杂,与非异常的磁流体动力学方程组4相当。基于 SCP-6716-α的计算机模拟可被用于给不同类型神性实体的行为、构成建造模型,然而,此进程目前受有如下限制:
- 由于微分方程的固有复杂性,方程的解只能在排除多种条件的情况下达成。例如,高神圣支配力要排除随时间改变5,强敬拜因子可以胜过内在因子发生混沌化偏移的倾向。
- 有意识存在的思维与信仰向阿吉巴场激发的转化过程受休谟场介导,对后者目前尚无充分理解。这一点大幅限制了我们在实践中对场的操控精准度。
- 描述塔尔塔洛共鸣场的相关方程组由地狱第六环的一家研究机构享有专利。获取将方程组用于模拟的许可需要巨大花费。
尽管存在上述限制,通过SCP-6716-α模拟设计出的仪式至少能与宗教经典中发现的仪式等效—有时被认为更胜一筹。
附录SCP-6716-α-1: 初步研究概况
前言: Site-89的主站战术神学研究人员间开展了若干初步试验。此次研究的规模因缺少资源相对较小。
概率异常及神性赐福: 开展了范围广泛的概率相关实验,主要内容是由耐心神女为一枚硬币或骰子赋予仪式性赐福。实验的主要目的是确认概率异常是否由阿吉巴场介导。我们证明通过现有侦测方式无法对此证明或者证否,同时又意外产生出了27个次级异常项目:10个硬币、15个骰子、2副卡牌。6
控制塔尔塔洛干预: 在某个案例中,单纯的水净化仪式反而造成水变成了一种粘稠沥青且猛烈沸腾,对团队成员造成了一到二级烧伤。此情况是塔尔塔洛场对仪式参与者中的未忏悔罪行7发生反应所致。罪行的影响可以在仪式设计过程中从数学上予以考量,但必须在事前得到妥当披露。
赋予简单生命活性: 在一次涉及无规划歌舞、相对计划外的仪式中,初级研究员Roberts通过亲吻一只小型折纸龟头部,意外使其活体化。8该实体表现出非常简单的智力,能够自行移动,尽管速度极慢。仪式过程中全体参与者对纸龟状况高度投入,这被认为是取得意外成功的关键因素。
结论: SCP-6716-α有巨大潜力改变我们达到神性的方法。基于我们计算机模型得出的数据,我们希望为设备更齐全的实验团队推荐下列研究路径:
- 改良基金会目前正在使用的仪式,使其需求元件更容易获取,包括基金会一般视为危害性废物的材料。
- 为基金会站点工作设计专门的新型祈福及丰产仪式,为安全性和生产率带来可观提升。
- 在长期尺度上,有可能建造出针对问题神祇的神狱类9站点,类同于希腊神话中的塔尔塔洛斯深渊、地狱的最底层。
请按如下方式引用此页:
“SCP-6716”,作者 GwenWinterheart,来自 SCP 维基。原文链接:https://www.scpwiki.com/scp-6716。译者 ashausesall,来自 SCP-CN 维基。译文链接:http://scp-wiki-cn.wikidot.com/scp-6716。遵循 CC-BY-SA 协议。
更多详情请参阅授权指南。
授权信息
文件名:coffeemaker.png
图像作者:Teepetersen
授权协议:CC-by-SA 4.0
来源链接:https://upload.wikimedia.org/wikipedia/commons/6/62/Coffee_maker.jpg
备注:被我编辑过
更多维基文档信息,请见版权信息总览。