SCP-7050

: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)); }
}
项目编号:項目編號:7050
等级等級2
收容等级:收容等級:
keter
次要等级:次要等級:
none
扰动等级:擾動等級:
vlam
风险等级:風險等級:
caution
7000

半人马座比邻星B(Proxima Centauri b)


特殊收容措施:鉴于SCP-7050的性质,无法对其实现收容。出于裁减人类军队的目的,有关SCP-7050的知识仅面向少数国际和政府组织开放。若当前仍有SCP-7050-1实例存在,所有潜伏在国家航天机构和天文协会中的基金会特工都将得到警告和指示,以防止事件信息传出。若任何组织收到SCP-7050-1实例的数据与图像,基金会特工将阻止其发布并篡改与该事件相关的一切数据。为进一步保护人类文明,基金会将对所有导致约克事件发生的事件进行记录和分析。对SCP-7050-1个体的探索将由基金会异常航空和空间研究协会(Anomalous Aeronautical and Space Research Association)负责进行,该协会在基金会内部亦被称为AASRA。迄今为止,已经确认了共11个SCP-7050-1实例,另外4颗系外行星将由AASRA进行探索。

描述:SCP-7050指的是人类生存的可持续性。如果一颗系外行星的大气层因核能爆发而迅速获得毒性,基金会将通过“麦哲伦”无人机群对其进行探索以确定一次约克事件是否发生。若无人机群探明确实发生了约克事件,该系外行星将被指定为SCP-7050-1实例并被编入目录。截至公元2035年,所有已知的外星文明都经历了约克事件,随后悉数灭绝。

附录1:第一个SCP-7050-1个体实例

starchart

显示半人马座α星位置的天文图(底部中间偏左位置)。其中比邻星用红色圈出。

2009年1月9日,基金会空间天文台“斯库拉克斯”在半人马座α三合星系统中检测到核能的突然爆发。随后进一步观察表明,核能爆发的起源来自比邻星B1在未能找到事件的自然解释后,基金会将其命名为异常事件-13020,并将调查异常的任务交给AASRA。不久之后,O5议会批准了AASRA关于开始制造无人机群的请求,该无人机群将被用于对比邻星B执行探索任务。2011年3月7日,“欧多克索斯”无人机群2建造完成,并于当月晚些时候向比邻星B发射。本次任务利用标准与异常技术,目标为确定核能爆发的原因。

无人机群于2015年6月3日抵达比邻星B,开始将其在该星球上的发现录入文档与日志。在接下来的几个月里,无人机群围绕该行星运行并开始收集大气样本,且进行了行星表面探测。探索过程中,无人机群在全球范围内发现了城市的废墟。在对地表进行大面积的探索后,无人机群在其中一处保存完好的废墟中发现了疑似档案的物品。 所有档案文件得到扫描与记录后被立即送回地球上的基金会。 基金会于2019年收到了这些数据,AASRA立即委托基金会语言学部帮助破译文件中的语言。2021年5月11日,AASRA已能够将半人马座语言翻译到足以制作导致核能爆发的事件时间表的程度。该表内容如下:

icons

比邻星B的文献中使用的语言示例

在2014年9月和11月,“欧多克索斯”无人机群正在前往比邻星B的途中,基金会空间天文台“斯库拉克斯”观察到来自罗斯128恒星系和鲁坦恒星系的另外两次核能爆发。此时AASRA能够再一次确定能量爆发的来源是其各自恒星系内的行星。考虑到异常事件-13020与这些事件间的相似性,AASRA获准制造另外两个无人机群以探索这些恒星系。异常科学技术在2015年和2016年间的发现使AASRA有能力制造出可以在5年内到达罗斯128和鲁坦星的无人机群5

被称为第一和第二“麦哲伦”无人机群的两个无人机群于2017年7月23日发射。在2017年至2019年期间,基金会空间天文台“斯库拉克斯”和后来的基金会空间天文台“希罗多德”6又发现了3次核能爆发。三个新的无人机群被制造出来,并于2019年3月、2019年10月和2020年8月分别向这些恒星系的方向发射。

在比邻星B上的事件时间表得到确定后不久的2021年6月25日,接收到来自第一“麦哲伦”无人机群的数据。与半人马座的比邻星B相比,目标系外行星罗斯128B在星球表面显示出相似的特征。以外星语言转录的文件再一次与行星数据一起被发送。基金会语言学家和AASRA正在破译罗斯128恒星系的语言时,收到了来自鲁坦B的第二麦哲伦无人机群的数据。与前两份一样,更多文件被发送以供AASRA解密。

附录2:报告摘要

2023年12月5日,AASRA向O5议会提交了一份报告。这份由AASRA负责人撰写的报告详细介绍了他们对罗斯128B和鲁坦B的调查结果。报告中与SCP-7050相关的部分如下:

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