SCP-5249

評価: +31+x
blank.png




: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 > * {
    white-space: nowrap;
    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)); }
 
}
 
/*--- Motion Accessibility ---*/
@media screen and (prefers-reduced-motion: reduce) {
    div.anom-bar-container { --timeScale: 0!important; }
}
 
/*-------------------------*/
 
@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; width: 1%; }
    to { opacity: 1; width: calc(100% - 0.25rem); }
}
@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)); }
}
アイテム番号: 5249
レベル2
収容クラス:
safe
副次クラス:
{$secondary-class}
撹乱クラス:
dark
リスククラス:
notice

guitar_hands.jpg

アンドリュー・オマリー

特別収容プロトコル

財団の潜入エージェントが、SCP-5249は公開演奏であるという偽装を維持します。SCP-5249の異常な影響の性質上、これ以上の収容プロトコルは不要です。

財団の監視によって、アンドリュー・オマリーが異常性を得るのは毎年1日、約3分間のみだと確証されています。従って、彼の拘留は不要と判断されました。

説明

SCP-5249はアンドリュー・オマリー.ニュージャージー州ラザフォード在住の、ギターの演奏技能を高く評価されているストリートパフォーマー。を取り巻く現象です。毎年の1月3日、オマリーは自宅を出てリンカーン・パークに向かい、雛壇型客席に最も近い位置の公園ベンチに着席して、特定の楽曲を演奏します。演奏中、オマリーは周囲のヒューム値を僅かに操作することが可能です.オマリーの証言と財団の観測結果を基に、このヒューム値操作は純粋に無意識下で行われていると思われます。オマリーにはSCP-5249-1を出現させる以外の現実改変が不可能です。

問題の楽曲は“カイ”と題されており、恐らくはオマリーが独自に作曲したものです。オマリーのヒューム値が周辺環境よりも比較的低くなっているため、この楽曲を演奏している間の彼と物理的・言語的に交流することはできません。

演奏終了時に、SCP-5249-1と指定されるヒト幼児の形状をした霊体が、通常はオマリーの膝の上に現れます。SCP-5249-1は物理形態を約1時間維持した後に消失し、その後オマリーは普段の生活を再開します。

発見


SCP-5249は2021年まで財団に認知されませんでした。同年、ニューヨーク州ハドソンのコロンビア記念病院でヒューム値の急上昇が検出され、調査の必要が生じました。急上昇の原因が発見された後、アンドリュー・オマリーの異常な能力の全容を把握するため、彼は3年間にわたって監視されました。

2021年の観察結果

オマリーが楽曲を演奏する。同伴者の女性が演奏に合わせて歌っている。両者は共に著しく苦悩しているように見える。

演奏が終了する。SCP-5249-1が出現する。オマリーは歓喜しているように見える。女性.後日、妻のジュリアと特定。はより一層の苦悩を示す。

ボディランゲージから判断する限り、オマリーは女性と口論しているようである。SCP-5249-1は消失するまで苦悩を示し続ける。

オマリーと女性は口論を止めて抱きしめ合う。


2022年の観察結果

オマリーが楽曲を演奏する。女性は同伴しているが歌わない。彼女は妊娠しているように見える。

演奏が終了する。SCP-5249-1が出現する。オマリーと女性は短い間、SCP-5249-1を抱きしめる。女性は後ろに下がり、オマリーにSCP-5249-1を抱かせたまま立ち去ろうとする。

オマリーは女性との会話を試みるが、不首尾に終わる。女性が去る。

オマリーは精神的苦痛を示す。SCP-5249-1は笑い、オマリーのシャツを掴もうとする。SCP-5249-1が消失する。


2023年の観察結果

オマリーが楽曲を演奏する。女性は同伴していない。

演奏が終了する。SCP-5249-1が出現する。オマリーと周辺環境に交互に目を向ける様子から判断する限り、SCP-5249-1は困惑しているようである。

SCP-5249-1が泣き始める。オマリーも泣く。

SCP-5249-1が消失する。


歌詞

財団研究員ウマル・ハディッドは、SCP-5249-1の出現中にオマリーと会話することができました。オマリーはSCP-5249-1に関する如何なる質問にも回答を拒絶し、代わりに1枚の楽譜を提供しました。認識災害要素を検出するためのスクリーニング検査の後、楽譜は当文書に掲載しても問題無いと判断されました。

Oh Kai, my sweet child
嗚呼、カイ、私の愛し子よ
You never knew the world.
君が世界を知ることは遂に無かったね
You were barely a child when you were taken from me.
私の下から連れ去られた時、君はまだとても幼かった
And now I'm here alone.
そして今、私はたった一人で此処に居る
Oh my child.
嗚呼、我が子よ
Oh my child.
嗚呼、我が子よ
How I would have loved to hear you laugh.
君の笑い声を聞けたらどんなに良かったろう

当該事案後、オマリーは約2年間にわたって演奏せず、一時的にSCP-5249とSCP-5249-1を無力化しました。彼は2025年に演奏を再開しました。同年の演奏において、オマリーに妻と生後約18ヶ月の女児が同伴しているのが確認されました。

特に指定がない限り、このサイトのすべてのコンテンツはクリエイティブ・コモンズ 表示 - 継承3.0ライセンス の元で利用可能です。