SCP-6044
評価: +5+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)); }
}

アイテム番号: 6044
レベル1
収容クラス:
esoteric
副次クラス:
hiemal
撹乱クラス:
keneq
リスククラス:
notice

Funky%20Forest

SCP-6044

特別収容プロトコル: SCP-6044の収容は、SCP-6044により生成される物品の発見と収容に重点が置かれるべきです。SCP-6044の中心から約1kmの範囲にフェンスを設置し、機動部隊デルタ-44("ファンキー・フォレスターズ")がその周辺を警備します。また、MTFデルタ-44にはビーコンロック国立公園をパトロールし、SCP-6044由来の物品を回収する任務が課せられています。SCP-6044により生成された全ての物品は研究と長期収容のため、サイト‐48に移送されます。スカマニア1近郊における全ての異常現象はSCP-6044に関連しているとみなされ、即座に調査が行われます。

説明: SCP-6044はアメリカ合衆国オレゴン州、ビーコンロック国立公園内にある幅5kmほどの領域です。この領域は、SCP-6044-AからSCP-6044-Eに指定されているような異常な物品を不明な方法で生産する能力を有しています。

生成されるこれらの物体は、直近にラジオで繰り返し放送されたような悲惨な出来事や重大事件に関連しているようです。SCP-6044領域内の樹木が300GHzから3kHzの電波を吸収していることから、SCP-6044はラジオを傍受することによってこれらの情報を得ていると推測されています。

世界で起こる多くの出来事がSCP-6044の異常性のトリガーになり得ると思われるにもかかわらず、これまで生成された物品はほんの僅かです。SCP-6044が何を「重大な出来事」とみなし、何が物品の生成をもたらすのかは不明であり、この点についての研究は未だ進行中です。生成される物品は総じて極めて危険であり、いくつかはK-クラス世界終焉シナリオを引き起こす可能性があります。これらの物品は直近の出来事に関連する用途を持っているようですが、その効果は危険を齎す域にまで誇張されています。加えて、生成された物品の隣には手書きのメモや木製の看板に記されたメッセージが現れることがあります。メッセージはしばしば暗号のようで、口語体であり、贈り物に添えるメッセージカードを連想させます。

補遺6044.1: 発見経緯
SCP-6044は1971年、当該領域から1.5 km離れたスカマニア郡における異常現象の通報によって発見されました。

地元住民のアグネス・アンダーソン氏(当時79歳)は液体で構成されているように見える3体の実体の出現を地元当局に通報しました。実体は園芸用ホースを生成して自らの体に挿入し、そこから無限に高圧の水流を放出する能力を持っているようでした。液体の分析では、高濃度の難燃剤が含まれていることが示されました。アンダーソン氏の通報の記録は以下を参照してください。

この後2人の郡警察官が現場に到着し、SCP-6044-A実体に遭遇しました。収容チームがすぐに招集され、3体の実体を収容し、サイト-19(現在はサイト‐48に収容されています)に移送しました。実体はペシュティゴの山火事の清掃を手伝いたいと要求しましたが、要求は却下されました。

補遺6044.2:
現在までに、SCP-6044は5種類のアノマリーを生成しています。それぞれの詳細については以下を参照してください。


アイテム番号: SCP-6044-A
発見日時: 1971/9/11
脅威レベル:
説明: SCP-6044-Aは現在、サイト-48の標準Euclidレベル人型実体収容セルに収容されています。要求に応じてセル内に小規模な火種が投入されます。
SCP-6044-Aは、体が難燃剤と水で構成された3体の人型実体です。SCP-6044-Aは炎を消すことに非常に喜びを感じているようで、その対象はろうそくの炎のように小さなものであっても例外ではありません。SCP-6044-Aは炎を視認すると、英語を含まない様々な言語で「火事だ!」と叫び、胴体に家庭用ホースを接続し、そこから大量の水を放出することで消火を行います。その後、火が消えた後も数分から数時間に渡って放水を続け、結果として顕著な浸水を齎します。SCP-6044-Aを破壊、電解、蒸発させる全ての試みは、SCP-6044‐Aの自己再生能力によって失敗に終わりました。実体の知能指数は平均以下であると見られ、容易に懐柔することが可能です。
メッセージ:火事だ!!!!!!FIRE!!!!!!」と記された木製の看板。近くの木に吊るされていました。
生成原因(推定): ペシュティゴの山火事。


アイテム番号: SCP-6044-B
発見日時: 1980/5/19
脅威レベル: 黒 ●
説明: SCP-6044-Bは現在、サイト‐48の20 m×20 m×15 mの部屋に収容されています。いかなる状況であっても、SCP-6044-Bと水を接触させることは禁じられています。
SCP-6044-Bは3つの巨大なキッチン用スポンジです。SCP-6044-Bは空間異常を利用して液体、特に水を迅速に、かつ無限に吸収する能力を有しています。
メッセージ: SCP-6044-Bの近くでインクの滲んだ罫線入りの紙1枚が発見されました。メッセージは雨により失われたと推定されています。
出現原因(推定): アメリカで1980年に発生した津波とその後の浸水被害。
サイト監督官ウッズによる注記: これが脅威レベル黒に指定されている理由について、いくつかメールを受け取っています。少し考えてみてください。カオス・インサージェンシーのような連中がこのアノマリーを手に入れ、海に投げ入れたら?どうなるかはお分かりでしょう。それと、SCP-6044-Aとのクロステストは許可されませんので、申請した方々は悪しからず。


