-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagonized-screams-in-stone-silence.html
More file actions
1076 lines (895 loc) · 48.5 KB
/
agonized-screams-in-stone-silence.html
File metadata and controls
1076 lines (895 loc) · 48.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-corrections" lang="en-corrections">
<head>
<title>Agonized Screams In Stone Silence - The Backrooms</title>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/init.combined.js"></script>
<script type="text/javascript">
var URL_HOST = 'www.wikidot.com';
var URL_DOMAIN = 'wikidot.com';
var USE_SSL = true ;
var URL_STATIC = 'https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc';
// global request information
var WIKIREQUEST = {};
WIKIREQUEST.info = {};
WIKIREQUEST.info.domain = "backrooms-wiki.wikidot.com";
WIKIREQUEST.info.siteId = 4431268;
WIKIREQUEST.info.siteUnixName = "backrooms-wiki";
WIKIREQUEST.info.categoryId = 38105090;
WIKIREQUEST.info.themeId = 1;
WIKIREQUEST.info.requestPageName = "agonized-screams-in-stone-silence";
OZONE.request.timestamp = 1763649038;
OZONE.request.date = new Date();
WIKIREQUEST.info.lang = 'en-corrections';
WIKIREQUEST.info.pageUnixName = "agonized-screams-in-stone-silence";
WIKIREQUEST.info.pageId = 1451173001;
WIKIREQUEST.info.lang = "en-corrections";
OZONE.lang = "en-corrections";
var isUAMobile = !!/Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
</script>
<script type="text/javascript">
require.config({
baseUrl: URL_STATIC + '/common--javascript',
paths: {
'jquery.ui': 'jquery-ui.min',
'jquery.form': 'jquery.form'
}
});
</script>
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<meta name="og:title" content="Agonized Screams In Stone Silence"/>
<meta name="og:image" content="http://backrooms-wiki.wdfiles.com/local--resized-images/agonized-screams-in-stone-silence/Party/medium.jpg"/>
<meta name="description" content="Contemplating and taking my notes, I looked across the remaining ruins of the marble and stone statues within the room we kept the A.S.C.s in. The revelation that every single one was still living shocked me. They had been listening to the endless monotony of the repeated conversation and my own words. "/>
<meta name="og:description" content="Contemplating and taking my notes, I looked across the remaining ruins of the marble and stone statues within the room we kept the A.S.C.s in. The revelation that every single one was still living shocked me. They had been listening to the endless monotony of the repeated conversation and my own words. "/>
<meta name="og:site_name" content="The Backrooms Wiki"/>
<meta name="og:type" content="article"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="twitter:card" content="summary"/>
<meta http-equiv="content-language" content="en-corrections"/>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/WIKIDOT.combined.js"></script>
<style type="text/css" id="internal-style">
/* modules */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/css/pagerate/PageRateWidgetModule.css);
/* theme */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--theme/base/css/style.css);
@import url(http://backrooms-wiki.wikidot.com/local--files/component:theme/nulim-norm.min.css);
</style>
<link rel="shortcut icon" href="/local--favicon/favicon.gif"/>
<link rel="icon" type="image/gif" href="/local--favicon/favicon.gif"/>
<link rel="apple-touch-icon" href="/local--iosicon/iosicon_57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/local--iosicon/iosicon_72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/local--iosicon/iosicon.png" />
<meta name="msapplication-TileImage" content="/local--wp8icon/wp8icon.png"/>
<link rel="alternate" type="application/wiki" title="Edit this page" href="javascript:WIKIDOT.page.listeners.editClick()"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18234656-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
_gaq.push(['old._setAccount', 'UA-68540-5']);
_gaq.push(['old._setDomainName', 'none']);
_gaq.push(['old._setAllowLinker', true]);
_gaq.push(['old._trackPageview']);
</script>
<script type="text/javascript">
window.google_analytics_uacct = 'UA-18234656-1';
window.google_analytics_domain_name = 'none';
</script>
<link rel="manifest" href="/onesignal/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" acync=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: null,
});
});
</script>
<meta name="google-adsense-account" content="ca-pub-7805322678042888"/>
<style>
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');
#side-bar .side-block.languages { margin-top: 0; }
.side-block.languages .heading { margin-top: 1em; }
#side-bar .side-block.socials {
display: flex;
justify-content: space-around;
flex-direction: row;
flex-wrap: wrap;
}
#side-bar .side-block .sidebar-social {
background: rgb(var(--dark-gray-monochrome, 30, 30, 30));
color: rgb(var(--white-monochrome, 240, 240, 240));
display: inline-flex;
width: 1.25rem;
height: 1.25rem;
font-size: 1.25rem;
margin: 0.25rem;
padding: 5px;
border-radius: 5px;
text-decoration: none;
align-items: center;
justify-content: center;
transition: 0.1s;
}
#side-bar .side-block .sidebar-social:visited {
color: rgb(var(--white-monochrome, 240, 240, 240));
}
#side-bar .side-block .sidebar-social:is(:hover, :focus) {
background: rgb(var(--bright-accent, 90, 90, 90));
}
@media screen and (max-width: 56.25rem) {
#side-bar .side-block .sidebar-social {
width: 1.6rem;
height: 1.6rem;
font-size: 1.6rem;
margin: 0.3rem;
}
}
</style>
<style>
/* Site Theme */
@import url(https://backrooms-wiki.wdfiles.com/local--code/theme%3Anuliminal/1);
/* Collapsible Sidebar */
@import url("https://backrooms-wiki.wikidot.com/component:sidebar-theme/code/1");
/* User Flairs */
@import url("https://backrooms-wiki.wikidot.com/component:user-flairs/code/1");
</style>
<style>
@import url(https://backrooms-wiki.wdfiles.com/local--code/theme%3Adark-liminal-legacy/1);
</style>
<style>
.licensebox .collapsible-block-link {
margin-left: inherit;
padding: inherit;
transition: inherit;
opacity: inherit;
color: inherit;
font-weight: inherit;
}
</style>
<style>
@import url('https://backrooms-wiki.wikidot.com/component:colstyle/code/1');
</style>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/list/ListPagesModule.js"></script>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/pagerate/PageRateWidgetModule.js"></script>
</head>
<body id="html-body">
<div id="skrollr-body">
<a name="page-top"></a>
<div id="container-wrap-wrap">
<div id="container-wrap">
<div id="container">
<div id="header">
<h1><a href="/"><span>The Backrooms</span></a></h1>
<h2><span>You've been here before.</span></h2>
<!-- google_ad_section_start(weight=ignore) -->
<div id="search-top-box" class="form-search">
<form id="search-top-box-form" action="dummy" class="input-append">
<input id="search-top-box-input" class="text empty search-query" type="text" size="15" name="query" value="Search this site" onfocus="if(YAHOO.util.Dom.hasClass(this, 'empty')){YAHOO.util.Dom.removeClass(this,'empty'); this.value='';}"/><input class="button btn" type="submit" name="search" value="Search"/>
</form>
</div>
<div id="top-bar">
<div class="list-pages-box">
</div>
<div class="top-bar">
<ul>
<li><a href="/start">Home</a></li>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/top-rated-pages-this-month">Top Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a>
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
</ul>
</li>
<li><a href="/entities">Entities</a>
<ul>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
</ul>
</li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Community
<ul>
<li><a href="/forum:start">Forums</a></li>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/contest-archive">Contest Archive</a></li>
<li><a href="/page-of-the-week-archive">Page Of The Week Archive</a></li>
<li><a href="/featured-archive">Featured Archive</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/site-rules">Site Rules</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/art-page-policy">Art Page Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
</ul>
</li>
</ul>
</div>
<div class="mobile-top-bar">
<div class="open-menu">
<p><a href="#side-bar">≡</a></p>
</div>
<ul>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
<li><a href="/forum:start">Forums</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="login-status"><a href="javascript:;" onclick="WIKIDOT.page.listeners.createAccount(event)" class="login-status-create-account btn">Create account</a> <span>or</span> <a href="javascript:;" onclick="WIKIDOT.page.listeners.loginClick(event)" class="login-status-sign-in btn btn-primary">Sign in</a> </div>
<div id="header-extra-div-1"><span></span></div><div id="header-extra-div-2"><span></span></div><div id="header-extra-div-3"><span></span></div>
</div>
<div id="content-wrap">
<div id="side-bar">
<div class="side-block socials"><a class="sidebar-social fa-brands fa-x-twitter" href="/twitter"><span style="font-size:0%;">Twitter</span></a><a class="sidebar-social fa-brands fa-discord" href="/discord"><span style="font-size:0%;">Discord</span></a><a class="sidebar-social fa-brands fa-facebook" href="https://www.facebook.com/profile.php?id=61575995663725/"><span style="font-size:0%;">Facebook</span></a><a class="sidebar-social fa-brands fa-instagram" href="https://www.instagram.com/backrooms.wikidot/"><span style="font-size:0%;">Instagram</span></a><a class="sidebar-social fa-brands fa-bluesky" href="https://bsky.app/profile/ts.thebackrooms.wiki/"><span style="font-size:0%;">Bluesky</span></a><a class="sidebar-social fa-brands fa-tumblr" href="/tumblr"><span style="font-size:0%;">Tumblr</span></a></div>
<div class="side-block">
<div class="menu-item"><a href="/">Main</a> | <a href="/forum:start">Forum</a></div>
</div>
<div class="side-block">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">For New Users</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">– hide block</a></div>
<div class="collapsible-block-content">
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
<div class="menu-item">
<p><a href="/greenlight-policy">Greenlight Policy</a></p>
</div>
<div class="menu-item">
<p><a href="http://backrooms-wiki.wikidot.com/forum/c-6898685/introductions">Forum: Introduce Yourself</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="side-block languages"><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div></div>
<div class="side-block">
<div class="heading">
<p><strong>Library</strong></p>
</div>
<div class="menu-item">
<p><a href="/normal-levels-i">Levels</a>|<a href="/unnumbered-levels">Unnumbered Levels</a></p>
</div>
<div class="menu-item">
<p><a href="/entities">Entities</a>|<a href="/unnumbered-entities">Unnumbered Entities</a></p>
</div>
<div class="menu-item">
<p><a href="/phenomena">Phenomena</a>|<a href="/objects">Objects</a>|<a href="/tales">Tales</a></p>
</div>
<div class="menu-item">
<p><a href="/poi-s">POI's</a>|<a href="/groups-list">Groups</a>|<a href="/canons">Canons</a></p>
</div>
<div class="menu-item">
<p><a href="/joke-entries">Joke Pages</a>|<a href="/themes">Themes</a>|<a href="/components">Components</a></p>
</div>
<div class="menu-item">
<p><a href="/art-gallery">Art Gallery</a>|<a href="/hubs-hub">Hubs Hub</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Wiki</strong></p>
</div>
<div class="menu-item">
<p><a href="/how-many-pages">How Many Pages?</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-this-month">Top Rated New Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-by-year">Top Pages by Year</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages">Top Pages of All Time</a></p>
</div>
<div class="menu-item">
<p><a href="/most-recently-created">Newly Created Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/underread-and-underrated">Underread Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/random:random-page">Random Page</a></p>
</div>
<div class="menu-item">
<p><a href="/lowest-rated-pages">Lowest Rated Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/system:page-tags">Tags</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Community</strong></p>
</div>
<div class="menu-item">
<p><a href="/system:join">Join The Wiki</a></p>
</div>
<div class="menu-item">
<p><a href="/forum:start">Forum</a> - <a href="/forum:recent-posts">New Posts</a></p>
</div>
<div class="menu-item">
<p><a href="/translations-hub">Translations Hub</a></p>
</div>
<div class="menu-item">
<p><a href="/authors-pages">Authors' Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/meet-the-staff">Meet The Staff</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Resources</strong></p>
</div>
<div class="menu-item">
<p><a href="/faq">FAQ</a></p>
</div>
<div class="menu-item">
<p><a href="/guide-hub">Guide Hub</a></p>
</div>
<div class="menu-item">
<p><a href="http://www.backrooms-sandbox-2.wikidot.com">Sandbox</a></p>
</div>
<div class="menu-item">
<p><a href="/system:recent-changes">Recent Changes</a></p>
</div>
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
</div>
<div style="clear:both; height: 0px; font-size: 1px"></div>
<p><a class="open-menu" href="#side-bar"><br /></a></p>
<a class="close-menu" href="##"><br />
<img src="https://scp-wiki.wdfiles.com/local--files/nav:side/black.png" style="z-index:-1; opacity: 0.3;" alt="black.png" class="image" /><br /></a>
</div>
<!-- google_ad_section_end -->
<div id="main-content">
<div id="action-area-top"></div>
<div id="page-title">
Agonized Screams In Stone Silence
</div>
<div id="page-content">
<div style="text-align: right;"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+11</span></span><span class="rateup btn btn-default"><a title="I like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, 1)">+</a></span><span class="ratedown btn btn-default"><a title="I don't like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, -1)">–</a></span><span class="cancel btn btn-default"><a title="Cancel my vote" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.cancelVote(event)">x</a></span></div></div>
<p>Hello?</p>
<p>…</p>
<p>Yes?</p>
<p>…</p>
<p>Goodbye.</p>
<p>…</p>
<p>Farewell.</p>
<p>…</p>
<p>Good day.</p>
<p>…</p>
<p>Yes?</p>
<p>…</p>
<p>Goodbye.</p>
<div style="text-align: center;">
<p>And they continued in the same circular logic—words devouring thoughts in repeated cycles like an ouroboros—the incomprehensible eternity of an ending that never comes. I listen and watch as they perpetuate the mindless monotony of the same cycle of three words: the greeting, the acknowledgment, and the end. Their world was now morphed into the same snapshot of a welcome. It felt impossible to interrupt them… sacrilege.</p>
<p>It all came to an end when I was given the task of questioning them for further understanding and knowledge of these individual creatures. Carefully, I approached the gathering of three marble statues, clearing my throat quietly as I did.</p>
</div>
<p>Greetings.</p>
<p>…</p>
<p>Yes?</p>
<p>…</p>
<p>Excuse me, but I have questions.</p>
<p>…</p>
<p>Yes?</p>
<div style="text-align: center;">
<p>The second replied after the silence of the broken chain filled the air. I felt the judgment of their thoughts weigh whilst I stood and attempted to figure out a response. Despite two of the trio lacking heads, I felt as though the unmoving statues had shifted their audience to me.</p>
</div>
<p>Are they going to continue?</p>
<p>…</p>
<p>I reckon they will not.</p>
<p>…</p>
<p>Alas, they’re still standing.</p>
<p>…</p>
<p>Yes.</p>
<p>…</p>
<p>Goodbye.</p>
<div style="text-align: center;">
<p>It seemed as if the pair had dismissed my approach and offer before I even had time to speak. During it, I was meticulously writing down every detail of the encounter. Only then did I choose to awaken the two again with my interrogation.</p>
</div>
<p>Sorry, I just wanted to take a moment and record what you two were saying. Now I can begin…</p>
<p>…</p>
<p>Ah, it speaks again!</p>
<p>…</p>
<p>Yes. It does speak again.</p>
<p>…</p>
<p>Could I know why you two just… continue to speak those same three lines? I almost believed one of you to be broken, given the repetition of “yes” and such…</p>
<p>…</p>
<p>They ask why our cycle restarts. Humorous, isn’t it?</p>
<p>…</p>
<p>Yes, quite.</p>
<p>…</p>
<p>Well, what’s the reason? I almost feel like you two are taunting me now.</p>
<p>…</p>
<p>I am the speaker, and they have become my new listeners. It is the sole reason for my existence.</p>
<p>…</p>
<p>Yes. It’s all we’re good for now.</p>
<p>…</p>
<p>They’re all broken beyond repair. One is stuck in circles, and the others scream in stone silence.</p>
<p>…</p>
<p>I’m having a hard time understanding… I can see they’re physically broken, but why is one capable of speaking and not the others? Maybe they could answer it directly?</p>
<p>…</p>
<p>Yes.</p>
<p>…</p>
<p>Why are you one of the others capable of speaking?</p>
<p>…</p>
<p>Sheer luck.</p>
<p>…</p>
<p>She tells the truth.</p>
<p>…</p>
<p>What? Because you just happened to retain that ability? The location we salvaged you from was notably more intact than many others. It’s very difficult to find constructs, let alone ones that aren’t in pieces.</p>
<p>…</p>
<p>Circumstance deems it possible that she could retain the ability. However, I deem it my role to keep all the others here entertained.</p>
<p>…</p>
<p>Yes. That is her role.</p>
<p>…</p>
<p>Oh, so these others… can you still hear us? Are they still living?</p>
<p>…</p>
<p>That’s correct. All are still living.</p>
<p>…</p>
<p>Yes.</p>
<div style="text-align: center;">
<p>Contemplating and taking my notes, I looked across the remaining ruins of the marble and stone statues within the room we kept the A.S.C.s in. The revelation that every single one was still living shocked me. They had been listening to the endless monotony of the repeated conversation and my own words. Something about that fact felt wrong. The intact one put it best; they scream in stone silence.</p>
</div>
<p>Well, if you can speak for them all, what might your names be? It’s important for people’s documentation of you.</p>
<p>…</p>
<p>Yes?</p>
<p>…</p>
<p>Well, you haven’t even introduced yourself! Tsk tsk…</p>
<p>…</p>
<p>No introduction. Shame.</p>
<p>…</p>
<p>Apologies, I’m Professor McDean. I was sent to help study and learn more about you all.</p>
<p>…</p>
<p>Professor. I see… You may call me Madam Dianna.</p>
<p>…</p>
<p>What about your friend here? Can they introduce themself too?</p>
<p>…</p>
<p>Yes. Persephone.</p>
<p>…</p>
<p>Oh, that’s a pretty name! Both of your names are nice, actually. How about all the others? Could you maybe tell me their names?</p>
<p>…</p>
<p>The broken? Their names? Pick one and I’ll attempt to recall.</p>
<p>…</p>
<p>Yes. She’ll recall.</p>
<p>…</p>
<p>How about the one that is seated with the two of you? She’s your size, Dianna.</p>
<p>…</p>
<p>Ah, her. That would be Daphne.</p>
<p>…</p>
<p>How about the torso that we have displayed against the nearby wall?</p>
<p>…</p>
<p>She would be Cicatriz. That’s something they were called before they ended up so mangled. They were merely missing a leg before this.</p>
<p>…</p>
<p>Yes.</p>
<p>…</p>
<p>Interesting… How did you all ever end up knowing each other if you were statues? It isn’t like you all could move.</p>
<p>…</p>
<p>Words travel. Gossip roams.</p>
<p>…</p>
<p>Yes. The news travels by word of mouth.</p>
<p>…</p>
<p>Would people just keep you updated then? Well, guess that helps break up the monotony of being stuck in one place all the time.</p>
<p>…</p>
<p>Ah, some of the others like yourself enjoyed it. They’d be sure to keep me informed all the time.</p>
<p>…</p>
<p>Lest we forget the conversations, yes?</p>
<p>…</p>
<p>Absolutely not. I’m sure Cicatriz and Daphne also miss the conversations. How lonely they must be…</p>
<p>…</p>
<p>Ah yeah, those broken ones must not have great lives. How come they aren’t uh… dead? Can you all even die?</p>
<div style="text-align: center;">
<p>To my surprise, the pair suddenly went quiet. I didn’t know if what I said was something blasphemous or simply unheard of. How does such a thing die? Does it simply continue to be until the very stone of its body erodes to dust? It certainly wouldn’t be a death like ours. How could Dianna and Persephone know if the pair were still alive? Was there even any definitive proof they had? I suppose I could only take their word for it.</p>
</div>
<p>Did I say something wrong? I’m dreadfully sorry if so. This is all for research, I assure you.</p>
<p>…</p>
<p>What you ask is not something we have an answer to. Only God knows.</p>
<p>…</p>
<p>Yes.</p>
<p>…</p>
<p>Neither of you two can answer both of those questions? How can you even tell they’re still alive if you’re not sure if you can even die?</p>
<p>…</p>
<p>We hear the voices you do not, dear. The insistent mutters and gasps for air, the whimpers and pleads, everything they attempt to get out. They’re trapped in their own cages of solitude. They can hear all of us, but you… flesh things can’t.</p>
<p>…</p>
<p>Yes. That is simply how it is.</p>
<p>…</p>
<p>Now, goodbye. I would say you’ve overstayed your welcome with that.</p>
<div style="text-align: center;">
<p>With that, I withdrew myself and left the group to be in silence. I walked the tile flooring and returned through the archive halls. The whole way, I contemplated my own existence. Were they any different than us in the way they continue to comfort the irreparable?</p>
<p>Once I had returned to my station at the observatory, I continued to look down through the windows at the A.S.C. storage. Faintly, I could hear the continuation of the circular logic. Again, their loop of unending greetings continued. All the broken constructs around them could only watch and listen. Daphne, and Cicatriz, all stuck to listen, agonized and screaming in stone silence. I couldn’t imagine how much worse it was before we found them, back when they were buried in rubble and dirt.</p>
<p>After what felt like an hour of watching, I finally took out a laptop. I decided to put in a request that would perhaps provide me with further understanding.</p>
<p>They picked out one of the two, Cicatriz. They were by far in the worst shape out of all the others kept in storage. The nude marble torso of her form was laid on a metal table, almost as if I were going to conduct an operation on them. To my right, a one-way window acted as the way for the other analysts and biologists to watch. Now, with all the preparation out of the way, I took out all the tools I would be using. All sorts of miscellaneous paranormal hunting equipment, set out neatly around Cicatriz in the hopes that it could pick up on anything.</p>
</div>
<p>…</p>
<p>Now that I have things set up, I can presumably hear you.</p>
<p>…</p>
<p>It’s okay to talk, I have some things you can try to use. There’s a small EVP device cycling through signals. Try talking to me using it.</p>
<p>…</p>
<p>Kzzt…Great… Aaa… the…</p>
<p>…</p>
<p>Did you say something? I can’t really understand it over all the static.</p>
<p>…</p>
<p>Going… Mmm… there it is… kssst…</p>
<p>…</p>
<p>Going? Is that what you said? Can you say something if you can hear me?</p>
<p>…</p>
<p>H… Ear… Kzzt… Yessiree…</p>
<p>…</p>
<p>Oh, this is perfect- Cicatriz is your name, right? It must be wonderful being able to speak after so long.</p>
<p>…</p>
<p>Bzzt… Seek… Trip… Mmm… Bzzt… M… Cuh… Dean…</p>
<p>…</p>
<p>I can almost tell what you’re trying to say, but this is definitely hard. I swear you also said my name there. Do you remember me from a few hours ago?</p>
<p>…</p>
<p>Yes… Aaa…</p>
<p>…</p>
<p>One of the clearest responses I’ve heard tonight… Uh, are you unhappy?</p>
<p>…</p>
<p>Nmm… Aaa… Calling it… Ksst… Empty…</p>
<p>…</p>
<p>Would that be a yes? I’m sorry to hear. We’re here to help though. Do you want to go back to that room with the others, or be put somewhere where you’ll get the chance to socialize?</p>
<p>…</p>
<p>New… Kzzt… Go… What you… Mmt… Away…</p>
<p>…</p>
<p>I hear that you want to be moved somewhere else. Is this correct? Can you give me a sign?</p>
<p>…</p>
<p>Aaa… Bzzt… Sss… Core… Eh… Kzzt…</p>
<p>…</p>
<p>Correct? I’m hearing a confirmation… I’ll take you there, but I have some other questions, okay?</p>
<p>…</p>
<p>Mmmt… Shoot…</p>
<p>…</p>
<p>Are you in pain?</p>
<div style="text-align: center;">
<p>As soon as I asked, the communications from the EVP machine ceased. A strong static overcame whatever response I would’ve received, and as if it were on cue, the electromagnetic sensor pods began to flash and beep with life. I was unsure if that was them attempting to convey their suffering. The volume of devices going off around me was almost startling, causing me to recoil and stumble backward a few steps.</p>
</div>
<p>…</p>
<p>I think you’ve made your answer very clear to me… Could you tell me if being around people would actually make you feel better?</p>
<p>…</p>
<p>Sss… Bzzt… Bzzt…</p>
<p>…</p>
<p>Um, hello? Are you still there? Are you just unsure?</p>
<p>…</p>
<p>Miss… Bzzt… Her… Eee…</p>
<p>…</p>
<p>Miss what? Oh! Oh, I see… misery. My condolences Cicatriz, I had a feeling being like this isn’t the best.</p>
<p>…</p>
<p>Kzzt… Apollo… Sssh… Geez… Bzzt… Do it… Out…</p>
<p>…</p>
<p>Eager to go, are you? I’m glad you’re warming up to the idea, but I need to ask my supervisors if I can do that, okay? I’m going to turn these devices off, then I’ll move you.</p>
<p>…</p>
<p>Aaaa… Ghh… Mmmt…</p>
<div style="text-align: center;">
<p>The noises from the device continued as I shut off each machine one by one, leaving the EVP machine for last just in case Cicatriz had much else to say. Nonetheless, the time soon came when I had to shut it off. As hesitant as I was about doing it, I eventually clicked the button and packed it into the box where it belonged. The stunning silence contrasted the white noise I had listened so intensely to. For a moment, I continued to stare at Cicatriz’s broken body, knowing they still had so much to say.</p>
<p>My superiors were there to greet me on the other side of the examination room. They all had their notebooks and other methods of documentation, although they also handed me two slips of paper; a protocol for where Cicatriz would be stored for display, and a notice about similar tests I would conduct on the other damaged A.S.C.s in storage. Orders were orders, and as much as I thought it would be best to inquire more about whether the other A.S.C.s like Cicatriz even wanted to continue living, I knew it would be contentious.</p>
<p>How were we to give up history and a possible wealth of knowledge? Simultaneously, was it right to continue allowing them to suffer in such a state? Despite how little time I had with them, I still felt like I could gauge whether or not they had the desire to continue being. After I was given the time to move Cicatriz, I carefully loaded them into the cushioned cart. Just in case, I unpacked the EVP machine and set it with them in the cart.</p>
</div>
<p>…</p>
<p>Bzzt… Move… Ghhz… Rooms ah… Aaa… Ahead…</p>
<p>…</p>
<p>That’s right, you’re being moved to a place where you’ll get visitors.</p>
<p>…</p>
<p>Tssh… Kzzt… Mmmt… More… Aaaa…</p>
<p>…</p>
<p>I’m sorry Cicatriz, but I’m really struggling to understand what you’re trying to tell me. I’m sorry things have to be like this…</p>
<p>…</p>
<p>Bzzt… Mmmt… Brrt… Accept… Kzzt… All okay…</p>
<p>…</p>
<p>Are you sure everything is okay though? You don’t have to continue being like this. I’m not even sure you all can die. Can you?</p>
<p>…</p>
<p>Peace… Aaa… Bzzt… Bzzt… Unable… All… Aaa… Mmm… Peaceful…</p>
<p>…</p>
<p>You’re at peace? Even like this, you’re still fine with continuing on?</p>
<p>…</p>
<p>Mmmm… Sszt… Train… Bzzt… Quill… World…</p>
<p>…</p>
<p>Tranquil world? I’ll respect your opinion. I’m just baffled that you’re seemingly optimistic.</p>
<p>…</p>
<p>Tssh… Bzzt… Excite… New… Mmm… Thank you… Kzzt…</p>
<div style="text-align: center;">
<p>At this point, Cicatriz and I arrived at a backdoor into the new place where Cicatriz would be displayed. I entered The Castellos Collection, which was currently empty given the time of day. Past the small displays of the living entities tended to by the zookeepers was a display for temporary exhibits on entities. Thankfully, it seemed like a few attendants had already set up a comfortable stand for them.</p>
<p>Amongst the sound of the EVP static, I gently reached down to lift Cicatriz’s heavy torso. It was a bit of a haul, but eventually, I had enough leverage to carefully prop them up on the cushioned bars of the stand. Right after, I moved the device they had been using to talk. Lucky for them, I also brought wires to keep it powered, making sure everything was stable before plugging it in. The whole time, the static buzzed with life and words of delight and excitement. It practically drew all the other workers in the room to curiously observe.</p>
<p>I could only assume she was incredibly thankful for what I had done, even if I wasn’t sure it was the best choice to make. However, as much as I wished I could stay to listen, I knew I had a job to do. I said my own thanks to Cicatriz, returning to the halls and storage to copy the same task with others.</p>
</div>
<br />
<div class="lightblock">
<div style="text-align: center;">
<p><span style="font-size:150%;"><strong>New Exhibit Notice!</strong></span></p>
</div>
<div class="scp-image-block block-left" style="width:300px;"><a href="https://backrooms-wiki.wdfiles.com/local--files/agonized-screams-in-stone-silence/Party"><img src="https://backrooms-wiki.wdfiles.com/local--resized-images/agonized-screams-in-stone-silence/Party/medium.jpg" alt="Missing alt text." class="image" /></a>
<div class="scp-image-caption" style="width:300px; displ{$captionless}y:none;">
<p>A display of our beloved constructs.</p>
</div>
</div>
<p>As of October 31st, we at The I.M.B.H.’s Castellos Collection are proud to present Spoken In Stone, a spooky new permanent display where guests can interact with Administrative Sentinel Constructs! Thanks to the work of Professor McDean, visitors to this exhibit can meet and ask questions to the mysterious Cicatriz, the poetic Dianna, the introverted Persephone, and the shy Daphne!</p>
<p>If you or someone you know would like to have a guided tour to be taught more about the discovery and history of these A.S.C.s, the hours are as follows:</p>
<hr />
<div style="text-align: center;">
<p><strong>Monday-Wednesday:</strong><br />
9:30 AM - 10:45 AM<br />
12:30 PM - 1:45 PM<br />
3:30 PM - 4:45 PM</p>
<p><strong>Thursday-Friday:</strong><br />
12:30 PM - 1:45 PM<br />
3:30 PM - 4:45 PM<br />
5:30 PM - 6:45 PM</p>
<p><strong>Weekends:</strong><br />
1:00 PM - 2:30 PM<br />
3:00 PM- 4:30 PM</p>
</div>
<br />
Otherwise, guests can visit as they please!
<p>For any comments or questions, visitors and guests can contact us by email to schedule trips in advance or speak to museum staff at the atrium’s directories.</p>
</div>
<div class="licensebox">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">‡ Licensing / Citation</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">‡ Hide Licensing / Citation</a></div>
<div class="collapsible-block-content">
<p>Cite this page as:</p>
<div class="list-pages-box"> <div class="list-pages-item">
<blockquote>
<p>"<a href="/agonized-screams-in-stone-silence">Agonized Screams In Stone Silence</a>" by RoseMonsignor, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/agonized-screams-in-stone-silence">https://backrooms-wiki.wikidot.com/agonized-screams-in-stone-silence</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</p>
</blockquote>
</div>
</div>
<div class="colmod-block">
<ul>
<li class="folded">
<ul>
<li style="list-style: none">_</li>
</ul>
<div class="colmod-link-top">
<div class="foldable-list-container"><a href="javascript:;">+ Embed citation as HTML</a><a href="javascript:;">- Embed citation as HTML</a></div>
</div>
<div class="colmod-content"><div class="list-pages-box"> <div class="list-pages-item">
<div class="code" style="user-select: all;">
<p><span style="white-space: pre-wrap;">"<a href="https://backrooms-wiki.wikidot.com/agonized-screams-in-stone-silence">Agonized Screams In Stone Silence</a>" by RoseMonsignor, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/agonized-screams-in-stone-silence">https://backrooms-wiki.wikidot.com/agonized-screams-in-stone-silence</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</span></p>
</div>
</div>
</div></div>
<div>
<div class="foldable-list-container"></div>
</div>
</li>
</ul>
</div>
<hr />
<div class="content-separator" style="display: none:"></div>
<blockquote>
<p><strong>Name:</strong> Party of Four<br />
<strong>Author:</strong> RoseMonsignor<br />
<strong>License:</strong> CC-BY-SA 3.0<br />
<strong>Source Link:</strong> Original Image</p>
</blockquote>
<div class="content-separator" style="display: none:"></div>
<div class="content-separator" style="display: none:"></div>
<p>For more information about on-wiki content, visit the <a href="/licensing-master-list">Licensing Master List</a>.</p>
</div>
</div>
</div>
</div>
</div>
<div class="page-tags">
<span>
<a href="/system:page-tags/tag/_cc#pages">_cc</a><a href="/system:page-tags/tag/_licensebox#pages">_licensebox</a><a href="/system:page-tags/tag/_metatag#pages">_metatag</a><a href="/system:page-tags/tag/horror#pages">horror</a><a href="/system:page-tags/tag/i.m.b.h.#pages">i.m.b.h.</a><a href="/system:page-tags/tag/mystery#pages">mystery</a><a href="/system:page-tags/tag/nostalgia#pages">nostalgia</a><a href="/system:page-tags/tag/tale#pages">tale</a><a href="/system:page-tags/tag/tragedy#pages">tragedy</a><a href="/system:page-tags/tag/wonder#pages">wonder</a>
</span>
</div>
<div id="page-info-break"></div>
<div id="page-options-container">
<div id="page-info">page revision: 11, last edited: <span class="odate time_1743249573 format_%25e%20%25b%20%25Y%2C%20%25H%3A%25M%20%28%25O%20ago%29">29 Mar 2025 11:59</span></div>
<div id="page-options-bottom" class="page-options-bottom">
<a href="javascript:;" class="btn btn-default" id="edit-button">Edit</a>
<a href="javascript:;" class="btn btn-default" id="pagerate-button">Rate (<span id="prw54355">+11</span>)</a>
<a href="javascript:;" class="btn btn-default" id="tags-button">Tags</a>
<a href="/forum/t-16433024/agonized-screams-in-stone-silence" class="btn btn-default" id="discuss-button">Discuss (3)</a>
<a href="javascript:;" class="btn btn-default" id="history-button">History</a>
<a href="javascript:;" class="btn btn-default" id="files-button">Files</a>
<a href="javascript:;" class="btn btn-default" id="print-button">Print</a>
<a href="javascript:;" class="btn btn-default" id="site-tools-button">Site tools</a>
<a href="javascript:;" class="btn btn-default" id="more-options-button">+ Options</a>
</div>
<div id="page-options-bottom-2" class="page-options-bottom form-actions" style="display:none">
<a href="javascript:;" class="btn btn-default" id="edit-sections-button">Edit Sections</a>
<a href="javascript:;" class="btn btn-default" id="edit-append-button">Append</a>
<a href="javascript:;" class="btn btn-default" id="edit-meta-button">Edit Meta</a>
<a href="javascript:;" class="btn btn-default" id="watchers-button">Watchers</a>
<a href="javascript:;" class="btn btn-default" id="backlinks-button">Backlinks</a>
<a href="javascript:;" class="btn btn-default" id="view-source-button">Page Source</a>
<a href="javascript:;" class="btn btn-default" id="parent-page-button">Parent</a>
<a href="javascript:;" class="btn btn-default" id="page-block-button">Lock Page</a>
<a href="javascript:;" class="btn btn-default" id="rename-move-button">Rename</a>
<a href="javascript:;" class="btn btn-default" id="delete-button">Delete</a>
</div>
<div id="page-options-area-bottom">
</div>
</div>
<div id="action-area" style="display: none;"></div>
</div>
</div>
<div id="footer" style="display: block; visibility: visible;">
<div class="options" style="display: block; visibility: visible;">
<a href="http://www.wikidot.com/doc" id="wikidot-help-button">Help</a>
|
<a href="http://www.wikidot.com/legal:terms-of-service" id="wikidot-tos-button">Terms of Service</a>
|
<a href="http://www.wikidot.com/legal:privacy-policy" id="wikidot-privacy-button">Privacy</a>
|
<a href="javascript:;" id="bug-report-button" onclick="WIKIDOT.page.listeners.pageBugReport(event)">Report a bug</a>
|
<a href="javascript:;" id="abuse-report-button" onclick="WIKIDOT.page.listeners.flagPageObjectionable(event)">Flag as objectionable</a>
<span id="consent-box" style="display:none">
|
<a href="javascript:;" onclick="window.__cmp('showModal');">Update cookie settings</a>
</span>
<script>
if (window["nitroAds"] && window["nitroAds"].loaded) {
document.getElementById("consent-box").style.display = window["__tcfapi"] ? "" : "none";
} else {
document.addEventListener(
"nitroAds.loaded",
() =>
(document.getElementById("consent-box").style.display = window["__tcfapi"] ? "" : "none")
);
}
</script>
</div>
Powered by <a href="http://www.wikidot.com">Wikidot.com</a>
</div>
<div id="license-area" class="license-area">
Unless otherwise stated, the content of this page is licensed under
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 License</a>
</div>