アイテム番号: SCP-6044-C
発見日時::1999/8/7
脅威レベル:
説明: SCP-6044-Cはサイト‐48の小型物品収容ロッカーに収容されています。SCP-6044-Cには厳重な収容措置が必要です。利用可能な最も強靭な金属が使用され、常に3個以上の機動部隊が周囲を巡回します。3SCP-6044-Cは特段の収容措置を必要としませんが、取り扱いには十分な注意が必要です。
SCP-6044-Cは「Uh, oh….」と粗雑に書かれたA4サイズの紙です。SCP-6044-Cの半径1 m以内にいる個体は近くのアノマリーから離れたいという強烈な衝動を感じたり、場合によってはアノマリーと素手による戦闘を行おうとしたりします。クリアランスレベル4以上を保有する財団職員は近隣のアノマリーの収容手順を不必要に厳重なものに変更したい衝動に駆られることがあります。
メッセージ:収容違反だ!誰かO5を呼んでくれ!Containment Breach! Someone call O5!」と記された小さな木製の看板。
出現要因(推定): 直近に発生したSCP-███の収容違反。SCP-6044が財団内部の事件に基づいてアノマリーを生成した唯一の事例。


アイテム番号: SCP-6044-D
発見日時: 2012/6/1
脅威レベル:
説明: SCP‐6044-Dは、サイト-48のスタッフルーム横の低危険度物品収容ロッカーに保管されています。財団職員は要請に応じてSCP-6044-Dと接触することが可能です。
SCP-6044-DはそれぞれSCP-999SCP-682SCP-1867SCP-1281に類似した、「カワイイ」と形容される見た目の、羊毛、絹、サテン製のぬいぐるみです。SCP-6044‐Dと接触した際に感じられる幸福感が異常なものであるかは不明です。SCP-6044がどのようにして財団データベースに侵入したのかも同様に不明ですが、現状システムには損害は発生していません。
メッセージ:これが助けになるといいなI hope this helps :)」と記されたA4サイズの紙。
出現原因(推定): 鬱病患者の割合と不安の世界的な増大。
サイト監督官ウッズによる注記: 皆さんからの多くの要望を踏まえ、SCP-6044-Dをスタッフルームに移動させることにしました。是非お楽しみください。


アイテム番号: SCP-6044-E
発見日時: 2021/5/24 - 2021/5/26
脅威レベル:
説明: SCP-6044-Eの生存する全ての個体は、サイト‐48内の人工湖及び人工ジャングルに収容されています。自己切断の兆候が見られた場合は直ちに対応し、切断された部分は焼却処分されます。
SCP-6044‐EはSCP-6044により生成された2,059体のウーパールーパー(Ambystoma mexicanum)の総称です。これらは物理的にも遺伝的にも非異常のウーパールーパーと同一ですが、非異常の個体とは異なり、自ら体肢を切断し切り離した肢体を別個体として成長させることによって繁殖を行います。SCP-6044-Eはこの能力を月に1度程度の頻度で行使するため、野生のSCP-6044‐E個体は現地の生態系に大規模な混乱を齎す危険性があります。また、SCP-6044-Eは砂漠、極地、地下を含むあらゆる極限環境への耐性を有し、真空チャンバー内でも生存した例が確認されています。
メッセージ:ウーパールーパを守れ!再繁殖を!Save the axolotls!! Repopulate!」と記された木製看板。近くの木に吊るされていました。
出現原因(推定): ウーパールーパーの絶滅危機。

 

これ以降の文書の閲覧にはクリアランスレベル4が必要です

.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.

クリアランスコードを確認中…

.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.

コードが承認されました。


Funky%20ForestV.2

SCP-6044内に発生したポータル(ロジャース撮影)

補遺6044.3:
2012年6月1日、SCP-6044-Dの生成中に、SCP-6044領域の森がアノマリー生成の直接的要因ではないことが確認されました。その代わり、SCP-6044は不明な実体の活動領域であるようです。この実体は各アノマリーの発生源と思われる、発光する小さな幾何学的形状のポータルを生成することが確認されています。MTFデルタ-44("ファンキー・フォレスターズ")は2016年中頃の定期巡回中に初めて、ポータルからSCP-6044-Dが排出される様子を目撃しました。サイト‐48司令部はSCP-6044内のポータルに発見・侵入するため、MTFデルタ‐44の活動領域を拡大することを要請しました。

2021年5月24日、MTFデルタ-44はSCP-6044-Eの生成に先立ってSCP-6044内でポータルが開く様子を目撃し、MTFデルタ-44所属の3人がポータルへの侵入に成功しました。記録は以下を参照してください。

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