summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/archive-of-our-own/source.html
blob: 5e1d866bdd2e267baa7d99bbe3c0674162726568 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <meta charset="utf-8" />
        <meta http-equiv="x-ua-compatible" content="ie=edge" />
        <script>
        <![CDATA[
        window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"f2edcff25e","applicationID":"190034","transactionName":"dgwMEkpfWVsHERpRXlQTFgNKQxpECgxC","queueTime":0,"applicationTime":151,"agent":""}
        ]]>
        </script>
        <meta name="keywords" content="fanfiction, transformative works, otw, fair use, archive" />
        <meta name="language" content="en-US" />
        <meta name="subject" content="fandom" />
        <meta name="description" content="An Archive of Our Own, a project of the Organization for Transformative Works" />
        <meta name="distribution" content="GLOBAL" />
        <meta name="classification" content="transformative works" />
        <meta name="author" content="Organization for Transformative Works" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>
            Conversations with a Cryptid - Chapter 1 - AMournfulHowlInTheNight - 僕のヒーローアカデミア | Boku no Hero Academia | My Hero Academia [Archive of Our Own]
        </title>
        <link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/skins/skin_873_archive_2_0/A.1_site_screen_.css.pagespeed.cf.zstKgD8I8e.css" />
        <link rel="stylesheet" type="text/css" media="only screen and (max-width: 42em), handheld" href="/stylesheets/skins/skin_873_archive_2_0/A.5_site_narrow.handheld_.css.pagespeed.cf.8L0d7x-op8.css" />
        <link rel="stylesheet" type="text/css" media="speech" href="/stylesheets/skins/skin_873_archive_2_0/A.6_site_speech_.css.pagespeed.cf.Ybb8bLK5Um.css" />
        <link rel="stylesheet" type="text/css" media="print" href="/stylesheets/skins/skin_873_archive_2_0/A.7_site_print_.css.pagespeed.cf.ry3YZtf8Cz.css" /><!--[if IE 8]><link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/skins/skin_873_archive_2_0/8_site_screen_IE8_or_lower.css" /><![endif]-->
        <!--[if IE 5]><link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/skins/skin_873_archive_2_0/9_site_screen_IE5.css" /><![endif]-->
        <!--[if IE 6]><link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/skins/skin_873_archive_2_0/10_site_screen_IE6.css" /><![endif]-->
        <!--[if IE 7]><link rel="stylesheet" type="text/css" media="screen" href="/stylesheets/skins/skin_873_archive_2_0/11_site_screen_IE7.css" /><![endif]-->
        <!--sandbox for developers      -->

        <script src="/javascripts/livevalidation_standalone.js.pagespeed.jm.oB__Z5piTe.js"></script>
        <meta name="csrf-param" content="authenticity_token" />
        <meta name="csrf-token" content="bN8HBcdvyL0UOkBQ1i6VKpYrU3B3p9SDgyEfw7VF91Emc96IFSfO1EsmbXGuF0NQ1iGv/rDIE6Qj/Q/c82uoyw==" />
    </head>
    <body class="logged-out">
        <div id="outer" class="wrapper">
            <ul id="skiplinks">
                <li>
                    <a href="#main">Main Content</a>
                </li>
            </ul><!-- BEGIN BETA CAVEATS! -->
             <noscript>
            <p id="javascript-warning">
                While we've done our best to make the core functionality of this site accessible without javascript, it will work better with it enabled. Please consider turning it on!
            </p></noscript> <!-- END BETA CAVEATS! --> <!-- BEGIN header -->
            <div id="header" class="region">
                <h1 class="heading">
                    <a href="/"><span>Archive of Our Own</span> <sup>beta</sup>
                    <img alt="Archive of Our Own" class="logo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAAqCAMAAAA3b6P4AAACslBMVEWXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACXAACpit0XAAAA5XRSTlMAAQIDBAUGBwgJCgsMDQ4PEBESFBUWFxgZGhscHR4fICEiIyQlJygpKissLi8wMTM0NTY3ODk6Ozw9PkBBQkNFR0hJSktMTU5PUFFSVFVWV1hZWltcXV5fY2RlZmhpamtsbW5vcHFyc3V2d3p7fX5/gIGCg4SFhoeIiouMjY6PkJGSlJWWl5iZmpucnZ6foKGipKWnqKmrrK2ur7CxsrO0tba3uLm6u7y9vr/AwsPFxsfIycrLzM7P0NLT1NXW19na29zd3t/g4eLj5OXm5+jp6uvs7e7v8PHy8/T19vf4+fr7/P3+b1plRQAABBRJREFUSMedlvtb1FUQxgcEBMtQggUCxVACu1ApYmRmUqESkCkUREaS4h3JCDONEFPBoBQCJcDIGxkGKYGBkgGSAq4BARIXWWA//0c/7J39LvY0P82cd97nzJlzZuaIKvBRmVqmP/XOrrQNIbOVsNfyjq/3nYrs/1GlWjPe90v28wrgnOiDP7ddeN9WAE47O9DLQI6PksfDMWVjnfuDlCC3b4HbpYcOFjUC9UHKWywtQZNpjTmdgu60uSIis979HRr8bIT4YjVDqV6TFlPgVqjxjBegyM4MfSPepDsm9tAcb5mwHnpfMJmq39C+ZLQCytrfM3deUAylwWYL2+BTc4eICU4aNk/pLgm0DNQuqY+/Nk8zmuX0PmFx83V0eIiIyOPlmq3Wpw+tg1OG7Lk1c8YSzmZsqYhIhLp7pVLy3AugLUqnz73L15boHogUke1cW6ic+5n7QJvhLCLic4cTlmAGRIhdFhfdlcmPpUjCfSj3FpEZ9dQ5W6CFDPrLIc652rj2FWUi0f1wdZGI5DERbg56dlIvO6hyt1UTe8pEZKUa1JEiMVBhDu6GzbHc8LFZUSXHRUTC/oShBHG5DKkmbPUg1xPujSyxSba/sltEREJuA9tl0Qikz9JD8f1ovrjOVtvF7NexRqcsVgOfSIIW6pMDVe7z3zwLHDjFeSfb7GV/P6fXwrqATInuAvraWruB0U2bx4aenqKRJA/MMairhoAsCczr1TWH8dPLfO7w2VRtqKDZFFjsOHBY5JmNX549dzQ5ROQkLY9MQbZvKDCzNgHkGCvaLRGOznS2zQ6e2GJu7gXY7/3kiqQj52ubbo9C143asm2hLsrsD3jV8l2PAbcGsBRN9VuK7B+Gvc3N+WnDKEuqAtlz8FdT37J/5dhdk3vbxUb4Y23UusT08nZAobyTSDeoD8VUmKja3DCVcylk6LB5J7Qcts54Ncv13PVXDMQWLfC9o4SOMxqmd/TqocSKvZirTiIiTusM3NbM5aq9AGccPoYaB73jwn/ItWJ/xQ4RkTWVOupg4VqViEw7ApBTA5l6P9/T8LrV1veHA0RCirQANKU/q193KdZHEiUiMjc2vxUO2E9ml5MlXhn9ANRsVJmAWdUAjAaLiKoRaN9pRX6bdv9VjQD8FGv5HgNuAjS5ioj3Hd3jnyS+7RQfA+BSpONkMFwD5OvOVzEClZNmuV0hE/cAqqOmK7yjD4ENen1Jhpo+y6xt1SXmWoKNEtzS8qOn0Zi3jw7z1hg+BNCZ5m2z/DxmmFuZ7DKbATeBsYKgKX8/C6JNehjfmEZ3DlAb8YC/k1dVlrHx5LHaNNZ7GElzlQdJwOXaOA8REb9sSh2Myw5xn78s/0Fmpzc0V+TmVY1y2lP+h3jF5l9qvPpdnP4I/wITXDY67Xw1sAAAAABJRU5ErkJggg==" data-pagespeed-url-hash="4179492045" onload="pagespeed.CriticalImages.checkImageForCriticality(this);" /></a>
                </h1>
                <div id="login" class="dropdown">
                    <p class="user actions" role="menu">
                        <a id="login-dropdown" href="/users/login">Log In</a>
                    </p>
                    <div id="small_login" class="simple login">
                        <form id="new_user_session_small" class="new_user" action="/users/login" accept-charset="UTF-8" method="post" name="new_user_session_small">
                            <input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="IKnUNIOUNBcue2xgQNZzUM9IsxjXyzS4muUIvDSXT5pqBQ25UdwyfnFnQUE476Uqj0JPlhCk8586ORijcrkQAA==" />
                            <dl>
                                <dt>
                                    <label for="user_session_login_small">User name or email:</label>
                                </dt>
                                <dd>
                                    <input id="user_session_login_small" type="text" name="user[login]" />
                                </dd>
                                <dt>
                                    <label for="user_session_password_small">Password:</label>
                                </dt>
                                <dd>
                                    <input id="user_session_password_small" type="password" name="user[password]" />
                                </dd>
                            </dl>
                            <p class="submit actions">
                                <label for="user_remember_me_small" class="action"><input type="checkbox" name="user[remember_me]" id="user_remember_me_small" value="1" />Remember Me</label> <input type="submit" name="commit" value="Log In" />
                            </p>
                        </form>
                        <ul class="footnote actions">
                            <li>
                                <a href="/users/password/new">Forgot password?</a>
                            </li>
                            <li>
                                <a href="/invite_requests">Get an Invitation</a>
                            </li>
                        </ul>
                    </div>
                </div>
                <h3 class="landmark heading">
                    Site Navigation
                </h3>
                <ul class="primary navigation actions" role="navigation">
                    <li class="dropdown">
                        <a href="/menu/fandoms">Fandoms</a>
                        <ul class="menu" role="menu">
                            <li>
                                <a href="/media">All Fandoms</a>
                            </li>
                            <li id="medium_5">
                                <a href="/media/Anime%20*a*%20Manga/fandoms">Anime &amp; Manga</a>
                            </li>
                            <li id="medium_3">
                                <a href="/media/Books%20*a*%20Literature/fandoms">Books &amp; Literature</a>
                            </li>
                            <li id="medium_4">
                                <a href="/media/Cartoons%20*a*%20Comics%20*a*%20Graphic%20Novels/fandoms">Cartoons &amp; Comics &amp; Graphic Novels</a>
                            </li>
                            <li id="medium_7">
                                <a href="/media/Celebrities%20*a*%20Real%20People/fandoms">Celebrities &amp; Real People</a>
                            </li>
                            <li id="medium_2">
                                <a href="/media/Movies/fandoms">Movies</a>
                            </li>
                            <li id="medium_6">
                                <a href="/media/Music%20*a*%20Bands/fandoms">Music &amp; Bands</a>
                            </li>
                            <li id="medium_8">
                                <a href="/media/Other%20Media/fandoms">Other Media</a>
                            </li>
                            <li id="medium_30198">
                                <a href="/media/Theater/fandoms">Theater</a>
                            </li>
                            <li id="medium_1">
                                <a href="/media/TV%20Shows/fandoms">TV Shows</a>
                            </li>
                            <li id="medium_476">
                                <a href="/media/Video%20Games/fandoms">Video Games</a>
                            </li>
                            <li id="medium_9971">
                                <a href="/media/Uncategorized%20Fandoms/fandoms">Uncategorized Fandoms</a>
                            </li>
                        </ul>
                    </li>
                    <li class="dropdown">
                        <a href="/menu/browse">Browse</a>
                        <ul class="menu" role="menu">
                            <li>
                                <a href="/works">Works</a>
                            </li>
                            <li>
                                <a href="/bookmarks">Bookmarks</a>
                            </li>
                            <li>
                                <a href="/tags">Tags</a>
                            </li>
                            <li>
                                <a href="/collections">Collections</a>
                            </li>
                        </ul>
                    </li>
                    <li class="dropdown">
                        <a href="/menu/search">Search</a>
                        <ul class="menu" role="menu">
                            <li>
                                <a href="/works/search">Works</a>
                            </li>
                            <li>
                                <a href="/bookmarks/search">Bookmarks</a>
                            </li>
                            <li>
                                <a href="/tags/search">Tags</a>
                            </li>
                            <li>
                                <a href="/people/search">People</a>
                            </li>
                        </ul>
                    </li>
                    <li class="dropdown">
                        <a href="/menu/about">About</a>
                        <ul class="menu" role="menu">
                            <li>
                                <a href="/about">About Us</a>
                            </li>
                            <li>
                                <a href="/admin_posts">News</a>
                            </li>
                            <li>
                                <a href="/faq">FAQ</a>
                            </li>
                            <li>
                                <a href="/wrangling_guidelines">Wrangling Guidelines</a>
                            </li>
                            <li>
                                <a href="/donate">Donate or Volunteer</a>
                            </li>
                        </ul>
                    </li>
                    <li class="search">
                        <form class="search" id="search" action="/works/search" accept-charset="UTF-8" method="get" name="search">
                            <input name="utf8" type="hidden" value="✓" />
                            <fieldset>
                                <legend>Search Works</legend>
                                <p>
                                    <label class="landmark" for="site_search">Work Search:</label> <input class="text" id="site_search" aria-describedby="site_search_tooltip" type="text" name="work_search[query]" /> <span class="tip" role="tooltip" id="site_search_tooltip">tip: katekyou "alternate universe" sort:&gt;words</span> <span class="submit actions"><input type="submit" value="Search" class="button" /></span>
                                </p>
                            </fieldset>
                        </form>
                    </li>
                </ul>
                <div class="clear"></div>
            </div><!-- END header -->
            <div id="inner" class="wrapper">
                <!-- BEGIN sidebar -->
                <!-- END sidebar -->
                <!-- BEGIN main -->
                <div id="main" class="chapters-show region" role="main">
                    <div class="flash"></div><!--page description, messages-->
                    <!--/descriptions-->
                    <!--subnav-->
                    <!--/subnav-->
                    <!-- BEGIN work -->
                    <div class="work">
                        <p class="landmark">
                            <a name="top" id="top">&#160;</a>
                        </p><!-- BEGIN navigation -->
                        <h3 class="landmark heading">
                            Actions
                        </h3>
                        <ul class="work navigation actions" role="menu">
                            <li class="chapter entire">
                                <a href="/works/11808918?view_full_work=true">Entire Work</a>
                            </li>
                            <li class="chapter next">
                                <a href="/works/11808918/chapters/26796918#workskin">Next Chapter →</a>
                            </li>
                            <li class="chapter" aria-haspopup="true">
                                <noscript><a href="/works/11808918/navigate">Chapter Index</a></noscript> <a class="hidden" href="#">Chapter Index</a>
                                <ul id="chapter_index" class="expandable secondary hidden">
                                    <li>
                                        <form action="/works/11808918/chapters/26640231" accept-charset="UTF-8" method="get">
                                            <input name="utf8" type="hidden" value="✓" />
                                            <p>
                                                <select name="selected_id" id="selected_id">
                                                    <option selected="selected" value="26640231">
                                                        1. Greetings of a Cryptid
                                                    </option>
                                                    <option value="26796918">
                                                        2. Quirk of a Cryptid
                                                    </option>
                                                    <option value="27214968">
                                                        3. Motivations of a Cryptid
                                                    </option>
                                                    <option value="27703398">
                                                        4. Hobbies of a Cryptid
                                                    </option>
                                                    <option value="28158585">
                                                        5. Politics of a Cryptid
                                                    </option>
                                                    <option value="28393172">
                                                        6. Interlude of a Successive Cryptid
                                                    </option>
                                                    <option value="28633304">
                                                        7. Exasperation of a Cryptid
                                                    </option>
                                                    <option value="28907523">
                                                        8. History of a Cryptid
                                                    </option>
                                                    <option value="28999791">
                                                        9. Approach of a Cryptid
                                                    </option>
                                                    <option value="29259489">
                                                        10. Corporations of a Cryptid
                                                    </option>
                                                    <option value="29796450">
                                                        11. Fear of a Cryptid
                                                    </option>
                                                    <option value="29831925">
                                                        12. Condition of a Cryptid
                                                    </option>
                                                    <option value="30029220">
                                                        13. Escape of a Cryptid
                                                    </option>
                                                    <option value="30089508">
                                                        14. Greetings of a Cryptid: Part 2
                                                    </option>
                                                </select> <span class="submit actions"><input type="submit" name="commit" value="Go" /></span>
                                            </p>
                                        </form>
                                    </li>
                                    <li>
                                        <a href="/works/11808918/navigate">Full-page index</a>
                                    </li>
                                </ul>
                            </li>
                            <li class="comments" id="show_comments_link_top">
                                <a data-remote="true" href="/comments/show_comments?chapter_id=26640231">Comments</a>
                            </li>
                            <li class="share hidden">
                                <a class="modal" title="Share Work" aria-controls="#modal" href="#share">Share</a>
                                <div id="share">
                                    <p class="note">
                                        Copy and paste the following code to link back to this work (<kbd>CTRL A</kbd>/<kbd>CMD A</kbd> will select all), or use the Tweet or Tumblr links to share the work on your Twitter or Tumblr account.
                                    </p>
                                    <p>
                                        <textarea cols="50" rows="4" id="embed_code">&lt;a href="https://archiveofourown.org/works/11808918"&gt;&lt;strong&gt;Conversations with a Cryptid&lt;/strong&gt;&lt;/a&gt; (67379 words) by &lt;a href="https://archiveofourown.org/users/AMournfulHowlInTheNight"&gt;&lt;strong&gt;AMournfulHowlInTheNight&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;Chapters: 14/14&lt;br /&gt;Fandom: &lt;a href="https://archiveofourown.org/tags/%E5%83%95%E3%81%AE%E3%83%92%E3%83%BC%E3%83%AD%E3%83%BC%E3%82%A2%E3%82%AB%E3%83%87%E3%83%9F%E3%82%A2%20%7C%20Boku%20no%20Hero%20Academia%20%7C%20My%20Hero%20Academia"&gt;僕のヒーローアカデミア | Boku no Hero Academia | My Hero Academia&lt;/a&gt;&lt;br /&gt;Rating: General Audiences&lt;br /&gt;Warnings: No Archive Warnings Apply&lt;br /&gt;Relationships: Midoriya Izuku &amp; Yagi Toshinori | All Might, Midoriya Izuku &amp; Sensei | All For One&lt;br /&gt;Characters: Midoriya Izuku, Yagi Toshinori | All Might, Midoriya Inko, Sensei | All For One, Tsukauchi Naomasa, Shigaraki Tomura | Shimura Tenko, Bakugou Katsuki, Todoroki Shouto, Midoriya Hisashi&lt;br /&gt;Additional Tags: Meta, Alternate Universe - Canon Divergence&lt;br /&gt;Series: Part 1 of &lt;a href="https://archiveofourown.org/series/800334"&gt;Conversations with a Cryptid&lt;/a&gt;&lt;br /&gt;Summary: &lt;p&gt;The man was over a century old. There had to be more to it. In hindsight, it hadn’t been one of Izuku’s better ideas.&lt;/p&gt;</textarea>
                                    </p>
                                    <ul>
                                        <li>
                                            <a href="http://twitter.com/share" class="twitter-share-button" data-size="large" data-via="ao3org" data-text="Conversations with a Cryptid by AMournfulHowlInTheNight - 僕のヒーローアカデミア | Boku no Hero Academi..." data-url="https://archiveofourown.org/works/11808918">Tweet</a>
                                        </li>
                                        <li>
                                            <a href="http://tumblr.com/widgets/share/tool?canonicalUrl=https%3A%2F%2Farchiveofourown.org%2Fworks%2F11808918&amp;title=Conversations%20with%20a%20Cryptid%20%2867379%20words%29%20by%20AMournfulHowlInTheNight%20%5BAO3%5D&amp;caption=Chapters%3A%2014%2F14%3Cbr%20%2F%3EFandom%3A%20%3Ca%20href%3D%22https%3A%2F%2Farchiveofourown.org%2Ftags%2F%25E5%2583%2595%25E3%2581%25AE%25E3%2583%2592%25E3%2583%25BC%25E3%2583%25AD%25E3%2583%25BC%25E3%2582%25A2%25E3%2582%25AB%25E3%2583%2587%25E3%2583%259F%25E3%2582%25A2%2520%257C%2520Boku%2520no%2520Hero%2520Academia%2520%257C%2520My%2520Hero%2520Academia%22%3E%E5%83%95%E3%81%AE%E3%83%92%E3%83%BC%E3%83%AD%E3%83%BC%E3%82%A2%E3%82%AB%E3%83%87%E3%83%9F%E3%82%A2%20%7C%20Boku%20no%20Hero%20Academia%20%7C%20My%20Hero%20Academia%3C%2Fa%3E%3Cbr%20%2F%3ERating%3A%20General%20Audiences%3Cbr%20%2F%3EWarnings%3A%20No%20Archive%20Warnings%20Apply%3Cbr%20%2F%3ERelationships%3A%20Midoriya%20Izuku%20%26%20Yagi%20Toshinori%20%7C%20All%20Might%2C%20Midoriya%20Izuku%20%26%20Sensei%20%7C%20All%20For%20One%3Cbr%20%2F%3ECharacters%3A%20Midoriya%20Izuku%2C%20Yagi%20Toshinori%20%7C%20All%20Might%2C%20Midoriya%20Inko%2C%20Sensei%20%7C%20All%20For%20One%2C%20Tsukauchi%20Naomasa%2C%20Shigaraki%20Tomura%20%7C%20Shimura%20Tenko%2C%20Bakugou%20Katsuki%2C%20Todoroki%20Shouto%2C%20Midoriya%20Hisashi%3Cbr%20%2F%3EAdditional%20Tags%3A%20Meta%2C%20Alternate%20Universe%20-%20Canon%20Divergence%3Cbr%20%2F%3ESeries%3A%20Part%201%20of%20%3Ca%20href%3D%22https%3A%2F%2Farchiveofourown.org%2Fseries%2F800334%22%3EConversations%20with%20a%20Cryptid%3C%2Fa%3E%3Cbr%20%2F%3ESummary%3A%20%3Cp%3EThe%20man%20was%20over%20a%20century%20old.%20There%20had%20to%20be%20more%20to%20it.%20In%20hindsight%2C%20it%20hadn%E2%80%99t%20been%20one%20of%20Izuku%E2%80%99s%20better%20ideas.%3C%2Fp%3E" title="Share on Tumblr" style="display:inline-block;text-indent:-9999px;overflow:hidden;width:81px;height:20px;background:url(//platform.tumblr.com/v1/share_1.png) top left no-repeat transparent;border-bottom:none" target="_blank">Share on Tumblr</a>
                                        </li>
                                    </ul>
                                </div>
                            </li>
                            <li class="download" aria-haspopup="true">
                                <a href="#">Download</a>
                                <ul class="expandable secondary">
                                    <li>
                                        <a href="/downloads/11808918/Conversations%20with%20a.azw3?updated_at=1585835284">AZW3</a>
                                    </li>
                                    <li>
                                        <a href="/downloads/11808918/Conversations%20with%20a.epub?updated_at=1585835284">EPUB</a>
                                    </li>
                                    <li>
                                        <a href="/downloads/11808918/Conversations%20with%20a.mobi?updated_at=1585835284">MOBI</a>
                                    </li>
                                    <li>
                                        <a href="/downloads/11808918/Conversations%20with%20a.pdf?updated_at=1585835284">PDF</a>
                                    </li>
                                    <li>
                                        <a href="/downloads/11808918/Conversations%20with%20a.html?updated_at=1585835284">HTML</a>
                                    </li>
                                </ul>
                            </li>
                        </ul><!-- END navigation -->
                        <h3 class="landmark heading">
                            Work Header
                        </h3>
                        <div class="wrapper">
                            <dl class="work meta group" role="complementary">
                                <dt class="rating tags">
                                    Rating:
                                </dt>
                                <dd class="rating tags">
                                    <ul class="commas">
                                        <li>
                                            <a class="tag" href="/tags/General%20Audiences/works">General Audiences</a>
                                        </li>
                                    </ul>
                                </dd>
                                <dt class="warning tags">
                                    <a href="/tos_faq#tags">Archive Warning</a>:
                                </dt>
                                <dd class="warning tags">
                                    <ul class="commas">
                                        <li>
                                            <a class="tag" href="/tags/No%20Archive%20Warnings%20Apply/works">No Archive Warnings Apply</a>
                                        </li>
                                    </ul>
                                </dd>
                                <dt class="category tags">
                                    Category:
                                </dt>
                                <dd class="category tags">
                                    <ul class="commas">
                                        <li>
                                            <a class="tag" href="/tags/Gen/works">Gen</a>
                                        </li>
                                    </ul>
                                </dd>
                                <dt class="fandom tags">
                                    Fandom:
                                </dt>
                                <dd class="fandom tags">
                                    <ul class="commas">
                                        <li>
                                            <a class="tag" href="/tags/%E5%83%95%E3%81%AE%E3%83%92%E3%83%BC%E3%83%AD%E3%83%BC%E3%82%A2%E3%82%AB%E3%83%87%E3%83%9F%E3%82%A2%20%7C%20Boku%20no%20Hero%20Academia%20%7C%20My%20Hero%20Academia/works">僕のヒーローアカデミア | Boku no Hero Academia | My Hero Academia</a>
                                        </li>
                                    </ul>
                                </dd>
                                <dt class="relationship tags">
                                    Relationships:
                                </dt>
                                <dd class="relationship tags">
                                    <ul class="commas">
                                        <li>
                                            <a class="tag" href="/tags/Midoriya%20Izuku%20*a*%20Yagi%20Toshinori%20%7C%20All%20Might/works">Midoriya Izuku &amp; Yagi Toshinori | All Might</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Midoriya%20Izuku%20*a*%20Sensei%20%7C%20All%20For%20One/works">Midoriya Izuku &amp; Sensei | All For One</a>
                                        </li>
                                    </ul>
                                </dd>
                                <dt class="character tags">
                                    Characters:
                                </dt>
                                <dd class="character tags">
                                    <ul class="commas">
                                        <li>
                                            <a class="tag" href="/tags/Midoriya%20Izuku/works">Midoriya Izuku</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Yagi%20Toshinori%20%7C%20All%20Might/works">Yagi Toshinori | All Might</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Midoriya%20Inko/works">Midoriya Inko</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Sensei%20%7C%20All%20For%20One/works">Sensei | All For One</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Tsukauchi%20Naomasa/works">Tsukauchi Naomasa</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Shigaraki%20Tomura%20%7C%20Shimura%20Tenko/works">Shigaraki Tomura | Shimura Tenko</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Bakugou%20Katsuki/works">Bakugou Katsuki</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Todoroki%20Shouto/works">Todoroki Shouto</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Midoriya%20Hisashi/works">Midoriya Hisashi</a>
                                        </li>
                                    </ul>
                                </dd>
                                <dt class="freeform tags">
                                    Additional Tags:
                                </dt>
                                <dd class="freeform tags">
                                    <ul class="commas">
                                        <li>
                                            <a class="tag" href="/tags/Meta/works">Meta</a>
                                        </li>
                                        <li>
                                            <a class="tag" href="/tags/Alternate%20Universe%20-%20Canon%20Divergence/works">Alternate Universe - Canon Divergence</a>
                                        </li>
                                    </ul>
                                </dd>
                                <dt class="language">
                                    Language:
                                </dt>
                                <dd class="language">
                                    English
                                </dd>
                                <dt class="series">
                                    Series:
                                </dt>
                                <dd class="series">
                                    <span class="series"><span class="position">Part 1 of the <a href="/series/800334">Conversations with a Cryptid</a> series</span> <a class="next" href="/works/13212258">Next Work →</a></span>
                                </dd>
                                <dt class="collections">
                                    Collections:
                                </dt>
                                <dd class="collections">
                                    <a href="/collections/Excellent_Completed_Gen_Fics">Excellent Completed Gen &amp; Platonic Fiction</a>, <a href="/collections/Dad_For_One">Dad For One</a>, <a href="/collections/My_mustread_fics">Miscellaneous Must-read Fics</a>, <a href="/collections/thelastreclist">The Last Rec List</a>, <a href="/collections/MHABestOf">Best of My Hero Academia</a>, <a href="/collections/DadForOneByAtrunis">Atrunis' Dad For One Collection</a>, <a href="/collections/The_Witchs_Woods">The Witch's Woods</a>, <a href="/collections/MoonPaws_Hoard_of_Dad_for_One_Fics">MoonPaw's Hoard of Dad for One Fics</a>, <a href="/collections/Creative_Chaos_Discord_Recs">Creative Chaos Discord Recs</a>, <a href="/collections/Fave_Good_LONG_Fics">Long Fics to Binge</a>
                                </dd>
                                <dt class="stats">
                                    Stats:
                                </dt>
                                <dd class="stats">
                                    <!-- end of cache -->
                                    <dl class="stats">
                                        <dt class="published">
                                            Published:
                                        </dt>
                                        <dd class="published">
                                            2017-08-15
                                        </dd>
                                        <dt class="status">
                                            Completed:
                                        </dt>
                                        <dd class="status">
                                            2017-12-26
                                        </dd>
                                        <dt class="words">
                                            Words:
                                        </dt>
                                        <dd class="words">
                                            67379
                                        </dd>
                                        <dt class="chapters">
                                            Chapters:
                                        </dt>
                                        <dd class="chapters">
                                            14/14
                                        </dd>
                                        <dt class="comments">
                                            Comments:
                                        </dt>
                                        <dd class="comments">
                                            1664
                                        </dd>
                                        <dt class="kudos">
                                            Kudos:
                                        </dt>
                                        <dd class="kudos">
                                            7142
                                        </dd>
                                        <dt class="bookmarks">
                                            Bookmarks:
                                        </dt>
                                        <dd class="bookmarks">
                                            <a href="/works/11808918/bookmarks">1648</a>
                                        </dd>
                                        <dt class="hits">
                                            Hits:
                                        </dt>
                                        <dd class="hits">
                                            152759
                                        </dd>
                                    </dl>
                                </dd>
                            </dl>
                        </div><!-- BEGIN section where work skin applies -->
                        <div id="workskin">
                            <div class="preface group">
                                <h2 class="title heading">
                                    Conversations with a Cryptid
                                </h2>
                                <h3 class="byline heading">
                                    <a rel="author" href="/users/AMournfulHowlInTheNight/pseuds/AMournfulHowlInTheNight">AMournfulHowlInTheNight</a>
                                </h3>
                                <div class="summary module" role="complementary">
                                    <h3 class="heading">
                                        Summary:
                                    </h3>
                                    <blockquote class="userstuff">
                                        <p>
                                            The man was over a century old. There had to be more to it. In hindsight, it hadn’t been one of Izuku’s better ideas.
                                        </p>
                                    </blockquote>
                                </div>
                                <div class="notes module" role="complementary">
                                    <h3 class="heading">
                                        Notes:
                                    </h3>
                                    <p class="jump">
                                        (See the end of the work for <a href="/chapters/30089508#work_endnotes">notes</a>.)
                                    </p>
                                </div>
                            </div>
                            <div id="chapters">
                                <!-- This partial requires local variable 'chapter' -->
                                <div class="chapter" id="chapter-1">
                                    <!-- chapter management -->
                                    <div class="chapter preface group" role="complementary">
                                        <h3 class="title">
                                            <a href="/works/11808918/chapters/26640231">Chapter 1</a>: Greetings of a Cryptid
                                        </h3><!-- only display byline if different from the main byline -->
                                    </div><!--main content-->
                                    <div class="userstuff module" role="article">
                                        <h3 class="landmark heading" id="work">
                                            Chapter Text
                                        </h3>
                                        <p>
                                            Izuku was struggling to understand how he had even managed to get here, seated before the archvillain of Japan with only a sense of dread to keep him company. All Might sat concealed in an observation room, of the firm opinion that he could only aggravate the prisoner and he sent Izuku off with a strained smile. A vague haze hovered over Izuku’s memory. It started with a simple conversation gone astray on a long drive home.
                                        </p>
                                        <p>
                                            &#160;
                                        </p>
                                        <p>
                                            “So, who is All For One? Do we know anything about him beyond what you told me before? He’s been imprisoned for months now.” Izuku remembered asking All Might from the backseat of the car as Detective Tsukauchi leisurely drove along a sprawling highway.
                                        </p>
                                        <p>
                                            Playing on the car radio was an aftermath report of a villain attack in downtown Tokyo. Izuku caught the phrase “liquid body” from the female reporter before Detective Tsukauchi changed the channel.
                                        </p>
                                        <p>
                                            “Nope. Still nothing. No one really wants to speak to him,” All Might had replied brightly. “He gives off polite airs, but he’s a piece of work.” All Might’s mostly obstructed shoulders in the front seat shrugged. “Not much you can do with someone like him. Everything that comes out is a threat or taunt.” All Might carefully waved his hand in a circular motion towards the side of his head.
                                        </p>
                                        <p>
                                            “No one’s even made it through a full interview with him, from what I’ve heard,” Detective Tsukauchi added from behind the wheel. “He plays mind games with them. The prison also has a “no recent events” policy on any discussions with him as well. Just in case he ends up with ideas or has some means of communicating. Given that people only want to ask him about current events, it doesn’t leave much to talk about.”
                                        </p>
                                        <p>
                                            “Wait, they still don’t know what Quirks he has?” Izuku asked exasperatedly. “They can’t if there’s still an information block on visits.”
                                        </p>
                                        <p>
                                            “Nope. We have no idea what he can do. They can run DNA tests, but it’s not like anyone apart from him even knows how his Quirk works. They could get matches with any number of people, but if they’re not in a database then we can’t cross-reference them anyway. Even if they run an analysis, the data doesn’t mean anything without the ability to interpret it,” All Might gestured with a skeletal finger. “It’s a waste of time after the initial tests were conducted. They weren’t game to MRI him either, given he’s definitely got a Quirk that creates metal components.”
                                        </p>
                                        <p>
                                            “No one’s bothered to ask him anything about… anything?” Izuku asked, dumbfounded. “He must be around two-hundred years old and people can’t think of a single non-current affairs thing to ask him?”
                                        </p>
                                        <p>
                                            In some ways it was unfathomable that they’d let a potential resource go to waste. On the other hand, said potential resource had blown up a city, murdered numerous people and terrorised Japan for over a century. At the very least.
                                        </p>
                                        <p>
                                            “Well, I tried to ask him about Shigaraki, but he didn’t say much of anything really. Some garbage about you being too dependent on me and him letting Shigaraki run wild and how he just wanted to be the ultimate evil,” All Might shrugged again. “He spends too much time talking about nothing.”
                                        </p>
                                        <p>
                                            Izuku shifted his head onto his arm. “But, that’s not really nothing, is it?”
                                        </p>
                                        <p>
                                            “What do you mean?” Izuku had the feeling that All Might would have been looking at him with the <i>you’re about to do something stupid aren’t you</i> expression that was thankfully becoming less common.
                                        </p>
                                        <p>
                                            “Well, he clearly doesn’t know anything about us, All Might, if he thinks that you’re just going to let go of me after not even two years of being taught. Maybe Shigaraki was dependent on adult figures, but I don’t even remember my dad and mum’s been busy working and keeping the house together. I’ve never had a lot of adult supervision before,” Izuku laughed nervously. “I had to find ways to keep myself entertained. If anything, I’m on the disobedient side of the scale.” All Might outright giggled.
                                        </p>
                                        <p>
                                            “I’ll say, especially after what happened with Overhaul. I’m surprised your mother let you leave the dorms again after that.”
                                        </p>
                                        <p>
                                            “I’m surprised she didn’t withdraw and ground me until I was thirty.”
                                        </p>
                                        <p>
                                            “Oh? That strict?” Tsukauchi asked.
                                        </p>
                                        <p>
                                            “She has her moments,” Izuku smiled fondly. “Do you think she’d agree to me asking the archvillain of Japan about his Quirk?” Izuku asked, only partially joking. There was an itch at the back of his head, a feeling of something missing that poked and prodded at his senses.
                                        </p>
                                        <p>
                                            All Might coughed and sprayed the dash with a fine red mist. “Absolutely not! I forbid it!”
                                        </p>
                                        <p>
                                            “That’s exactly why I’m asking her and not you,” Izuku grinned from the backseat.
                                        </p>
                                        <p>
                                            “He’s evil!”
                                        </p>
                                        <p>
                                            “He’s ancient. You honestly don’t wonder about the sort of things someone with that life experience and Quirk would have run across to end up the way he did?”
                                        </p>
                                        <p>
                                            “Nope, he made it perfectly clear that he always wanted to be the supreme evil,” All Might snipped through folded arms.
                                        </p>
                                        <p>
                                            “Yeah, and I’ll just take his word for that, won’t I?” Izuku grinned. “If he does nothing but lie, then that’s probably one too, but there’s a grain of truth in there somewhere.”
                                        </p>
                                        <p>
                                            “What would you even do? Harass him into telling you his life story?” All Might sighed.
                                        </p>
                                        <p>
                                            “Not when I can kill him with kindness. Who knows, it might even be poisonous for him.”
                                        </p>
                                        <p>
                                            “You’re explaining this to your mother. Teacher or not, I’m not being on the receiving end of this one.”
                                        </p>
                                        <p>
                                            Izuku blinked for a moment. “You’ll let me?”
                                        </p>
                                        <p>
                                            “I’m not entirely for it, but any prospective information on what influenced Shigaraki can only be a good thing. If anything goes south we can pull you out pretty easily. Just be aware of who and what you’re dealing with.” Struggling, All Might turned a serious look to Izuku around the side of the seat. “<i>Only</i> if your mother gives the okay.”
                                        </p>
                                        <p>
                                            The conversation turned to school for the rest of the way.
                                        </p>
                                        <p>
                                            &#160;
                                        </p>
                                        <p>
                                            It might have been curiosity or it might have been the nagging sensation that chewed at his brain for the three weeks that he researched the subject of the conversation. All For One was a cryptid. Mystical in more ways than one, he was only a rumour on a network that was two-hundred years old. There were whispers of a shadowy figure who once ruled Japan, intermingled with a string of conspiracies and fragmented events.
                                        </p>
                                        <p>
                                            Izuku had even braved the dark web, poking and prodding at some of the seedier elements of the world wide web. The internet had rumours, but the dark web had stories.<br />
                                        </p>
                                        <p>
                                            An implied yakuza wrote about his grandfather who lost a fire manipulation Quirk and his sanity without any reason. His grandfather had been institutionalised, crying and repeating “he took it, he took it” until his dying days. No one could console him.
                                        </p>
                                        <p>
                                            Another user spoke of a nursing home where a room full of dementia residents inexplicably became docile and no longer used their Quirks on the increasingly disturbed staff. The nursing home erupted into flames just before a court case against them commenced.
                                        </p>
                                        <p>
                                            A user with neon pink text spoke of how their great-great-great-great grandmother with a longevity Quirk had simply aged rapidly one day and passed away in her sleep, her face a mask of terror. No cause had ever been found.
                                        </p>
                                        <p>
                                            A hacker provided a grainy CCTV recording of a heist and a scanned collection of documents from over a century ago, where there was a flash of light and entire bank vault had been emptied. What separated it from the usual robbery was that it contained a list containing confidential information on the Quirks of the First Generation. Izuku had greedily snavelled up and saved the video and documents to an external hard drive.
                                        </p>
                                        <p>
                                            Paging through, Izuku saw someone recount how their Quirkless uncle had developed a warp Quirk and gone from rags to riches under a mysterious benefactor. A decade ago, the uncle had simply disappeared.
                                        </p>
                                        <p>
                                            Numerous and terrifying, the stories were scattered nuggets of gold hidden across the web. They’d never last long, vanishing within hours of posting. Izuku bounced from proxy to proxy, fleeing from a series of deletions that seemed to follow Izuku’s aliased postings across snitch.ru, rabbit.az, aconspiracy.xfiles and their compatriots.
                                        </p>
                                        <p>
                                            After thirty-two identity changes (all carefully logged in a separate notebook), a large amount of feigning communal interest in a lucky tabloid article on All For One which had been released at the start of the first of the three weeks, Izuku hung up his tinfoil hat and called it a month. He haphazardly tossed a bulging notebook into his bookshelf and lodged his hard drive in a gap containing seven others and went to dinner.
                                        </p>
                                        <p>
                                            It took another week to present his research to All Might and Tsukauchi, whose jaws reached the proverbial floor.
                                        </p>
                                        <p>
                                            “We never found any of this,” the Detective Tsukauchi exclaimed. “How did you find all of it?”
                                        </p>
                                        <p>
                                            “I asked the right people. Turns out criminals have very long and very unforgiving memories,” Izuku explained through sunken eyes. “There’s more than this that could be linked to him, but these ones seem to be the most obvious.”
                                        </p>
                                        <p>
                                            “They would do, you can’t be head of the underworld without making an army of enemies,” All Might agreed. “You know, if you can get any more information about these events, I think you’ll give people a lot of peace of mind.”
                                        </p>
                                        <p>
                                            “Provided mum agrees to it.”
                                        </p>
                                        <p>
                                            “Only if she agrees to it.”
                                        </p>
                                        <p>
                                            It took another month to convince his mother, who eventually gave in once All Might provided an extremely comprehensive schedule of how the visitations and any resulting research would be carefully balanced against Izuku’s schoolwork and internship.
                                        </p>
                                        <p>
                                            &#160;
                                        </p>
                                        <p>
                                            The day of the visit finally arrived, four months after the initial conversation, much to Izuku’s dismay.
                                        </p>
                                        <p>
                                            Izuku remembered how he had arrived, with the Detective and All Might escorting him through its sterile, white innards. A list of rules rattled off at the gate, “no current affairs” was chief among them and an assertion that he’d be dragged from the room if need be if Izuku was to breach any of them. No smuggling of communication devices, no weapons, no Quirks, nothing that could compromise the prisoner’s secure status.
                                        </p>
                                        <p>
                                            Heavily armoured and drilled guards leading him underground into the deepest bowels of the Tartarus complex.
                                        </p>
                                        <p>
                                            Izuku understood the rules, dressed casually in a cotton t-shirt with “Shirt” printed across it in haphazard English and clutching at a carefully screened and utterly blank notebook.
                                        </p>
                                        <p>
                                            Across from him, behind reinforced glass, the archvillain of Japan was bound and unmoving.
                                        </p>
                                        <p>
                                            “Hello,” Izuku initiated uncertainly. His skin had been crawling the moment he crossed the threshold, a memory of the encounter and escape at the Kamino Ward months ago.
                                        </p>
                                        <p>
                                            “Ah, All Might’s disciple,” drawled All For One, “is he too cowardly to come himself? Yet I don’t hear the garments of a hero.” With hardly a word out, All For One had already lunged for the figurative jugular.
                                        </p>
                                        <p>
                                            A stray thought of <i>how does he know who I am if he’s blind and isn’t familiar with me?</i> whispered its way through Izuku’s head.
                                        </p>
                                        <p>
                                            “Oh, no,” Izuku corrected hastily, almost relieved at the lack of any pretence, “I asked if I could talk to you. This isn’t exactly hero related.”
                                        </p>
                                        <p>
                                            “I’m surprised he said yes.” While there was little by way of expression, Izuku could just about sense the contempt dripping from the prisoner’s tone. It wasn’t anything he wasn’t expecting. Kacchan had already said worse to him in earlier years. Water off a duck’s back.
                                        </p>
                                        <p>
                                            “Well, he’s not my legal guardian, so I think you should be more surprised that mum said yes. She’s stricter with these things than All Might,” Izuku corrected again. “Mum gave the okay, but that was a stressful discussion.” And there it was, a miniscule twitch from the man opposite. A spasm more than anything else. <i>Interesting.</i> Pinned down as he was, the prisoner oozed irritation.
                                        </p>
                                        <p>
                                            “At least your mother is a wise person. I wonder why the student doesn’t heed all of the advice of the teacher.” All For One’s tone didn’t indicate a question, so much as an implicit statement that All Might wasn’t worth listening to in any capacity. Kacchan would have hated the comparison, but the hostility had an almost comfortable familiarity. “He no doubt warned you off speaking to me, overprotective as he is, but here you are.”
                                        </p>
                                        <p>
                                            Izuku found himself smiling at the thought of Kacchan’s outrage if he ever found out about the mental comparison as he replied. “I don’t think it’s normal for anyone my age to listen completely to their teachers. We pick and choose and run with what works best for us. He warned me, but I’m still here. Mum warned me as well, but I think she cared more about the time management aspect of it."
                                        </p>
                                        <p>
                                            “Is that a recent development?” All For One probed.
                                        </p>
                                        <p>
                                            “Not really. My old homeroom teacher told me not to bother applying to U.A.” His mother’s beaming face had carried Izuku through the cheerful and resolute signing of that application form.
                                        </p>
                                        <p>
                                            “I see you followed their advice to the letter,” came the snide, dismissive reply.
                                        </p>
                                        <p>
                                            Izuku hoisted up his legs and sat cross-legged in his seat. Leaning slightly forward as he did so as to better prop up his notebook.
                                        </p>
                                        <p>
                                            “You’re a walking contrarian, aren’t you? All Might told me about his run ins with you. What someone does or doesn’t do really doesn’t matter to you, you’ll just find a way to rationalise it as a negative and go on the attack anyway. What you’re currently doing is drawing attention away from yourself and focusing it on me so you can withhold information.” Izuku flipped open his notebook and put pen to paper. “You’ve got something fairly big to hide and you diverting attention exposes that motivation as existing anyway. The only real questions here are what and why?” Izuku paused in mortification as the man opposite’s lips parted. “I just said that aloud, didn’t I?”
                                        </p>
                                        <p>
                                            Of the responses Izuku had expected, it wasn’t laughter. Unrestrained, Izuku would have expected a violent outburst. In this situation, he would have expected another scathing comment. Instead, All For One laughed breathily, leaning into his bonds. Wheezingly he spoke, “I’ll have to change tactics, if that one’s too transparent for you. How refreshing.”
                                        </p>
                                        <p>
                                            Doing his best not to glow a blinding red and simultaneously pale at the interest, Izuku carried on. “I add it to the list when you do. I’m not emotionally involved enough to really be impacted by what you’re saying. I know about you in theory, but that’s it. Maybe All Might has a history with you, but I don’t really know enough about you personally to…”
                                        </p>
                                        <p>
                                            “Care,” All For One supplied, somewhat subdued as he struggled to breathe. “You’re only here to satisfy your curiosity as to whether or not the stories were true.”
                                        </p>
                                        <p>
                                            Izuku nodded, scratching at his notebook with his left hand. “Yes and no, I’m actually here to ask you about how your Quirk works.” <i>For now.</i>
                                        </p>
                                        <p>
                                            Another chortle, more restrained that the last.
                                        </p>
                                        <p>
                                            "What makes you think others haven’t already asked?” Had All For One been unrestrained, Izuku could imagine the stereotypical scene of the villain confidently leaning back in some overblown chair in a secret lair, drink of choice in hand, if the tone of voice was any indication. Deflections aside, the man easily rose to each comment.
                                        </p>
                                        <p>
                                            “Whether or not they asked it’s irrelevant if they can’t read the answers.” Answers didn’t matter if the people involved were too attached to read into the answers. If none of the interviewers had managed a full interview, then it seemed unlikely that any sort of effort was put into understanding the villain.
                                        </p>
                                        <p>
                                            “And you think you can? What expertise do you hold above theirs?” Doubt and reprimand weighted the words. Oddly enough, had Izuku been any younger he could have mistaken the man for a disapproving parent rebuking an overly ambitious child. Albeit an extremely evil one.
                                        </p>
                                        <p>
                                            Izuku inhaled shortly and went for it. “If there’s something I know, it’s Quirks and how they work. Maybe I don’t know you, but I don’t really need to. Quirks fall under broad categories of function. You can take and give, consent doesn’t seem to be a factor. You either can’t “see” certain types of Quirks or you need to have prior knowledge of it before you take it with what I know about your brother. Despite your <i>nom de guerre</i>, because we both know it’s not your real name, you have a history of giving multiple Quirks and causing brain damage to the receiver. You clearly aren’t impacted by those same restrictions, so it must either alter your brain mapping or adjust functions to allow for simultaneous use and storage. It also must isolate or categories the Quirks you stock, because from the few people who do remember you, you creating certain Quirks is always in the context of giving them to someone else meaning there’s probably an inherent immunity to stop it from tainting your own Quirk with a mutation,” Izuku mumbled, almost to himself. “The only thing really in question about your Quirk is the finer details and whether or not you need to maintain those features or if they’re inherent and your hard limit for holding Quirks.”
                                        </p>
                                        <p>
                                            There was silence, for only a moment. “If only my hands were free, I would clap for such a thoughtful assessment. Clearly you’re not all brawn,” All For One positively purred. “Speculate away.” A wide and slightly unhinged smile was directed at Izuku.
                                        </p>
                                        <p>
                                            It was all Izuku could do not to wince at the eagerness. An image of a nervous All Might, hidden in the observation room above with the grim-faced prison staff, came to mind.
                                        </p>
                                        <p>
                                            “I note that you said thoughtful and not correct,” and Izuku breathed and unsteadily jotted it down in his notebook. “You don’t seem bothered by the guess.”
                                        </p>
                                        <p>
                                            “Few people live long enough to question my Quirk, let alone have the talent to guess so thoughtfully at its functions. It seems we share a hobby.” There was something terribly keen in that voice that hadn’t been there before, twisting itself through the compliment.
                                        </p>
                                        <p>
                                            “I suppose it helps that you’re playing along out of boredom,” Izuku verbally dodged, unease uncoiling itself from the back of his mind.
                                        </p>
                                        <p>
                                            “I <i>was</i> playing along out of boredom,” All For One corrected smoothly. “Now, I’m curious. Admittedly, my prior assumptions of you weren’t generous, but I’ve been too hasty in my assessments before.”
                                        </p>
                                        <p>
                                            “I’ll pack up and leave now if that’s the case,” Izuku replied with only half an ear on the conversation as the words on his page began to drastically expand to distract himself from the building anxiety.
                                        </p>
                                        <p>
                                            “Sarcasm, so you do have characteristics of a normal teenager. Your willingness to maim yourself has often left me wondering…”
                                        </p>
                                        <p>
                                            “You’re deflecting again,” Izuku observed. “I’m not sure if that’s a nervous habit for you or if you’re doing it because I’m close to being right about your Quirk. That being said, I don’t think you know what a normal teenager is if Shigaraki is any indication. He’s about seven years too late for his rebellious phase.”
                                        </p>
                                        <p>
                                            “I’m hurt and offended,” came the amused reply.
                                        </p>
                                        <p>
                                            “By how Shigaraki ended up or your parenting? You only have yourself to blame for both of them.”
                                        </p>
                                        <p>
                                            “How harsh. Shigaraki is a product of society that birthed him. I can’t take credit for all of the hard work,” All For One laid out invitingly. Perhaps someone else would have risen to the bait, but Izuku was already packing his mental bags and heading for the door.
                                        </p>
                                        <p>
                                            Clearly the prisoner’s anticipation had registered poorly with someone in the observation room, because a voice rang through the air. “Time’s up Midoriya-kun.”
                                        </p>
                                        <p>
                                            “Okay!” Izuku called back and etched out his last thoughtful of words, untangled his legs and rose to his feet.
                                        </p>
                                        <p>
                                            “What a shame, my visitations are always so short,” All For One spoke mournfully.
                                        </p>
                                        <p>
                                            “Well, you did blow up half a city. They could have just let you suffocate instead. Same time next week, then?” Izuku offered brightly, notebook stuffed into a pocket and was followed out the door by wheezing laughter.
                                        </p>
                                        <p>
                                            It was only after he had made it safely back to the communal room where All Might waited did he allow the spring to fade from his step and discard his nervous smile. Shuddering, he turned to All Might whose face was set in a grimace.
                                        </p>
                                        <p>
                                            “I won’t say I told you so,” All Might offered, perched on the edge of his couch like a misshapen vulture.
                                        </p>
                                        <p>
                                            “He’s… not really what I was expecting. I was expecting someone, more openly evil.” Izuku allowed himself to collapse into the leather of the seat. He shakily reached for the warm tea that had been clearly been prepared the moment Izuku left the cell. “I suppose he does it to lull people into a false sense of security. I didn’t understand how someone with only half a set of expressions could have “villain” written all over them until I met him.”
                                        </p>
                                        <p>
                                            “He’s always been like that. He feigns concern and sympathy to lure in society’s outcasts. They’re easy targets,” All Might said through a mouthful of biscuit.
                                        </p>
                                        <p>
                                            “Has he ever tried it on any of the One For All successors?”
                                        </p>
                                        <p>
                                            “Not really, but you might have accidentally given him the incentive for it. He never had access to any of the One For All wielders while they were young.” All Might snorted, “not that it’ll make a difference with you”.
                                        </p>
                                        <p>
                                            “I think he was trying to gauge me for a world view before the wardens ended it. I need more time to work out his response to the stuff on his Quirk.”
                                        </p>
                                        <p>
                                            “He’s conversation starved since it’s solitary confinement. If what the people monitoring his brain activity said was true, you’re the most exciting thing to have happened to him in months. He replied after you left, said he was looking forward to it.”
                                        </p>
                                        <p>
                                            “That’s pretty sad."
                                        </p>
                                        <p>
                                            “It’s even sadder that we’re the only two members of the public who have had anything to do with him. Stain gets a pile of mail from his “fans”, but All For One has nothing,” All Might waved a tea spoon. “That’s what he gets.”
                                        </p>
                                        <p>
                                            “Let’s get out of here and tell Detective Tsukauchi how it went.” Izuku gulped down his tea and headed for the exit, with him and All Might reaching it at roughly the same amount of time.
                                        </p>
                                        <p>
                                            “At least your mum’s making katsudon for us tonight," was All Might's only optimistic comment.
                                        </p>
                                        <p>
                                            Anxiety was still ebbing over Izuku after Tsukauchi had been debriefed in the car.
                                        </p>
                                        <p>
                                            <i>“It seems we share a hobby.”</i> Haunted Izuku on the drive home. As if ripping someone’s Quirk from them and leaving them lying traumatised on the ground was just a fun pastime and not an act of grievous bodily harm.
                                        </p>
                                        <p>
                                            And he’d be dealing with him again in another week.
                                        </p>
                                    </div><!--/main-->
                                </div><!-- end of cache -->
                            </div>
                        </div><!-- END work skin -->
                    </div><!-- END work -->
                    <!-- BEGIN comment section -->
                    <!-- Gets embedded anywhere we need to list comments on a top-level commentable. We need the local variable "commentable" here. -->
                    <div id="feedback" class="feedback" role="complementary">
                        <h3 class="landmark heading">
                            Actions
                        </h3>
                        <ul class="actions" role="navigation">
                            <li>
                                <a href="#main">↑ Top</a>
                            </li>
                            <li>
                                <a href="/works/11808918/chapters/26796918#workskin">Next Chapter →</a>
                            </li>
                            <li>
                                <form id="new_kudo" action="/kudos" accept-charset="UTF-8" method="post" name="new_kudo">
                                    <input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="aGSlsAQMFHzLlh5ck7GJ0oNBgrtQtpYZmXVgjk2RsxoiyHw91kQSFZSKM33riF+ow0t+NZfZUT45qXCRC7/sgA==" /> <input value="11808918" type="hidden" name="kudo[commentable_id]" id="kudo_commentable_id" /> <input value="Work" type="hidden" name="kudo[commentable_type]" id="kudo_commentable_type" /> <input type="submit" name="commit" value="Kudos ♥" id="kudo_submit" />
                                </form>
                            </li>
                            <li id="show_comments_link">
                                <a data-remote="true" href="/comments/show_comments?chapter_id=26640231">Comments (74)</a>
                            </li>
                        </ul>
                        <div id="kudos_message"></div>
                        <h3 class="landmark heading">
                            <a name="comments" id="comments">Comments</a>
                        </h3>
                        <div id="kudos">
                            <p class="kudos">
                                <a href="/users/KuroKitsuneNoYoko">KuroKitsuneNoYoko</a>, <a href="/users/Senpakuxkira">Senpakuxkira</a>, <a href="/users/jennyjenka">jennyjenka</a>, <a href="/users/nicarose24">nicarose24</a>, <a href="/users/Devilspawn2002">Devilspawn2002</a>, <a href="/users/fixatro">fixatro</a>, <a href="/users/FeltLikeWritingAndHereIAm">FeltLikeWritingAndHereIAm</a>, <a href="/users/ShareBearNat">ShareBearNat</a>, <a href="/users/Revolvers_and_violets">Revolvers_and_violets</a>, <a href="/users/girl_with_a_sword">girl_with_a_sword</a>, <a href="/users/PerrinOfApples">PerrinOfApples</a>, <a href="/users/Sky_King">Sky_King</a>, <a href="/users/gREat_unreST">gREat_unreST</a>, <a href="/users/Sayriel">Sayriel</a>, <a href="/users/SpaceJonah">SpaceJonah</a>, <a href="/users/Sofiacasdfg">Sofiacasdfg</a>, <a href="/users/thelackvoid">thelackvoid</a>, <a href="/users/WormhuskCrown">WormhuskCrown</a>, <a href="/users/Juiji">Juiji</a>, <a href="/users/Graykip">Graykip</a>, <a href="/users/Lunatsuki">Lunatsuki</a>, <a href="/users/KaitoKitsune">KaitoKitsune</a>, <a href="/users/ShadowYonni">ShadowYonni</a>, <a href="/users/A_regrettable_choice_of_words">A_regrettable_choice_of_words</a>, <a href="/users/Atriel">Atriel</a>, <a href="/users/Kiki_Inu_Page">Kiki_Inu_Page</a>, <a href="/users/Athi816">Athi816</a>, <a href="/users/Andrea_Victoria">Andrea_Victoria</a>, <a href="/users/LeafoftheFox">LeafoftheFox</a>, <a href="/users/Iateyourcookies">Iateyourcookies</a>, <a href="/users/AirQuotes">AirQuotes</a>, <a href="/users/octaviaxanadu">octaviaxanadu</a>, <a href="/users/DemiwitchWinchester">DemiwitchWinchester</a>, <a href="/users/November_Clouds">November_Clouds</a>, <a href="/users/LittleNovaStar">LittleNovaStar</a>, <a href="/users/Dolema">Dolema</a>, <a href="/users/yuki_27">yuki_27</a>, <a href="/users/TS4Life">TS4Life</a>, <a href="/users/prince_doomed">prince_doomed</a>, <a href="/users/MemeticWarfare">MemeticWarfare</a>, <a href="/users/Lethe_Rem">Lethe_Rem</a>, <a href="/users/improbablyamartian">improbablyamartian</a>, <a href="/users/charm13insomnia">charm13insomnia</a>, <a href="/users/Whoevenisshe">Whoevenisshe</a>, <a href="/users/Scaledraws">Scaledraws</a>, <a href="/users/Dawwnni">Dawwnni</a>, <a href="/users/loganesque">loganesque</a>, <a href="/users/lil_uno">lil_uno</a>, <a href="/users/kusibi21">kusibi21</a>, <a href="/users/derbelisca">derbelisca</a>, <a id="kudos_summary" href="/works/11808918/kudos">and 3711 more users</a> <span class="kudos_expanded hidden"><a href="/users/Aquamarine_Ocean">Aquamarine_Ocean</a>, <a href="/users/Noone_is_Perfect_Im_noone">Noone_is_Perfect_Im_noone</a>, <a href="/users/FireInYourDreams">FireInYourDreams</a>, <a href="/users/JaceTheAce34">JaceTheAce34</a>, <a href="/users/StallingforGreatness">StallingforGreatness</a>, <a href="/users/flushed_flue">flushed_flue</a>, <a href="/users/Kriegswolf">Kriegswolf</a>, <a href="/users/blue_birb">blue_birb</a>, <a href="/users/Krakenonkrack437">Krakenonkrack437</a>, <a href="/users/Goblin17">Goblin17</a>, <a href="/users/alchemicalApocalypse">alchemicalApocalypse</a>, <a href="/users/tunafishprincess">tunafishprincess</a>, <a href="/users/loving_1D_louiszaynniallharryliam">loving_1D_louiszaynniallharryliam</a>, <a href="/users/Briknanana">Briknanana</a>, <a href="/users/Jocelyn523">Jocelyn523</a>, <a href="/users/ImaDMS">ImaDMS</a>, <a href="/users/Ahriel_sinalas">Ahriel_sinalas</a>, <a href="/users/Moonyshewolf">Moonyshewolf</a>, <a href="/users/original_name_that_i_thought_of">original_name_that_i_thought_of</a>, <a href="/users/Silkesukkermaas">Silkesukkermaas</a>, <a href="/users/1existential_melon">1existential_melon</a>, <a href="/users/Embrexial">Embrexial</a>, <a href="/users/sophiekwat">sophiekwat</a>, <a href="/users/wisdoms_daughter">wisdoms_daughter</a>, <a href="/users/myabug01">myabug01</a>, <a href="/users/TsukiNona">TsukiNona</a>, <a href="/users/miraculousemily47">miraculousemily47</a>, <a href="/users/TheLivingParadox">TheLivingParadox</a>, <a href="/users/white_goddess">white_goddess</a>, <a href="/users/heartofthetardis">heartofthetardis</a>, <a href="/users/Kitkat886">Kitkat886</a>, <a href="/users/Soapdish">Soapdish</a>, <a href="/users/iStarryNights">iStarryNights</a>, <a href="/users/LogicalChocolate">LogicalChocolate</a>, <a href="/users/fukk_life">fukk_life</a>, <a href="/users/Color_Me_Curious">Color_Me_Curious</a>, <a href="/users/Alexhound">Alexhound</a>, <a href="/users/CrazyHope13">CrazyHope13</a>, <a href="/users/Domic6381">Domic6381</a>, <a href="/users/MPDPOP">MPDPOP</a>, <a href="/users/AvelineGardener">AvelineGardener</a>, <a href="/users/kissmeoverthegardengate">kissmeoverthegardengate</a>, <a href="/users/Vnersacc">Vnersacc</a>, <a href="/users/Meteora_Midoriya">Meteora_Midoriya</a>, <a href="/users/HypnosThanatosTwin">HypnosThanatosTwin</a>, <a href="/users/EmberRose1434">EmberRose1434</a>, <a href="/users/xanmanmurc">xanmanmurc</a>, <a href="/users/variegated_fox">variegated_fox</a>, <a href="/users/Severus_Prince_Slytherin">Severus_Prince_Slytherin</a>, <a href="/users/Happyowl626">Happyowl626</a>, <a href="/users/Harper_warc">Harper_warc</a>, <a href="/users/Even_the_darkest_light_shines">Even_the_darkest_light_shines</a>, <a href="/users/desertbrass">desertbrass</a>, <a href="/users/Aldwych">Aldwych</a>, <a href="/users/SomniumOfLight">SomniumOfLight</a>, <a href="/users/Painter40">Painter40</a>, <a href="/users/Shadowhope">Shadowhope</a>, <a href="/users/Dragon_Inherited">Dragon_Inherited</a>, <a href="/users/qyootea">qyootea</a>, <a href="/users/daeen">daeen</a>, <a href="/users/Anonymous_Nerb">Anonymous_Nerb</a>, <a href="/users/FalseTale48">FalseTale48</a>, <a href="/users/AsianAmu">AsianAmu</a>, <a href="/users/Flashbunny">Flashbunny</a>, <a href="/users/burningclaw2">burningclaw2</a>, <a href="/users/blender_bros">blender_bros</a>, <a href="/users/ScarletRoofs">ScarletRoofs</a>, <a href="/users/We_All_Live_Under_The_Same_Sky">We_All_Live_Under_The_Same_Sky</a>, <a href="/users/clydeboi">clydeboi</a>, <a href="/users/BethBirthstone">BethBirthstone</a>, <a href="/users/artisticDragon074639">artisticDragon074639</a>, <a href="/users/Spiritmusician">Spiritmusician</a>, <a href="/users/xochiquetzalq">xochiquetzalq</a>, <a href="/users/Quantumsouls">Quantumsouls</a>, <a href="/users/Margui_hope">Margui_hope</a>, <a href="/users/EchoBass">EchoBass</a>, <a href="/users/se34">se34</a>, <a href="/users/Felkros">Felkros</a>, <a href="/users/15mitchelln">15mitchelln</a>, <a href="/users/StarBreaker">StarBreaker</a>, <a href="/users/Maerit">Maerit</a>, <a href="/users/Spark_of_Resistance">Spark_of_Resistance</a>, <a href="/users/StarBrightOtaku">StarBrightOtaku</a>, <a href="/users/JadeDrake">JadeDrake</a>, <a href="/users/Cinniomon">Cinniomon</a>, <a href="/users/IQ_Of_KaminariDenki">IQ_Of_KaminariDenki</a>, <a href="/users/Pyrite_Alchemist">Pyrite_Alchemist</a>, <a href="/users/mimomu">mimomu</a>, <a href="/users/KierWrites">KierWrites</a>, <a href="/users/Flaminga_Bazinga">Flaminga_Bazinga</a>, <a href="/users/Eren_AckermanX">Eren_AckermanX</a>, <a href="/users/eyeball_kid">eyeball_kid</a>, <a href="/users/Ibreaktheverse">Ibreaktheverse</a>, <a href="/users/wherermysocks">wherermysocks</a>, <a href="/users/raspberryicecreampls">raspberryicecreampls</a>, <a href="/users/MusingWordsmith">MusingWordsmith</a>, <a href="/users/LlamaSenpai">LlamaSenpai</a>, <a href="/users/Firefly_xo">Firefly_xo</a>, <a href="/users/Nes">Nes</a>, <a href="/users/Demifailure">Demifailure</a>, <a href="/users/WillowedMist">WillowedMist</a>, <a href="/users/draconicTemplar">draconicTemplar</a>, <a href="/users/lilaclily00">lilaclily00</a>, <a href="/users/Aramet">Aramet</a>, <a href="/users/allseer15">allseer15</a>, <a href="/users/BluJay27">BluJay27</a>, <a href="/users/lulufan54321">lulufan54321</a>, <a href="/users/Happy_little_pill">Happy_little_pill</a>, <a href="/users/KittyWitty">KittyWitty</a>, <a href="/users/loligadi">loligadi</a>, <a href="/users/Bastardwithbadtaste">Bastardwithbadtaste</a>, <a href="/users/Hyteha">Hyteha</a>, <a href="/users/fieryangel9067">fieryangel9067</a>, <a href="/users/Ohboiohboi">Ohboiohboi</a>, <a href="/users/Evie31">Evie31</a>, <a href="/users/warmkettlesandflowerpetals">warmkettlesandflowerpetals</a>, <a href="/users/RunawayDeviant">RunawayDeviant</a>, <a href="/users/LokidottirBlack">LokidottirBlack</a>, <a href="/users/Senritsuka">Senritsuka</a>, <a href="/users/CyberRoses">CyberRoses</a>, <a href="/users/shewhosnarks">shewhosnarks</a>, <a href="/users/edelweiss123">edelweiss123</a>, <a href="/users/CosmicMerman">CosmicMerman</a>, <a href="/users/ATS3">ATS3</a>, <a href="/users/mattdarsh">mattdarsh</a>, <a href="/users/Nara93">Nara93</a>, <a href="/users/BluBerryPi">BluBerryPi</a>, <a href="/users/BrightShadow">BrightShadow</a>, <a href="/users/KYS112804">KYS112804</a>, <a href="/users/gogito167">gogito167</a>, <a href="/users/StarFisher91">StarFisher91</a>, <a href="/users/Little_Kiwi_33">Little_Kiwi_33</a>, <a href="/users/Linariel">Linariel</a>, <a href="/users/Kr15xxx">Kr15xxx</a>, <a href="/users/Nicoliiita150">Nicoliiita150</a>, <a href="/users/DeerMauve">DeerMauve</a>, <a href="/users/DreamOfStarsAndRoses">DreamOfStarsAndRoses</a>, <a href="/users/writerwithoutcause">writerwithoutcause</a>, <a href="/users/OrionRigel">OrionRigel</a>, <a href="/users/tavishramsus">tavishramsus</a>, <a href="/users/MikazukiNara">MikazukiNara</a>, <a href="/users/Sh1kaN4RU_iSnoIcE">Sh1kaN4RU_iSnoIcE</a>, <a href="/users/Potlood101">Potlood101</a>, <a href="/users/Royiah">Royiah</a>, <a href="/users/domino54">domino54</a>, <a href="/users/SlyStrike">SlyStrike</a>, <a href="/users/Nuhnu">Nuhnu</a>, <a href="/users/peachandwillow">peachandwillow</a>, <a href="/users/LavendarLlama">LavendarLlama</a>, <a href="/users/pinestripes">pinestripes</a>, <a href="/users/ItStartsWithZ">ItStartsWithZ</a>, <a href="/users/Numeri">Numeri</a>, <a href="/users/LivesOffFanfics">LivesOffFanfics</a>, <a href="/users/Geek_leak">Geek_leak</a>, <a href="/users/Surprise_And_Fear">Surprise_And_Fear</a>, <a href="/users/moon01234">moon01234</a>, <a href="/users/BankaiGetsuga">BankaiGetsuga</a>, <a href="/users/sassiiscute">sassiiscute</a>, <a href="/users/CaptainTardis">CaptainTardis</a>, <a href="/users/the17thmuse">the17thmuse</a>, <a href="/users/ForestTrespass">ForestTrespass</a>, <a href="/users/Punk_Wendy">Punk_Wendy</a>, <a href="/users/Nam_Channy">Nam_Channy</a>, <a href="/users/Shionosekai">Shionosekai</a>, <a href="/users/Desmid13">Desmid13</a>, <a href="/users/Itis4amAndINeedSleep">Itis4amAndINeedSleep</a>, <a href="/users/Bisexual_Bastard">Bisexual_Bastard</a>, <a href="/users/Aj2000">Aj2000</a>, <a href="/users/jazaa">jazaa</a>, <a href="/users/Guccieyebags">Guccieyebags</a>, <a href="/users/dhyetaX1999">dhyetaX1999</a>, <a href="/users/RoseAppleThai">RoseAppleThai</a>, <a href="/users/Kate_GoldenHeart">Kate_GoldenHeart</a>, <a href="/users/Somnios">Somnios</a>, <a href="/users/Chelipede">Chelipede</a>, <a href="/users/finfangirl">finfangirl</a>, <a href="/users/sibyllinesun">sibyllinesun</a>, <a href="/users/LostLurker">LostLurker</a>, <a href="/users/Sendcakesandcookies">Sendcakesandcookies</a>, <a href="/users/FrickinGwaine">FrickinGwaine</a>, <a href="/users/Starspawn">Starspawn</a>, <a href="/users/TwoDays_of_Summer">TwoDays_of_Summer</a>, <a href="/users/DoomsdayBeamXD">DoomsdayBeamXD</a>, <a href="/users/AccioWalnut">AccioWalnut</a>, <a href="/users/Aiden_hunter">Aiden_hunter</a>, <a href="/users/SavannahBanana314">SavannahBanana314</a>, <a href="/users/HunterR">HunterR</a>, <a href="/users/Johnblue">Johnblue</a>, <a href="/users/Zgirlly">Zgirlly</a>, <a href="/users/TheJStar6">TheJStar6</a>, <a href="/users/TrishFish7">TrishFish7</a>, <a href="/users/Daidaiiro">Daidaiiro</a>, <a href="/users/Itsc">Itsc</a>, <a href="/users/Jocoserious_Oddity">Jocoserious_Oddity</a>, <a href="/users/LihaneeNiess">LihaneeNiess</a>, <a href="/users/spedicorn">spedicorn</a>, <a href="/users/xorph">xorph</a>, <a href="/users/Nettle29">Nettle29</a>, <a href="/users/Exa65536">Exa65536</a>, <a href="/users/Esoulix">Esoulix</a>, <a href="/users/Naluforever3">Naluforever3</a>, <a href="/users/KnownParadox">KnownParadox</a>, <a href="/users/Quitalea">Quitalea</a>, <a href="/users/Kuro611">Kuro611</a>, <a href="/users/SeraphWithAShotgun">SeraphWithAShotgun</a>, <a href="/users/Writeous">Writeous</a>, <a href="/users/ASuperHugeNerd">ASuperHugeNerd</a>, <a href="/users/vanxuil">vanxuil</a>, <a href="/users/Sofia1502">Sofia1502</a>, <a href="/users/Xiolluc">Xiolluc</a>, <a href="/users/NiaKoks">NiaKoks</a>, <a href="/users/JaySlayz05">JaySlayz05</a>, <a href="/users/prythian">prythian</a>, <a href="/users/KaiaLavellan">KaiaLavellan</a>, <a href="/users/William_E_Cipher13">William_E_Cipher13</a>, <a href="/users/Periwinkle_petuniak">Periwinkle_petuniak</a>, <a href="/users/Milho">Milho</a>, <a href="/users/LadyoftheNight">LadyoftheNight</a>, <a href="/users/givemeyourname">givemeyourname</a>, <a href="/users/Emissary_of_Stuff">Emissary_of_Stuff</a>, <a href="/users/MiyukiOkami4">MiyukiOkami4</a>, <a href="/users/Uhohletsnot">Uhohletsnot</a>, <a href="/users/Keekry">Keekry</a>, <a href="/users/SaitamaSenpai">SaitamaSenpai</a>, <a href="/users/ebil_angel">ebil_angel</a>, <a href="/users/tigers1661">tigers1661</a>, <a href="/users/imnothere121">imnothere121</a>, <a href="/users/XxChronOblivionxX">XxChronOblivionxX</a>, <a href="/users/Koltrast">Koltrast</a>, <a href="/users/eusojgeraldo">eusojgeraldo</a>, <a href="/users/Ranubis">Ranubis</a>, <a href="/users/Arkham_Wyntier">Arkham_Wyntier</a>, <a href="/users/RainySoul">RainySoul</a>, <a href="/users/Izuka_Ren">Izuka_Ren</a>, <a href="/users/Popiplant">Popiplant</a>, <a href="/users/Doodlebotbop">Doodlebotbop</a>, <a href="/users/bloodinamug">bloodinamug</a>, <a href="/users/StopStealingMyShoes">StopStealingMyShoes</a>, <a href="/users/aquagirl555">aquagirl555</a>, <a href="/users/Theatrix">Theatrix</a>, <a href="/users/Aubri96">Aubri96</a>, <a href="/users/EscapingPerfection">EscapingPerfection</a>, <a href="/users/Arinna_Neo_Conquerra">Arinna_Neo_Conquerra</a>, <a href="/users/YeetYeet_NootNoot">YeetYeet_NootNoot</a>, <a href="/users/EternalDisc">EternalDisc</a>, <a href="/users/MaesHughes">MaesHughes</a>, <a href="/users/sophycroft">sophycroft</a>, <a href="/users/StellasVidere">StellasVidere</a>, <a href="/users/saya1998">saya1998</a>, <a href="/users/AnisEileen">AnisEileen</a>, <a href="/users/Addemiusinksoul">Addemiusinksoul</a>, <a href="/users/Stratagemini">Stratagemini</a>, <a href="/users/AkiraYuni">AkiraYuni</a>, <a href="/users/Mazongian">Mazongian</a>, <a href="/users/nekofangirl101">nekofangirl101</a>, <a href="/users/saeranisbaeran1030">saeranisbaeran1030</a>, <a href="/users/simple_velleity">simple_velleity</a>, <a href="/users/Jiryrig">Jiryrig</a>, <a href="/users/FanFicFan13">FanFicFan13</a>, <a href="/users/Dragons_Bane">Dragons_Bane</a>, <a href="/users/pointyellan">pointyellan</a>, <a href="/users/nodza">nodza</a>, <a href="/users/crionsmush">crionsmush</a>, <a href="/users/randomuser3">randomuser3</a>, <a href="/users/HyperionMalfoy">HyperionMalfoy</a>, <a href="/users/Samlikespigs">Samlikespigs</a>, <a href="/users/TeaGreen">TeaGreen</a>, <a href="/users/kitchensync">kitchensync</a>, <a href="/users/Claup_loves_pie">Claup_loves_pie</a>, <a href="/users/PirateDetective01">PirateDetective01</a>, <a href="/users/ChiakiBestGamer">ChiakiBestGamer</a>, <a href="/users/Allstarall">Allstarall</a>, <a href="/users/nicomad">nicomad</a>, <a href="/users/henderson28">henderson28</a>, <a href="/users/Sammyjoco">Sammyjoco</a>, <a href="/users/katachresis">katachresis</a>, <a href="/users/c_ssius">c_ssius</a>, <a href="/users/AnimeLover513">AnimeLover513</a>, <a href="/users/FallenShadow950">FallenShadow950</a>, <a href="/users/Eren_Agreste">Eren_Agreste</a>, <a href="/users/The_Mythical_Bookwyrm">The_Mythical_Bookwyrm</a>, <a href="/users/imhaving_yourbaby">imhaving_yourbaby</a>, <a href="/users/Zelando555">Zelando555</a>, <a href="/users/RowlettLesbian">RowlettLesbian</a>, <a href="/users/Bocchaneko">Bocchaneko</a>, <a href="/users/onewhodies">onewhodies</a>, <a href="/users/noflatsnosharps">noflatsnosharps</a>, <a href="/users/hanarsweater">hanarsweater</a>, <a href="/users/Discord_world">Discord_world</a>, <a href="/users/lionjazz45">lionjazz45</a>, <a href="/users/SwirlingDreams">SwirlingDreams</a>, <a href="/users/Animegirl317">Animegirl317</a>, <a href="/users/Spiritfox412">Spiritfox412</a>, <a href="/users/InsertEndCredits">InsertEndCredits</a>, <a href="/users/space_race">space_race</a>, <a href="/users/heart_of_the_devil">heart_of_the_devil</a>, <a href="/users/Karmania">Karmania</a>, <a href="/users/DarylSun">DarylSun</a>, <a href="/users/egwenechapters">egwenechapters</a>, <a href="/users/freakin_out">freakin_out</a>, <a href="/users/mOssiChryrz">mOssiChryrz</a>, <a href="/users/Kallen99">Kallen99</a>, <a href="/users/quinluna">quinluna</a>, <a href="/users/DarkkBluee">DarkkBluee</a>, <a href="/users/Foggydaysahead">Foggydaysahead</a>, <a href="/users/thechargrey">thechargrey</a>, <a href="/users/Sekkaii">Sekkaii</a>, <a href="/users/Tukata733">Tukata733</a>, <a href="/users/KittyMina3">KittyMina3</a>, <a href="/users/dropsofargent">dropsofargent</a>, <a href="/users/The_Dark_Side_Of_The_Moon74">The_Dark_Side_Of_The_Moon74</a>, <a href="/users/AikaStrum">AikaStrum</a>, <a href="/users/drippingmoonwax">drippingmoonwax</a>, <a href="/users/iremi678">iremi678</a>, <a href="/users/A_Crazy_Potato">A_Crazy_Potato</a>, <a href="/users/Zim">Zim</a>, <a href="/users/WhiteDoe">WhiteDoe</a>, <a href="/users/Jenson1990">Jenson1990</a>, <a href="/users/magic_cherry_pie">magic_cherry_pie</a>, <a href="/users/Anon42">Anon42</a>, <a href="/users/crossroadswrite">crossroadswrite</a>, <a href="/users/Bioslayer">Bioslayer</a>, <a href="/users/Markala">Markala</a>, <a href="/users/nog">nog</a>, <a href="/users/IceLily">IceLily</a>, <a href="/users/kattrina123">kattrina123</a>, <a href="/users/JessSprinkles">JessSprinkles</a>, <a href="/users/FenValkyrie">FenValkyrie</a>, <a href="/users/Sno0o0o0o0py">Sno0o0o0o0py</a>, <a href="/users/saraphynx">saraphynx</a>, <a href="/users/aWizardDidIt">aWizardDidIt</a>, <a href="/users/Lazy_Hitoshi">Lazy_Hitoshi</a>, <a href="/users/Sehri">Sehri</a>, <a href="/users/teenage_dystopian_book_nerd">teenage_dystopian_book_nerd</a>, <a href="/users/HellboundShadow">HellboundShadow</a>, <a href="/users/Aquila_Altair">Aquila_Altair</a>, <a href="/users/The_GrandWolf">The_GrandWolf</a>, <a href="/users/AnyMoreBrightIdeas">AnyMoreBrightIdeas</a>, <a href="/users/MidnightFenrir">MidnightFenrir</a>, <a href="/users/Bahey">Bahey</a>, <a href="/users/AriaPMDEoL">AriaPMDEoL</a>, <a href="/users/QueenQuinn">QueenQuinn</a>, <a href="/users/gaviotta1">gaviotta1</a>, <a href="/users/Exo7421">Exo7421</a>, <a href="/users/Catzooa">Catzooa</a>, <a href="/users/LumenWatch">LumenWatch</a>, <a href="/users/tatsuhiro">tatsuhiro</a>, <a href="/users/thebuttofexo">thebuttofexo</a>, <a href="/users/Iris_Nss">Iris_Nss</a>, <a href="/users/Blacknekopower">Blacknekopower</a>, <a href="/users/Sgcohn18">Sgcohn18</a>, <a href="/users/jaspeada0928">jaspeada0928</a>, <a href="/users/Spiritedaway1997">Spiritedaway1997</a>, <a href="/users/TheBrightNoise">TheBrightNoise</a>, <a href="/users/ultimatequeenoffandoms">ultimatequeenoffandoms</a>, <a href="/users/LokasennaHiddleston">LokasennaHiddleston</a>, <a href="/users/FreddieFerret">FreddieFerret</a>, <a href="/users/fannydespres">fannydespres</a>, <a href="/users/Wowza_subway">Wowza_subway</a>, <a href="/users/Melancholy_Pug">Melancholy_Pug</a>, <a href="/users/Galacti_Turtle">Galacti_Turtle</a>, <a href="/users/fififlame_mangafan">fififlame_mangafan</a>, <a href="/users/CyanRaven">CyanRaven</a>, <a href="/users/Cosmic_Spaceship">Cosmic_Spaceship</a>, <a href="/users/peacefulfaerie">peacefulfaerie</a>, <a href="/users/Shin_Akazawa">Shin_Akazawa</a>, <a href="/users/lucilu">lucilu</a>, <a href="/users/qori">qori</a>, <a href="/users/Silverstring">Silverstring</a>, <a href="/users/ireallydunno">ireallydunno</a>, <a href="/users/chokinghazard135">chokinghazard135</a>, <a href="/users/Lawrenciumbash42">Lawrenciumbash42</a>, <a href="/users/belbug210">belbug210</a>, <a href="/users/Crazycat289">Crazycat289</a>, <a href="/users/Disasternoj">Disasternoj</a>, <a href="/users/skywright">skywright</a>, <a href="/users/Klance_In_My_Pants">Klance_In_My_Pants</a>, <a href="/users/KinkyKatsudon">KinkyKatsudon</a>, <a href="/users/BokUgglan">BokUgglan</a>, <a href="/users/lurking_dragon">lurking_dragon</a>, <a href="/users/anary2002">anary2002</a>, <a href="/users/AkiseAru1010">AkiseAru1010</a>, <a href="/users/So_Yeah_Lolo">So_Yeah_Lolo</a>, <a href="/users/Dustier7">Dustier7</a>, <a href="/users/taytot777">taytot777</a>, <a href="/users/Zilluminate">Zilluminate</a>, <a href="/users/BlackPantherFandoms">BlackPantherFandoms</a>, <a href="/users/MidnightAvenger">MidnightAvenger</a>, <a href="/users/Pownbattle">Pownbattle</a>, <a href="/users/UltraQueenOfTheNerds">UltraQueenOfTheNerds</a>, <a href="/users/AlbiNora">AlbiNora</a>, <a href="/users/kixxy23">kixxy23</a>, <a href="/users/Cosmic_Colors">Cosmic_Colors</a>, <a href="/users/DumbBitchWitch">DumbBitchWitch</a>, <a href="/users/620_knock_on_wood_202525">620_knock_on_wood_202525</a>, <a href="/users/butthulu">butthulu</a>, <a href="/users/RamenNoodlesAndTeaPlease">RamenNoodlesAndTeaPlease</a>, <a href="/users/sapassde">sapassde</a>, <a href="/users/Livindina">Livindina</a>, <a href="/users/Quirky_Individual">Quirky_Individual</a>, <a href="/users/Peribow">Peribow</a>, <a href="/users/kittyissac">kittyissac</a>, <a href="/users/KinkyDeathMagic">KinkyDeathMagic</a>, <a href="/users/Curses">Curses</a>, <a href="/users/Mysifuss">Mysifuss</a>, <a href="/users/melon_bread">melon_bread</a>, <a href="/users/Scy2007yay">Scy2007yay</a>, <a href="/users/Fire_on_Ice">Fire_on_Ice</a>, <a href="/users/Nrlliyna">Nrlliyna</a>, <a href="/users/Puppetmaster13">Puppetmaster13</a>, <a href="/users/MeltedTeeth">MeltedTeeth</a>, <a href="/users/BlueBloodjay16">BlueBloodjay16</a>, <a href="/users/atrumnemus">atrumnemus</a>, <a href="/users/bookworm_94">bookworm_94</a>, <a href="/users/MrPrecedent">MrPrecedent</a>, <a href="/users/Silsmcginty">Silsmcginty</a>, <a href="/users/Atalante241">Atalante241</a>, <a href="/users/Juleswrites">Juleswrites</a>, <a href="/users/NoNameCrushedStar">NoNameCrushedStar</a>, <a href="/users/ayienne">ayienne</a>, <a href="/users/Alinicia">Alinicia</a>, <a href="/users/TyRose">TyRose</a>, <a href="/users/0and0the0only0one0that0is0not0working0">0and0the0only0one0that0is0not0working0</a>, <a href="/users/AnaDielle">AnaDielle</a>, <a href="/users/Shadowedred">Shadowedred</a>, <a href="/users/cyber_phobia">cyber_phobia</a>, <a href="/users/Melfog">Melfog</a>, <a href="/users/AyaVoltaire">AyaVoltaire</a>, <a href="/users/penpaulkon46">penpaulkon46</a>, <a href="/users/Jaided_x">Jaided_x</a>, <a href="/users/Joewue">Joewue</a>, <a href="/users/Louise_Tjadina">Louise_Tjadina</a>, <a href="/users/Ronnambi">Ronnambi</a>, <a href="/users/Ocean_On_Fire">Ocean_On_Fire</a>, <a href="/users/Acwellen">Acwellen</a>, <a href="/users/timelords_as_paladins">timelords_as_paladins</a>, <a href="/users/Laineygaynee">Laineygaynee</a>, <a href="/users/Kyran_Kandosa">Kyran_Kandosa</a>, <a href="/users/JohnDaDragon">JohnDaDragon</a>, <a href="/users/PandaCatXD">PandaCatXD</a>, <a href="/users/L_Anna">L_Anna</a>, <a href="/users/theNewDesire">theNewDesire</a>, <a href="/users/experimentaldrama">experimentaldrama</a>, <a href="/users/drpepper_and_takis_for_lunch">drpepper_and_takis_for_lunch</a>, <a href="/users/Shanter317">Shanter317</a>, <a href="/users/IceBlack">IceBlack</a>, <a href="/users/Missingjay">Missingjay</a>, <a href="/users/Silvershadowleaf">Silvershadowleaf</a>, <a href="/users/SioSpace">SioSpace</a>, <a href="/users/Yoshikitty">Yoshikitty</a>, <a href="/users/Noxilicious">Noxilicious</a>, <a href="/users/zitacica">zitacica</a>, <a href="/users/Ntchick">Ntchick</a>, <a href="/users/IsThatHowItsSpelled">IsThatHowItsSpelled</a>, <a href="/users/LadyDragonrain">LadyDragonrain</a>, <a href="/users/matchasoba">matchasoba</a>, <a href="/users/Ahlala">Ahlala</a>, <a href="/users/Cake55">Cake55</a>, <a href="/users/Tyto11">Tyto11</a>, <a href="/users/Zafar">Zafar</a>, <a href="/users/AstaraelDarkrahBlack">AstaraelDarkrahBlack</a>, <a href="/users/jrmyknx">jrmyknx</a>, <a href="/users/TheOsirisDeclaration">TheOsirisDeclaration</a>, <a href="/users/Ukelene">Ukelene</a>, <a href="/users/kickassdani">kickassdani</a>, <a href="/users/AnoosLord">AnoosLord</a>, <a href="/users/ruinjvpiter">ruinjvpiter</a>, <a href="/users/Neaislove">Neaislove</a>, <a href="/users/jt1993">jt1993</a>, <a href="/users/Choul__Gat">Choul__Gat</a>, <a href="/users/Jak8714">Jak8714</a>, <a href="/users/Akashi_Seijiro">Akashi_Seijiro</a>, <a href="/users/DarkWine">DarkWine</a>, <a href="/users/longsufferingsigh">longsufferingsigh</a>, <a href="/users/blazingpotato42">blazingpotato42</a>, <a href="/users/lovelysandlonelys">lovelysandlonelys</a>, <a href="/users/NobuMcshoot">NobuMcshoot</a>, <a href="/users/tsos">tsos</a>, <a href="/users/MCAAZ">MCAAZ</a>, <a href="/users/DeliciousJinx">DeliciousJinx</a>, <a href="/users/notdexterousatall">notdexterousatall</a>, <a href="/users/Violetta01">Violetta01</a>, <a href="/users/amball2000">amball2000</a>, <a href="/users/ShadowNic94">ShadowNic94</a>, <a href="/users/Selenite_Flowers">Selenite_Flowers</a>, <a href="/users/iamarosegarden">iamarosegarden</a>, <a href="/users/kazuaishi">kazuaishi</a>, <a href="/users/SpookyGhost47">SpookyGhost47</a>, <a href="/users/M3G">M3G</a>, <a href="/users/lillicat">lillicat</a>, <a href="/users/Newmoon1399">Newmoon1399</a>, <a href="/users/AshleyReveur">AshleyReveur</a>, <a href="/users/monsterinthetrees">monsterinthetrees</a>, <a href="/users/sorbetlion">sorbetlion</a>, <a href="/users/weeb_with_a_need">weeb_with_a_need</a>, <a href="/users/miyunariorio">miyunariorio</a>, <a href="/users/Vesca">Vesca</a>, <a href="/users/WindSage">WindSage</a>, <a href="/users/Patolemus">Patolemus</a>, <a href="/users/Winkerpie">Winkerpie</a>, <a href="/users/Kuzman">Kuzman</a>, <a href="/users/5p1d3y_91rl">5p1d3y_91rl</a>, <a href="/users/Moonpie372">Moonpie372</a>, <a href="/users/Elder_Cryptid">Elder_Cryptid</a>, <a href="/users/Mike439">Mike439</a>, <a href="/users/Cheycheywolf">Cheycheywolf</a>, <a href="/users/InugamiGuru">InugamiGuru</a>, <a href="/users/BlackRabbit95">BlackRabbit95</a>, <a href="/users/Androdom">Androdom</a>, <a href="/users/InfernalSodaPop">InfernalSodaPop</a>, <a href="/users/Vickypedia">Vickypedia</a>, <a href="/users/HarukaNana">HarukaNana</a>, <a href="/users/TeSs_SaMuRaI">TeSs_SaMuRaI</a>, <a href="/users/gossipmonger">gossipmonger</a>, <a href="/users/Hebecious">Hebecious</a>, <a href="/users/AwesomeAllison">AwesomeAllison</a>, <a href="/users/vaste">vaste</a>, <a href="/users/Rosely">Rosely</a>, <a href="/users/Tinyponytail">Tinyponytail</a>, <a href="/users/Coolmars500">Coolmars500</a>, <a href="/users/Buzzardonic">Buzzardonic</a>, <a href="/users/CaptainPotato">CaptainPotato</a>, <a href="/users/Sethyles">Sethyles</a>, <a href="/users/vikxx91">vikxx91</a>, <a href="/users/RandomPsychoticPerson">RandomPsychoticPerson</a>, <a href="/users/Arrii77">Arrii77</a>, <a href="/users/icecat">icecat</a>, <a href="/users/littlepenguin96">littlepenguin96</a>, <a href="/users/Mistike">Mistike</a>, <a href="/users/moi1">moi1</a>, <a href="/users/Abrinei">Abrinei</a>, <a href="/users/Hachimen">Hachimen</a>, <a href="/users/pawel111223">pawel111223</a>, <a href="/users/Shiny9Tails">Shiny9Tails</a>, <a href="/users/Perky">Perky</a>, <a href="/users/Demi_Wizard">Demi_Wizard</a>, <a href="/users/friedeggs">friedeggs</a>, <a href="/users/creepycrabs">creepycrabs</a>, <a href="/users/hungryliar">hungryliar</a>, <a href="/users/RBLynn">RBLynn</a>, <a href="/users/amber_glowbug">amber_glowbug</a>, <a href="/users/lane09">lane09</a>, <a href="/users/AnnAisu">AnnAisu</a>, <a href="/users/WolfenaxDart">WolfenaxDart</a>, <a href="/users/Ok_waIT_WHAT">Ok_waIT_WHAT</a>, <a href="/users/Francis_Pomodoro">Francis_Pomodoro</a>, <a href="/users/ExplodedChocobo">ExplodedChocobo</a>, <a href="/users/Biuebeiis">Biuebeiis</a>, <a href="/users/Susurra">Susurra</a>, <a href="/users/teapot_lighthouse">teapot_lighthouse</a>, <a href="/users/AlteraWinter">AlteraWinter</a>, <a href="/users/SleepyCallaLily">SleepyCallaLily</a>, <a href="/users/c0l0r_bl1nd_n355">c0l0r_bl1nd_n355</a>, <a href="/users/legendoftheotherside">legendoftheotherside</a>, <a href="/users/Pikabolt">Pikabolt</a>, <a href="/users/Ch_ee_rios">Ch_ee_rios</a>, <a href="/users/Scoobygirl45">Scoobygirl45</a>, <a href="/users/Sorreltail24">Sorreltail24</a>, <a href="/users/KittfoxHowlett">KittfoxHowlett</a>, <a href="/users/salsas100">salsas100</a>, <a href="/users/Foxdemonsrock">Foxdemonsrock</a>, <a href="/users/quivivraverra">quivivraverra</a>, <a href="/users/Amthyst">Amthyst</a>, <a href="/users/PunkAssKid">PunkAssKid</a>, <a href="/users/ichorsun">ichorsun</a>, <a href="/users/Samaren">Samaren</a>, <a href="/users/Ovlet">Ovlet</a>, <a href="/users/Tatrin">Tatrin</a>, <a href="/users/sftjinwoo">sftjinwoo</a>, <a href="/users/honeytt">honeytt</a>, <a href="/users/Randomfandoms389">Randomfandoms389</a>, <a href="/users/A_TopHat_for_two">A_TopHat_for_two</a>, <a href="/users/XRainbowXToadXPowerX">XRainbowXToadXPowerX</a>, <a href="/users/MsMilitaryPants">MsMilitaryPants</a>, <a href="/users/MinhAnh">MinhAnh</a>, <a href="/users/Aceto_Shiobana">Aceto_Shiobana</a>, <a href="/users/cytokines">cytokines</a>, <a href="/users/LegallyGrey">LegallyGrey</a>, <a href="/users/neko6ghost">neko6ghost</a>, <a href="/users/Bodardos">Bodardos</a>, <a href="/users/Blackbird3210">Blackbird3210</a>, <a href="/users/Troubledtoffee">Troubledtoffee</a>, <a href="/users/CloudofChange">CloudofChange</a>, <a href="/users/BoundlessBlood">BoundlessBlood</a>, <a href="/users/TheDragonTribes">TheDragonTribes</a>, <a href="/users/SpareBucketTurtle">SpareBucketTurtle</a>, <a href="/users/Cante_Merle">Cante_Merle</a>, <a href="/users/Zembu_Mirume">Zembu_Mirume</a>, <a href="/users/VODLIX">VODLIX</a>, <a href="/users/otomerson">otomerson</a>, <a href="/users/Unluck">Unluck</a>, <a href="/users/MagicKit">MagicKit</a>, <a href="/users/Less_Ginger">Less_Ginger</a>, <a href="/users/exquisitesarcasm">exquisitesarcasm</a>, <a href="/users/TaeWaifu123">TaeWaifu123</a>, <a href="/users/Chromo">Chromo</a>, <a href="/users/ishouldbe_sleeping">ishouldbe_sleeping</a>, <a href="/users/herchocolateeyes">herchocolateeyes</a>, <a href="/users/TwistedHilarity">TwistedHilarity</a>, <a href="/users/liffie">liffie</a>, <a href="/users/indecisivethings">indecisivethings</a>, <a href="/users/AirKat">AirKat</a>, <a href="/users/Crumbles_Of_Reality">Crumbles_Of_Reality</a>, <a href="/users/Friendly_Neighborhood_Loser">Friendly_Neighborhood_Loser</a>, <a href="/users/Lebellerose">Lebellerose</a>, <a href="/users/cyber_inkblot">cyber_inkblot</a>, <a href="/users/Cece_Summer">Cece_Summer</a>, <a href="/users/Lil_Sdum">Lil_Sdum</a>, <a href="/users/DotLibrarian">DotLibrarian</a>, <a href="/users/m_phoenix">m_phoenix</a>, <a href="/users/Nemocyte">Nemocyte</a>, <a href="/users/amberquartz">amberquartz</a>, <a href="/users/ColbaltBlueBird">ColbaltBlueBird</a>, <a href="/users/musicformiles">musicformiles</a>, <a href="/users/Membura">Membura</a>, <a href="/users/The_Nightshade_Serpent">The_Nightshade_Serpent</a>, <a href="/users/b_heapoft">b_heapoft</a>, <a href="/users/GabeTheWriter">GabeTheWriter</a>, <a href="/users/The_Dragon_Keeper">The_Dragon_Keeper</a>, <a href="/users/cherriesxpeaches">cherriesxpeaches</a>, <a href="/users/Tuttitay7">Tuttitay7</a>, <a href="/users/strider_gum">strider_gum</a>, <a href="/users/PrinceFins">PrinceFins</a>, <a href="/users/Miomie">Miomie</a>, <a href="/users/Markus_Antonius">Markus_Antonius</a>, <a href="/users/Sayaka194992">Sayaka194992</a>, <a href="/users/TheMexicanAttacker">TheMexicanAttacker</a>, <a href="/users/SamaritanSchtick">SamaritanSchtick</a>, <a href="/users/imprismed">imprismed</a>, <a href="/users/Jcjonesacp">Jcjonesacp</a>, <a href="/users/Yuurix3">Yuurix3</a>, <a href="/users/Rainwhen">Rainwhen</a>, <a href="/users/Banana_Breader">Banana_Breader</a>, <a href="/users/Oralain">Oralain</a>, <a href="/users/Garamoji">Garamoji</a>, <a href="/users/FloralDinosaur">FloralDinosaur</a>, <a href="/users/FieryLight">FieryLight</a>, <a href="/users/Screenlight">Screenlight</a>, <a href="/users/PachiiRiisu">PachiiRiisu</a>, <a href="/users/Darke13">Darke13</a>, <a href="/users/Kokujin">Kokujin</a>, <a href="/users/Lypten">Lypten</a>, <a href="/users/cadrack">cadrack</a>, <a href="/users/Pikapokemon101">Pikapokemon101</a>, <a href="/users/Fehrentie">Fehrentie</a>, <a href="/users/Themostawesomeninja_07">Themostawesomeninja_07</a>, <a href="/users/Haemin">Haemin</a>, <a href="/users/BangerHat">BangerHat</a>, <a href="/users/Tynamomaniac">Tynamomaniac</a>, <a href="/users/birdcatt">birdcatt</a>, <a href="/users/Rivas_gaby">Rivas_gaby</a>, <a href="/users/HolisticFlower">HolisticFlower</a>, <a href="/users/hikarinchan">hikarinchan</a>, <a href="/users/Sumeris">Sumeris</a>, <a href="/users/Happy_lil_Alex">Happy_lil_Alex</a>, <a href="/users/Shadow_hunter93">Shadow_hunter93</a>, <a href="/users/iamaba">iamaba</a>, <a href="/users/JustAnAgender">JustAnAgender</a>, <a href="/users/luminaessence">luminaessence</a>, <a href="/users/TheAnswerIsAlways42">TheAnswerIsAlways42</a>, <a href="/users/DREVtheProcrastinator">DREVtheProcrastinator</a>, <a href="/users/Sorceress_Of_Time">Sorceress_Of_Time</a>, <a href="/users/SlipScout">SlipScout</a>, <a href="/users/Sulfuric_animus">Sulfuric_animus</a>, <a href="/users/Vexximus">Vexximus</a>, <a href="/users/Secretkemi">Secretkemi</a>, <a href="/users/Wylder">Wylder</a>, <a href="/users/Nekoboii">Nekoboii</a>, <a href="/users/radioactivegumdrop">radioactivegumdrop</a>, <a href="/users/HisNameIsMyNM2">HisNameIsMyNM2</a>, <a href="/users/ravenarmegeddonsreaper">ravenarmegeddonsreaper</a>, <a href="/users/graveExcitement">graveExcitement</a>, <a href="/users/Shivnaka">Shivnaka</a>, <a href="/users/Shayde_In_Life">Shayde_In_Life</a>, <a href="/users/LaundryHamper">LaundryHamper</a>, <a href="/users/jay_somnia">jay_somnia</a>, <a href="/users/daekie">daekie</a>, <a href="/users/Lily_Nina_123">Lily_Nina_123</a>, <a href="/users/Tinnmal">Tinnmal</a>, <a href="/users/Gelsodo">Gelsodo</a>, <a href="/users/Okeydokeyokey">Okeydokeyokey</a>, <a href="/users/ShipperOfFandoms04">ShipperOfFandoms04</a>, <a href="/users/Dennisa22">Dennisa22</a>, <a href="/users/AromageSakura">AromageSakura</a>, <a href="/users/Logar3">Logar3</a>, <a href="/users/12Redsky34">12Redsky34</a>, <a href="/users/Celestial3">Celestial3</a>, <a href="/users/Duhkha">Duhkha</a>, <a href="/users/J_a_c_o_b_y_123">J_a_c_o_b_y_123</a>, <a href="/users/FadingRiver">FadingRiver</a>, <a href="/users/Soyvolon">Soyvolon</a>, <a href="/users/Ddkeac">Ddkeac</a>, <a href="/users/Rix1998">Rix1998</a>, <a href="/users/fallen_stars">fallen_stars</a>, <a href="/users/Queencraft">Queencraft</a>, <a href="/users/AutumnAgain">AutumnAgain</a>, <a href="/users/lifeisbeautifulandpretty">lifeisbeautifulandpretty</a>, <a href="/users/PatateDouce">PatateDouce</a>, <a href="/users/LadyAthos">LadyAthos</a>, <a href="/users/JustAGirlInFanland">JustAGirlInFanland</a>, <a href="/users/IcyShadow">IcyShadow</a>, <a href="/users/My_pet_pig_said_you_aint_shit">My_pet_pig_said_you_aint_shit</a>, <a href="/users/WhiteBishop">WhiteBishop</a>, <a href="/users/WassanT004">WassanT004</a>, <a href="/users/Canaria0">Canaria0</a>, <a href="/users/on_clockwork_wings">on_clockwork_wings</a>, <a href="/users/Pettanko_Tackle">Pettanko_Tackle</a>, <a href="/users/UniqueSpeciesOfGabby">UniqueSpeciesOfGabby</a>, <a href="/users/MiniSparkler">MiniSparkler</a>, <a href="/users/NinjaLuna">NinjaLuna</a>, <a href="/users/QuestDawnWolf">QuestDawnWolf</a>, <a href="/users/ChemicalFallOut5">ChemicalFallOut5</a>, <a href="/users/nerdpersonKT">nerdpersonKT</a>, <a href="/users/BlaiseVaguebakenekomata">BlaiseVaguebakenekomata</a>, <a href="/users/CharlesWaterloo">CharlesWaterloo</a>, <a href="/users/ToumeiKyoudai">ToumeiKyoudai</a>, <a href="/users/Kelo51">Kelo51</a>, <a href="/users/GratiaPuella">GratiaPuella</a>, <a href="/users/otakuninja14">otakuninja14</a>, <a href="/users/SoroTheAndroid">SoroTheAndroid</a>, <a href="/users/Under_a_fucking_cover">Under_a_fucking_cover</a>, <a href="/users/Voltron_Kpop_Trash">Voltron_Kpop_Trash</a>, <a href="/users/jonna594">jonna594</a>, <a href="/users/UranianUmbrella">UranianUmbrella</a>, <a href="/users/fortuna16">fortuna16</a>, <a href="/users/Random_Corpse">Random_Corpse</a>, <a href="/users/StaticTelevisiom">StaticTelevisiom</a>, <a href="/users/CBookWyrm">CBookWyrm</a>, <a href="/users/MissP">MissP</a>, <a href="/users/Yue_owo">Yue_owo</a>, <a href="/users/SlytherinXiao">SlytherinXiao</a>, <a href="/users/Galaxy_Kryptonite">Galaxy_Kryptonite</a>, <a href="/users/dolocia">dolocia</a>, <a href="/users/BlueUnicorn24">BlueUnicorn24</a>, <a href="/users/alertsacks">alertsacks</a>, <a href="/users/Cornonlecob">Cornonlecob</a>, <a href="/users/Rising_Fandoms">Rising_Fandoms</a>, <a href="/users/alyssglacias">alyssglacias</a>, <a href="/users/Ididntsignupforthesefeels">Ididntsignupforthesefeels</a>, <a href="/users/FangOfTheFrozenWinds">FangOfTheFrozenWinds</a>, <a href="/users/gilly45">gilly45</a>, <a href="/users/Rosewatery">Rosewatery</a>, <a href="/users/porqupique">porqupique</a>, <a href="/users/Bengnuih">Bengnuih</a>, <a href="/users/Digeridoodler">Digeridoodler</a>, <a href="/users/Wildsong">Wildsong</a>, <a href="/users/Marisul">Marisul</a>, <a href="/users/ReedRead0503">ReedRead0503</a>, <a href="/users/freakingbored123">freakingbored123</a>, <a href="/users/Hawkie_Bird_27">Hawkie_Bird_27</a>, <a href="/users/keysanddaydreaming">keysanddaydreaming</a>, <a href="/users/Halorrui">Halorrui</a>, <a href="/users/archer007">archer007</a>, <a href="/users/Ihatechairs">Ihatechairs</a>, <a href="/users/Orkiod_Inquisitor">Orkiod_Inquisitor</a>, <a href="/users/Aliceos">Aliceos</a>, <a href="/users/waxpet">waxpet</a>, <a href="/users/RedRoseLolly">RedRoseLolly</a>, <a href="/users/Nihulus">Nihulus</a>, <a href="/users/Hecate1412">Hecate1412</a>, <a href="/users/CurseOfAnAddict">CurseOfAnAddict</a>, <a href="/users/mossy_green">mossy_green</a>, <a href="/users/Aethelar">Aethelar</a>, <a href="/users/Delee">Delee</a>, <a href="/users/KelseyCake">KelseyCake</a>, <a href="/users/muuu">muuu</a>, <a href="/users/Shiro_Keyyu">Shiro_Keyyu</a>, <a href="/users/Xahn">Xahn</a>, <a href="/users/Pleasejustgivememyaccount">Pleasejustgivememyaccount</a>, <a href="/users/SevenCorvus">SevenCorvus</a>, <a href="/users/ThatFriendlySpiritAO">ThatFriendlySpiritAO</a>, <a href="/users/NeedsCaffeineRightNow">NeedsCaffeineRightNow</a>, <a href="/users/Imthecattoyoursun">Imthecattoyoursun</a>, <a href="/users/Colonel_Sarge">Colonel_Sarge</a>, <a href="/users/I_Are_Bagel_Jesus">I_Are_Bagel_Jesus</a>, <a href="/users/sonicreeper">sonicreeper</a>, <a href="/users/Tickleheart">Tickleheart</a>, <a href="/users/Geci10">Geci10</a>, <a href="/users/Kos926">Kos926</a>, <a href="/users/wantsweme">wantsweme</a>, <a href="/users/tediuminahamsterball">tediuminahamsterball</a>, <a href="/users/LaMonjaLoca">LaMonjaLoca</a>, <a href="/users/El8643">El8643</a>, <a href="/users/Zeera134">Zeera134</a>, <a href="/users/Stardust_girl">Stardust_girl</a>, <a href="/users/ijustlivehere">ijustlivehere</a>, <a href="/users/WaltzQueen">WaltzQueen</a>, <a href="/users/Lovelycatwrites">Lovelycatwrites</a>, <a href="/users/SoftLilBun">SoftLilBun</a>, <a href="/users/MushroomCat">MushroomCat</a>, <a href="/users/Uuu26">Uuu26</a>, <a href="/users/fisheyechain">fisheyechain</a>, <a href="/users/LordVile">LordVile</a>, <a href="/users/superfanman217">superfanman217</a>, <a href="/users/Zardriana_Wolf">Zardriana_Wolf</a>, <a href="/users/toppis">toppis</a>, <a href="/users/Mischievous_at_heart">Mischievous_at_heart</a>, <a href="/users/Lilawere">Lilawere</a>, <a href="/users/lokis_stalker007">lokis_stalker007</a>, <a href="/users/RauenMuninn">RauenMuninn</a>, <a href="/users/Klau">Klau</a>, <a href="/users/Cubbyhb1">Cubbyhb1</a>, <a href="/users/Kantler">Kantler</a>, <a href="/users/i_am_snowils_admiral">i_am_snowils_admiral</a>, <a href="/users/higher">higher</a>, <a href="/users/iris_sanders_athena">iris_sanders_athena</a>, <a href="/users/I_am_mad_platypus_78">I_am_mad_platypus_78</a>, <a href="/users/midnight_flame">midnight_flame</a>, <a href="/users/pocket_dinosaur">pocket_dinosaur</a>, <a href="/users/Cuddle_WhiteWolf">Cuddle_WhiteWolf</a>, <a href="/users/FrostingFlames">FrostingFlames</a>, <a href="/users/Akeylei">Akeylei</a>, <a href="/users/ExcuseMeSir">ExcuseMeSir</a>, <a href="/users/cottoncandychaos">cottoncandychaos</a>, <a href="/users/tacoboutfabulous">tacoboutfabulous</a>, <a href="/users/Travelerkino">Travelerkino</a>, <a href="/users/prettyshinyspoon">prettyshinyspoon</a>, <a href="/users/Zmora">Zmora</a>, <a href="/users/StolenChild">StolenChild</a>, <a href="/users/grievemill">grievemill</a>, <a href="/users/Rioinred">Rioinred</a>, <a href="/users/Porkii">Porkii</a>, <a href="/users/SakamotoItoe">SakamotoItoe</a>, <a href="/users/Thoracto">Thoracto</a>, <a href="/users/Esqueleto">Esqueleto</a>, <a href="/users/crypticColumnist">crypticColumnist</a>, <a href="/users/Dinadinu">Dinadinu</a>, <a href="/users/BeQuiet">BeQuiet</a>, <a href="/users/Rook2konig">Rook2konig</a>, <a href="/users/skeyewalker">skeyewalker</a>, <a href="/users/MiraMyth">MiraMyth</a>, <a href="/users/NightshadeArt">NightshadeArt</a>, <a href="/users/thelibrarianjesser">thelibrarianjesser</a>, <a href="/users/Zarakem">Zarakem</a>, <a href="/users/Witchylesbian">Witchylesbian</a>, <a href="/users/rogueofspace">rogueofspace</a>, <a href="/users/Irrya">Irrya</a>, <a href="/users/Lugiagirl98">Lugiagirl98</a>, <a href="/users/FelineHappier">FelineHappier</a>, <a href="/users/Sucidalwulf">Sucidalwulf</a>, <a href="/users/Akutiema21">Akutiema21</a>, <a href="/users/chav_i3">chav_i3</a>, <a href="/users/please_dont_bite">please_dont_bite</a>, <a href="/users/Nicowritesthings">Nicowritesthings</a>, <a href="/users/Dym">Dym</a>, <a href="/users/silverviolin069">silverviolin069</a>, <a href="/users/mirellian">mirellian</a>, <a href="/users/angel60003">angel60003</a>, <a href="/users/PitterPatterDripDrop">PitterPatterDripDrop</a>, <a href="/users/Lola9525">Lola9525</a>, <a href="/users/magitechxinc">magitechxinc</a>, <a href="/users/Era27">Era27</a>, <a href="/users/Basic_Hell">Basic_Hell</a>, <a href="/users/MiaHale">MiaHale</a>, <a href="/users/SimpleUserName">SimpleUserName</a>, <a href="/users/Starculler">Starculler</a>, <a href="/users/31RottenBananas">31RottenBananas</a>, <a href="/users/EbonyMara">EbonyMara</a>, <a href="/users/Thelastvoidwalker">Thelastvoidwalker</a>, <a href="/users/FuzzyLyra">FuzzyLyra</a>, <a href="/users/pagination">pagination</a>, <a href="/users/EmpressAelin">EmpressAelin</a>, <a href="/users/marshmall0">marshmall0</a>, <a href="/users/Amanell">Amanell</a>, <a href="/users/simbay">simbay</a>, <a href="/users/Eysetadeysta">Eysetadeysta</a>, <a href="/users/Paws">Paws</a>, <a href="/users/Jpyill">Jpyill</a>, <a href="/users/BluMnM">BluMnM</a>, <a href="/users/aplaceforthebirds">aplaceforthebirds</a>, <a href="/users/baby_watermelon_seed">baby_watermelon_seed</a>, <a href="/users/Gabrielle_Nightingale">Gabrielle_Nightingale</a>, <a href="/users/Dabududu">Dabududu</a>, <a href="/users/Chaosboundforgreatness">Chaosboundforgreatness</a>, <a href="/users/Jennosaur">Jennosaur</a>, <a href="/users/passer_by">passer_by</a>, <a href="/users/Archaic_Apathy">Archaic_Apathy</a>, <a href="/users/FuzzyAnkleSocks">FuzzyAnkleSocks</a>, <a href="/users/Idealism_Sits_Imprisoned">Idealism_Sits_Imprisoned</a>, <a href="/users/Antiquesdoll">Antiquesdoll</a>, <a href="/users/whichwayizup">whichwayizup</a>, <a href="/users/The_Loner">The_Loner</a>, <a href="/users/OmegaBlack">OmegaBlack</a>, <a href="/users/TheRomanEmpire13">TheRomanEmpire13</a>, <a href="/users/Rhythyml">Rhythyml</a>, <a href="/users/rainbowemperor">rainbowemperor</a>, <a href="/users/Reign0931">Reign0931</a>, <a href="/users/harpy81">harpy81</a>, <a href="/users/Linora">Linora</a>, <a href="/users/Kaichub">Kaichub</a>, <a href="/users/DesertArcanine">DesertArcanine</a>, <a href="/users/Simonthediamond003">Simonthediamond003</a>, <a href="/users/Herperlo_D">Herperlo_D</a>, <a href="/users/jaysayheyyy">jaysayheyyy</a>, <a href="/users/Noceur17">Noceur17</a>, <a href="/users/Yuhimitsu">Yuhimitsu</a>, <a href="/users/The_End_of_World">The_End_of_World</a>, <a href="/users/goldened">goldened</a>, <a href="/users/CKA3CKA">CKA3CKA</a>, <a href="/users/NeoAsh">NeoAsh</a>, <a href="/users/cannot_pick_a_username">cannot_pick_a_username</a>, <a href="/users/Lazymoon">Lazymoon</a>, <a href="/users/FireRose1203">FireRose1203</a>, <a href="/users/JustASandwich">JustASandwich</a>, <a href="/users/DistractedDisturber">DistractedDisturber</a>, <a href="/users/Zeivira">Zeivira</a>, <a href="/users/Tagchen7">Tagchen7</a>, <a href="/users/Atrocityyyyyyyy">Atrocityyyyyyyy</a>, <a href="/users/rangerbookwyrm">rangerbookwyrm</a>, <a href="/users/doodle_7">doodle_7</a>, <a href="/users/Ploughface">Ploughface</a>, <a href="/users/summerwithaniinit">summerwithaniinit</a>, <a href="/users/KingOfWhispers">KingOfWhispers</a>, <a href="/users/Luke_fan">Luke_fan</a>, <a href="/users/Turlmin">Turlmin</a>, <a href="/users/Artemis2226">Artemis2226</a>, <a href="/users/Touga">Touga</a>, <a href="/users/Snowy_Rain">Snowy_Rain</a>, <a href="/users/AverageDemonBoy">AverageDemonBoy</a>, <a href="/users/AnimeLucifer_7">AnimeLucifer_7</a>, <a href="/users/Auroa_wings1994">Auroa_wings1994</a>, <a href="/users/Nineveh">Nineveh</a>, <a href="/users/laurensanyal">laurensanyal</a>, <a href="/users/surreyality">surreyality</a>, <a href="/users/eve2000">eve2000</a>, <a href="/users/PopWhizFizz">PopWhizFizz</a>, <a href="/users/Shoto94">Shoto94</a>, <a href="/users/LyraTalus">LyraTalus</a>, <a href="/users/mikca">mikca</a>, <a href="/users/My_Life_Is_A_Mess">My_Life_Is_A_Mess</a>, <a href="/users/Valakain_Zeya">Valakain_Zeya</a>, <a href="/users/admanct">admanct</a>, <a href="/users/SilverDollar">SilverDollar</a>, <a href="/users/seizansha">seizansha</a>, <a href="/users/pop_tab">pop_tab</a>, <a href="/users/RoseMarie301">RoseMarie301</a>, <a href="/users/Teobot">Teobot</a>, <a href="/users/Nes22">Nes22</a>, <a href="/users/Alyssa6034">Alyssa6034</a>, <a href="/users/ikindier">ikindier</a>, <a href="/users/FushiaFlame">FushiaFlame</a>, <a href="/users/rkovyryalova">rkovyryalova</a>, <a href="/users/Just_Another_Fan_Here">Just_Another_Fan_Here</a>, <a href="/users/galitayuh">galitayuh</a>, <a href="/users/Lightbulbs">Lightbulbs</a>, <a href="/users/Echoless">Echoless</a>, <a href="/users/GengarsGhost">GengarsGhost</a>, <a href="/users/lunaballz">lunaballz</a>, <a href="/users/Angie_Dawn">Angie_Dawn</a>, <a href="/users/Bae_Of_The_Books">Bae_Of_The_Books</a>, <a href="/users/ChaChaOnIce">ChaChaOnIce</a>, <a href="/users/jeesongre">jeesongre</a>, <a href="/users/Shiarephic">Shiarephic</a>, <a href="/users/Celestial_Blackhole">Celestial_Blackhole</a>, <a href="/users/Asura_Hozuki">Asura_Hozuki</a>, <a href="/users/LadyDop">LadyDop</a>, <a href="/users/Mellie2605">Mellie2605</a>, <a href="/users/the_writing_wolf">the_writing_wolf</a>, <a href="/users/SoftCactus1601">SoftCactus1601</a>, <a href="/users/MicMicBungee">MicMicBungee</a>, <a href="/users/marmar1584">marmar1584</a>, <a href="/users/Sud0Command">Sud0Command</a>, <a href="/users/Mizurra">Mizurra</a>, <a href="/users/Rensa">Rensa</a>, <a href="/users/Skeet_sleet">Skeet_sleet</a>, <a href="/users/Marquis_Black">Marquis_Black</a>, <a href="/users/ElevenEvilOranges">ElevenEvilOranges</a>, <a href="/users/Yeaaboooiiii">Yeaaboooiiii</a>, <a href="/users/shitstuck">shitstuck</a>, <a href="/users/jeiroh">jeiroh</a>, <a href="/users/Misaki_Okui">Misaki_Okui</a>, <a href="/users/proximally">proximally</a>, <a href="/users/bloodfree">bloodfree</a>, <a href="/users/Joyfulldreams">Joyfulldreams</a>, <a href="/users/WailingWhaler">WailingWhaler</a>, <a href="/users/p12a57f">p12a57f</a>, <a href="/users/Loveless712">Loveless712</a>, <a href="/users/Storycatcher">Storycatcher</a>, <a href="/users/1benzy">1benzy</a>, <a href="/users/becausereasons7">becausereasons7</a>, <a href="/users/heart_to_pen_to_paper">heart_to_pen_to_paper</a>, <a href="/users/HobbiyMagic">HobbiyMagic</a>, <a href="/users/serene_saber">serene_saber</a>, <a href="/users/karalynevans">karalynevans</a>, <a href="/users/Wilcok">Wilcok</a>, <a href="/users/IXIAnubiaIXI">IXIAnubiaIXI</a>, <a href="/users/LokiLol">LokiLol</a>, <a href="/users/Vaasu">Vaasu</a>, <a href="/users/unicolala">unicolala</a>, <a href="/users/TitanWafflesaur">TitanWafflesaur</a>, <a href="/users/Hat_Lord_Ave">Hat_Lord_Ave</a>, <a href="/users/KingofTrees">KingofTrees</a>, <a href="/users/skmezzy">skmezzy</a>, <a href="/users/Jayme">Jayme</a>, <a href="/users/CheddarTheHedgehog">CheddarTheHedgehog</a>, <a href="/users/Kocineczka">Kocineczka</a>, <a href="/users/Nonexistentsouls">Nonexistentsouls</a>, <a href="/users/Nair_Dee">Nair_Dee</a>, <a href="/users/darkythepyrolover">darkythepyrolover</a>, <a href="/users/Lala32903">Lala32903</a>, <a href="/users/Weldenvarden">Weldenvarden</a>, <a href="/users/Bloodra">Bloodra</a>, <a href="/users/DragonDCelina">DragonDCelina</a>, <a href="/users/bubble_milktea">bubble_milktea</a>, <a href="/users/Books_Anime_Manga_Fandom">Books_Anime_Manga_Fandom</a>, <a href="/users/MayhapsSapphic">MayhapsSapphic</a>, <a href="/users/sworceress">sworceress</a>, <a href="/users/Devinely">Devinely</a>, <a href="/users/acardier">acardier</a>, <a href="/users/Miss_Writers_Block">Miss_Writers_Block</a>, <a href="/users/KittytheGamer293">KittytheGamer293</a>, <a href="/users/Jijabi">Jijabi</a>, <a href="/users/EldritchBloodGod">EldritchBloodGod</a>, <a href="/users/Maniak">Maniak</a>, <a href="/users/Tiswabley">Tiswabley</a>, <a href="/users/PLenni">PLenni</a>, <a href="/users/Fonderodin">Fonderodin</a>, <a href="/users/Tired_Potato_Here">Tired_Potato_Here</a>, <a href="/users/Kabob003">Kabob003</a>, <a href="/users/Nuclear_Equipped_Walking_Battle_Tank">Nuclear_Equipped_Walking_Battle_Tank</a>, <a href="/users/Phantomwolf5">Phantomwolf5</a>, <a href="/users/diequeeria">diequeeria</a>, <a href="/users/Maniaclove620">Maniaclove620</a>, <a href="/users/Dune_the_flower">Dune_the_flower</a>, <a href="/users/Molte27">Molte27</a>, <a href="/users/Na_Nashi">Na_Nashi</a>, <a href="/users/MidnightRaven67">MidnightRaven67</a>, <a href="/users/DoctorDonna24">DoctorDonna24</a>, <a href="/users/MaskedSlushie">MaskedSlushie</a>, <a href="/users/blueberry137">blueberry137</a>, <a href="/users/ValakikM">ValakikM</a>, <a href="/users/AnnaDaFujoshi">AnnaDaFujoshi</a>, <a href="/users/Top7879">Top7879</a>, <a href="/users/Ili_Dany">Ili_Dany</a>, <a href="/users/Cah">Cah</a>, <a href="/users/mirandasS">mirandasS</a>, <a href="/users/Arevere">Arevere</a>, <a href="/users/Kiwi26421">Kiwi26421</a>, <a href="/users/nahv">nahv</a>, <a href="/users/fernicious">fernicious</a>, <a href="/users/The_Capslock_Queen">The_Capslock_Queen</a>, <a href="/users/YoungWitch">YoungWitch</a>, <a href="/users/TheRookMaster">TheRookMaster</a>, <a href="/users/SherryRed">SherryRed</a>, <a href="/users/aanwayne">aanwayne</a>, <a href="/users/legionof1">legionof1</a>, <a href="/users/zthelightxavier">zthelightxavier</a>, <a href="/users/ERROR404CANNOTFUNCTION">ERROR404CANNOTFUNCTION</a>, <a href="/users/SlushyRain">SlushyRain</a>, <a href="/users/Phayn">Phayn</a>, <a href="/users/GoodAtFailing">GoodAtFailing</a>, <a href="/users/belarus">belarus</a>, <a href="/users/Fey_79">Fey_79</a>, <a href="/users/YokaiLuna">YokaiLuna</a>, <a href="/users/Xushi">Xushi</a>, <a href="/users/Opalsong">Opalsong</a>, <a href="/users/elektraeriseros">elektraeriseros</a>, <a href="/users/wyrdfish">wyrdfish</a>, <a href="/users/Kaitsune">Kaitsune</a>, <a href="/users/Yoonhoonie">Yoonhoonie</a>, <a href="/users/bIRB_soziopath">bIRB_soziopath</a>, <a href="/users/DysgraphicBean">DysgraphicBean</a>, <a href="/users/AnakinBiwalker">AnakinBiwalker</a>, <a href="/users/meri47">meri47</a>, <a href="/users/AoTTrash">AoTTrash</a>, <a href="/users/aldnoah22">aldnoah22</a>, <a href="/users/jellyfishdreams">jellyfishdreams</a>, <a href="/users/Holly_Batali">Holly_Batali</a>, <a href="/users/WizardForever99">WizardForever99</a>, <a href="/users/Verano">Verano</a>, <a href="/users/Connection">Connection</a>, <a href="/users/the_nerdy_fangirl">the_nerdy_fangirl</a>, <a href="/users/Pielover31415269">Pielover31415269</a>, <a href="/users/ShadowyCollection">ShadowyCollection</a>, <a href="/users/HeartlessReader">HeartlessReader</a>, <a href="/users/Ritsku">Ritsku</a>, <a href="/users/cRoNcRoN_masalimuotkongbuhay">cRoNcRoN_masalimuotkongbuhay</a>, <a href="/users/nahnashimura">nahnashimura</a>, <a href="/users/nightdotlight">nightdotlight</a>, <a href="/users/Yarnball1412">Yarnball1412</a>, <a href="/users/Claire_Dimlight">Claire_Dimlight</a>, <a href="/users/Grinding_To_Lvl_1000">Grinding_To_Lvl_1000</a>, <a href="/users/RinRin">RinRin</a>, <a href="/users/TheShonaXD">TheShonaXD</a>, <a href="/users/emairose">emairose</a>, <a href="/users/Crawler">Crawler</a>, <a href="/users/otaku_babyrae">otaku_babyrae</a>, <a href="/users/Chardinal">Chardinal</a>, <a href="/users/SpaceLittle666">SpaceLittle666</a>, <a href="/users/Alyss_C">Alyss_C</a>, <a href="/users/ChloeTheBold">ChloeTheBold</a>, <a href="/users/MoonPaw17">MoonPaw17</a>, <a href="/users/Gagarka">Gagarka</a>, <a href="/users/Paquerette_San">Paquerette_San</a>, <a href="/users/AwesomeBees">AwesomeBees</a>, <a href="/users/Themasterunicorn">Themasterunicorn</a>, <a href="/users/Brenden1k">Brenden1k</a>, <a href="/users/TheManwithoutaPlan">TheManwithoutaPlan</a>, <a href="/users/a_dot_dev">a_dot_dev</a>, <a href="/users/Space_Penguins">Space_Penguins</a>, <a href="/users/theultimatememe">theultimatememe</a>, <a href="/users/It_Got_Worse">It_Got_Worse</a>, <a href="/users/kkiwi">kkiwi</a>, <a href="/users/AwkwardAnna">AwkwardAnna</a>, <a href="/users/Internal_Screaming">Internal_Screaming</a>, <a href="/users/DarkWoods">DarkWoods</a>, <a href="/users/Niemand385">Niemand385</a>, <a href="/users/VioletTheGrimm">VioletTheGrimm</a>, <a href="/users/kurikun">kurikun</a>, <a href="/users/Rush_That_Speaks">Rush_That_Speaks</a>, <a href="/users/Chestnutcrown">Chestnutcrown</a>, <a href="/users/deadinsidebutliving">deadinsidebutliving</a>, <a href="/users/DarkHorse201">DarkHorse201</a>, <a href="/users/Murkysky">Murkysky</a>, <a href="/users/Zephyr_Cloe_Ambroise">Zephyr_Cloe_Ambroise</a>, <a href="/users/Rykan">Rykan</a>, <a href="/users/QuestioningSanity">QuestioningSanity</a>, <a href="/users/MiniMonster">MiniMonster</a>, <a href="/users/CitrusAndNostalgia">CitrusAndNostalgia</a>, <a href="/users/OptimisticRealist">OptimisticRealist</a>, <a href="/users/holy_roller_novocaine">holy_roller_novocaine</a>, <a href="/users/smolfocklis">smolfocklis</a>, <a href="/users/Suolainensilakka">Suolainensilakka</a>, <a href="/users/Riushin">Riushin</a>, <a href="/users/xHyding">xHyding</a>, <a href="/users/LanceyLove">LanceyLove</a>, <a href="/users/Levibearr">Levibearr</a>, <a href="/users/Exultation_of_the_Gryphon">Exultation_of_the_Gryphon</a>, <a href="/users/odrazy">odrazy</a>, <a href="/users/Diana_Wisperwind">Diana_Wisperwind</a>, <a href="/users/PuppetMaster55">PuppetMaster55</a>, <a href="/users/EmilyElizabethlil">EmilyElizabethlil</a>, <a href="/users/VerborgenImSchatten">VerborgenImSchatten</a>, <a href="/users/Avakeda">Avakeda</a>, <a href="/users/AlwaysInDreamLand">AlwaysInDreamLand</a>, <a href="/users/Emblemofthedigi">Emblemofthedigi</a>, <a href="/users/t_16">t_16</a>, <a href="/users/Tegamin">Tegamin</a>, <a href="/users/LexusOnIce">LexusOnIce</a>, <a href="/users/thehunterandtheangel">thehunterandtheangel</a>, <a href="/users/BeingAJackson">BeingAJackson</a>, <a href="/users/Frieria">Frieria</a>, <a href="/users/taelovent">taelovent</a>, <a href="/users/Kanekididnotdeserve">Kanekididnotdeserve</a>, <a href="/users/I_Ship_Everything_I_Can_See">I_Ship_Everything_I_Can_See</a>, <a href="/users/Mistborn7">Mistborn7</a>, <a href="/users/imgettingtiredofyou">imgettingtiredofyou</a>, <a href="/users/Dozy150">Dozy150</a>, <a href="/users/llamathing">llamathing</a>, <a href="/users/AlexKnight002">AlexKnight002</a>, <a href="/users/devilishqueen">devilishqueen</a>, <a href="/users/BorealLights">BorealLights</a>, <a href="/users/apathetica">apathetica</a>, <a href="/users/AChaoticMessNickCisheHere">AChaoticMessNickCisheHere</a>, <a href="/users/dtbaemy">dtbaemy</a>, <a href="/users/Vae_Pulchure">Vae_Pulchure</a>, <a href="/users/Mewsora">Mewsora</a>, <a href="/users/AnimagusChange">AnimagusChange</a>, <a href="/users/Actor_of_Pandora">Actor_of_Pandora</a>, <a href="/users/Karina_RR04">Karina_RR04</a>, <a href="/users/AbnormalMind777">AbnormalMind777</a>, <a href="/users/KaeTheAlien">KaeTheAlien</a>, <a href="/users/CinnaMonroe">CinnaMonroe</a>, <a href="/users/Relyt23">Relyt23</a>, <a href="/users/yasminlly">yasminlly</a>, <a href="/users/Thisisauername">Thisisauername</a>, <a href="/users/fElBiTeR">fElBiTeR</a>, <a href="/users/LadyNyx">LadyNyx</a>, <a href="/users/veritere">veritere</a>, <a href="/users/Chocoboharrison">Chocoboharrison</a>, <a href="/users/DIKXIPIX">DIKXIPIX</a>, <a href="/users/banifi">banifi</a>, <a href="/users/aHostileRainbow">aHostileRainbow</a>, <a href="/users/peachesandpatches">peachesandpatches</a>, <a href="/users/sneill_magic">sneill_magic</a>, <a href="/users/VovinBlack">VovinBlack</a>, <a href="/users/aaronhowser1">aaronhowser1</a>, <a href="/users/Itsumi">Itsumi</a>, <a href="/users/Kalira_Jones">Kalira_Jones</a>, <a href="/users/pnkssbtch">pnkssbtch</a>, <a href="/users/Artemis_Apollo1214">Artemis_Apollo1214</a>, <a href="/users/kilogramps">kilogramps</a>, <a href="/users/CallMeLex">CallMeLex</a>, <a href="/users/Crumbled">Crumbled</a>, <a href="/users/Coolc341">Coolc341</a>, <a href="/users/gandocaloca">gandocaloca</a>, <a href="/users/Warewolf12019">Warewolf12019</a>, <a href="/users/CrimsonFist99">CrimsonFist99</a>, <a href="/users/xavira">xavira</a>, <a href="/users/Buckleupbuttercup">Buckleupbuttercup</a>, <a href="/users/Allornothingpreferablynothing">Allornothingpreferablynothing</a>, <a href="/users/Otaku6337">Otaku6337</a>, <a href="/users/Ynius">Ynius</a>, <a href="/users/PeaTea">PeaTea</a>, <a href="/users/One_Called_Mike">One_Called_Mike</a>, <a href="/users/MintChocolateLeaves">MintChocolateLeaves</a>, <a href="/users/Lynette_6577">Lynette_6577</a>, <a href="/users/ThinkSmarterNotHarder">ThinkSmarterNotHarder</a>, <a href="/users/SSJ_Matt">SSJ_Matt</a>, <a href="/users/SurrealSupernaturalist">SurrealSupernaturalist</a>, <a href="/users/creamni">creamni</a>, <a href="/users/scribblepaws">scribblepaws</a>, <a href="/users/RainofNight">RainofNight</a>, <a href="/users/Qamar114">Qamar114</a>, <a href="/users/rikugou">rikugou</a>, <a href="/users/Se_raph">Se_raph</a>, <a href="/users/skrtskrt">skrtskrt</a>, <a href="/users/Pennyforyourthoughts">Pennyforyourthoughts</a>, <a href="/users/Voragine">Voragine</a>, <a href="/users/SideswipesSunshine42">SideswipesSunshine42</a>, <a href="/users/Purrs">Purrs</a>, <a href="/users/demonio">demonio</a>, <a href="/users/AngelCakeszee">AngelCakeszee</a>, <a href="/users/mai96">mai96</a>, <a href="/users/Rina_P_Wisteria">Rina_P_Wisteria</a>, <a href="/users/TacoSupreme23">TacoSupreme23</a>, <a href="/users/Aria_Verde">Aria_Verde</a>, <a href="/users/Alkanasynranem">Alkanasynranem</a>, <a href="/users/Tenshi7Nalata">Tenshi7Nalata</a>, <a href="/users/constellationdipper">constellationdipper</a>, <a href="/users/Nomo2001">Nomo2001</a>, <a href="/users/Manacats">Manacats</a>, <a href="/users/Xx14PinstripesxX">Xx14PinstripesxX</a>, <a href="/users/vrhov1234">vrhov1234</a>, <a href="/users/ChrysaTh99">ChrysaTh99</a>, <a href="/users/Roscuro69">Roscuro69</a>, <a href="/users/EmpressAnn">EmpressAnn</a>, <a href="/users/DoneWithLifeTM">DoneWithLifeTM</a>, <a href="/users/Digigal_transbian">Digigal_transbian</a>, <a href="/users/Castiels_wings">Castiels_wings</a>, <a href="/users/Celesteee">Celesteee</a>, <a href="/users/Mecha_Magici">Mecha_Magici</a>, <a href="/users/Sleepyloccocus_Nemui">Sleepyloccocus_Nemui</a>, <a href="/users/Floren">Floren</a>, <a href="/users/Kopoppin">Kopoppin</a>, <a href="/users/BLUKWolf">BLUKWolf</a>, <a href="/users/LinkRue">LinkRue</a>, <a href="/users/EmeraldSage">EmeraldSage</a>, <a href="/users/LesserFootrest">LesserFootrest</a>, <a href="/users/Gracelyn">Gracelyn</a>, <a href="/users/mrplatypus280">mrplatypus280</a>, <a href="/users/OWritingTrashO">OWritingTrashO</a>, <a href="/users/TwilightMind">TwilightMind</a>, <a href="/users/howls">howls</a>, <a href="/users/DamonSkyHartXV">DamonSkyHartXV</a>, <a href="/users/InTheNameofJustice">InTheNameofJustice</a>, <a href="/users/Tanukia">Tanukia</a>, <a href="/users/ElectricDragon64">ElectricDragon64</a>, <a href="/users/Azaneti">Azaneti</a>, <a href="/users/Gradoel">Gradoel</a>, <a href="/users/Snippity_Snappity">Snippity_Snappity</a>, <a href="/users/SpartanComforts">SpartanComforts</a>, <a href="/users/ShadowFoxDemon27">ShadowFoxDemon27</a>, <a href="/users/fangirl_of_glitter">fangirl_of_glitter</a>, <a href="/users/yenaduu">yenaduu</a>, <a href="/users/NyctoPhile01">NyctoPhile01</a>, <a href="/users/Me_and_my_fandoms">Me_and_my_fandoms</a>, <a href="/users/one_step_closer_to_death">one_step_closer_to_death</a>, <a href="/users/ADailyDoseOfAwesome">ADailyDoseOfAwesome</a>, <a href="/users/uuugghhhh">uuugghhhh</a>, <a href="/users/OhGodOhNoOhFuckImGayFuckOhNo">OhGodOhNoOhFuckImGayFuckOhNo</a>, <a href="/users/Kikuriki">Kikuriki</a>, <a href="/users/brokenbitch">brokenbitch</a>, <a href="/users/KYvi3">KYvi3</a>, <a href="/users/chenledawn">chenledawn</a>, <a href="/users/i_write_or_some_Shie">i_write_or_some_Shie</a>, <a href="/users/lavvyskies">lavvyskies</a>, <a href="/users/TenderSugar">TenderSugar</a>, <a href="/users/Kris_Shiro">Kris_Shiro</a>, <a href="/users/Stereolex">Stereolex</a>, <a href="/users/Student_Of_Accounting">Student_Of_Accounting</a>, <a href="/users/CrimsonComputer">CrimsonComputer</a>, <a href="/users/lunas_guard">lunas_guard</a>, <a href="/users/willowbeecat">willowbeecat</a>, <a href="/users/Yumantimatter">Yumantimatter</a>, <a href="/users/Koroby">Koroby</a>, <a href="/users/lamplady">lamplady</a>, <a href="/users/Seraphinit">Seraphinit</a>, <a href="/users/BillCipher322">BillCipher322</a>, <a href="/users/MangaManiac">MangaManiac</a>, <a href="/users/Sarcasm_Scarlet_n_Spite">Sarcasm_Scarlet_n_Spite</a>, <a href="/users/Power9987">Power9987</a>, <a href="/users/LeonLeonRevolution">LeonLeonRevolution</a>, <a href="/users/MaydayMarbear">MaydayMarbear</a>, <a href="/users/Lubieczytac">Lubieczytac</a>, <a href="/users/VioletaAsh">VioletaAsh</a>, <a href="/users/Artemis_Fandom_Things">Artemis_Fandom_Things</a>, <a href="/users/BitchImTired">BitchImTired</a>, <a href="/users/MyHeroAca_What">MyHeroAca_What</a>, <a href="/users/pentalion">pentalion</a>, <a href="/users/SeagullP">SeagullP</a>, <a href="/users/Anaghala">Anaghala</a>, <a href="/users/AryaZEvans">AryaZEvans</a>, <a href="/users/Fair_Strife">Fair_Strife</a>, <a href="/users/QTesseract">QTesseract</a>, <a href="/users/Minxiboo">Minxiboo</a>, <a href="/users/Goshikku">Goshikku</a>, <a href="/users/PanicGun">PanicGun</a>, <a href="/users/Bannana">Bannana</a>, <a href="/users/Mangakoibito">Mangakoibito</a>, <a href="/users/MrPJ98">MrPJ98</a>, <a href="/users/soffgluten">soffgluten</a>, <a href="/users/DDAM_818">DDAM_818</a>, <a href="/users/Rikkusho">Rikkusho</a>, <a href="/users/jcatgrl">jcatgrl</a>, <a href="/users/Alchemist_Cardona">Alchemist_Cardona</a>, <a href="/users/docmatoi">docmatoi</a>, <a href="/users/Nonbinari_Goat">Nonbinari_Goat</a>, <a href="/users/Bakuhatsuo">Bakuhatsuo</a>, <a href="/users/Drifting_17">Drifting_17</a>, <a href="/users/Egg_Yolkson">Egg_Yolkson</a>, <a href="/users/EtherealKnight21">EtherealKnight21</a>, <a href="/users/Art_de_musa">Art_de_musa</a>, <a href="/users/Hanayou343">Hanayou343</a>, <a href="/users/cosmicsdeku">cosmicsdeku</a>, <a href="/users/Eldritch_Prince">Eldritch_Prince</a>, <a href="/users/VolceVoice">VolceVoice</a>, <a href="/users/AnakinTheTrashKing">AnakinTheTrashKing</a>, <a href="/users/Elvwin">Elvwin</a>, <a href="/users/aramina">aramina</a>, <a href="/users/IceXChaos12">IceXChaos12</a>, <a href="/users/Needlegal67">Needlegal67</a>, <a href="/users/audy0529">audy0529</a>, <a href="/users/Cixi">Cixi</a>, <a href="/users/km207">km207</a>, <a href="/users/onierokinetic">onierokinetic</a>, <a href="/users/ForgottenLostAncient">ForgottenLostAncient</a>, <a href="/users/biscuitlevitation">biscuitlevitation</a>, <a href="/users/nerodiscord">nerodiscord</a>, <a href="/users/GlassySky">GlassySky</a>, <a href="/users/Pepepepepepepepepepe">Pepepepepepepepepepe</a>, <a href="/users/Jetfeather">Jetfeather</a>, <a href="/users/Shadows_Nuji">Shadows_Nuji</a>, <a href="/users/nimway">nimway</a>, <a href="/users/ChelseaTheReader">ChelseaTheReader</a>, <a href="/users/Voltrasin">Voltrasin</a>, <a href="/users/Aerun">Aerun</a>, <a href="/users/heretic">heretic</a>, <a href="/users/Autonomous_Automata">Autonomous_Automata</a>, <a href="/users/CloudyReality">CloudyReality</a>, <a href="/users/theredqueen">theredqueen</a>, <a href="/users/Amy_Croft">Amy_Croft</a>, <a href="/users/kenski">kenski</a>, <a href="/users/Ignis_Veridian">Ignis_Veridian</a>, <a href="/users/bichen">bichen</a>, <a href="/users/KageKitsune13">KageKitsune13</a>, <a href="/users/thaed">thaed</a>, <a href="/users/XXShadowXX">XXShadowXX</a>, <a href="/users/HeIsSoBlue">HeIsSoBlue</a>, <a href="/users/Rosedraquia">Rosedraquia</a>, <a href="/users/gKiArTu">gKiArTu</a>, <a href="/users/DaydreamingAce26">DaydreamingAce26</a>, <a href="/users/Nuar_Lexx">Nuar_Lexx</a>, <a href="/users/Desolate_Smog">Desolate_Smog</a>, <a href="/users/plush_anon">plush_anon</a>, <a href="/users/ClayFowl">ClayFowl</a>, <a href="/users/Jxereas">Jxereas</a>, <a href="/users/FINALLYOldEnoughToReadSmut">FINALLYOldEnoughToReadSmut</a>, <a href="/users/cherristained">cherristained</a>, <a href="/users/Catbell">Catbell</a>, <a href="/users/cookiethepirate">cookiethepirate</a>, <a href="/users/Thescottishpanda">Thescottishpanda</a>, <a href="/users/abstractfelin">abstractfelin</a>, <a href="/users/DesertPrincess">DesertPrincess</a>, <a href="/users/nyura_vanko">nyura_vanko</a>, <a href="/users/Nereus27">Nereus27</a>, <a href="/users/DigDoom">DigDoom</a>, <a href="/users/KiraDaughterofPoseidon">KiraDaughterofPoseidon</a>, <a href="/users/Sakurashark">Sakurashark</a>, <a href="/users/EvelynRose33284">EvelynRose33284</a>, <a href="/users/tuna_the_tuba">tuna_the_tuba</a>, <a href="/users/DarkBombayAngel">DarkBombayAngel</a>, <a href="/users/FeeFee11">FeeFee11</a>, <a href="/users/Yuurei">Yuurei</a>, <a href="/users/Aki_chan">Aki_chan</a>, <a href="/users/Anthos_NeVitore">Anthos_NeVitore</a>, <a href="/users/AeuyFael">AeuyFael</a>, <a href="/users/Vaultjumper">Vaultjumper</a>, <a href="/users/kitten_claws76">kitten_claws76</a>, <a href="/users/Fididdler">Fididdler</a>, <a href="/users/Debirulady">Debirulady</a>, <a href="/users/Naiadoodle">Naiadoodle</a>, <a href="/users/FangirlKatydid">FangirlKatydid</a>, <a href="/users/michigangeek14">michigangeek14</a>, <a href="/users/scripturiented">scripturiented</a>, <a href="/users/Jluke94">Jluke94</a>, <a href="/users/PrimalDragon">PrimalDragon</a>, <a href="/users/KyuubiDono">KyuubiDono</a>, <a href="/users/keircatenation">keircatenation</a>, <a href="/users/CJ_Riker">CJ_Riker</a>, <a href="/users/FatesHoldOnMe">FatesHoldOnMe</a>, <a href="/users/nightbeauty">nightbeauty</a>, <a href="/users/A_very_interesting_person">A_very_interesting_person</a>, <a href="/users/StrykingShadows">StrykingShadows</a>, <a href="/users/loki0191">loki0191</a>, <a href="/users/A_Herd_Of_Alpacas">A_Herd_Of_Alpacas</a>, <a href="/users/DatAnimeGirl">DatAnimeGirl</a>, <a href="/users/pelicandaughter">pelicandaughter</a>, <a href="/users/Jogo">Jogo</a>, <a href="/users/hibeef01">hibeef01</a>, <a href="/users/ShadowsIntoLight">ShadowsIntoLight</a>, <a href="/users/LadyDuoMaxwell">LadyDuoMaxwell</a>, <a href="/users/SkyWolf25">SkyWolf25</a>, <a href="/users/AccursedSith">AccursedSith</a>, <a href="/users/tempUser">tempUser</a>, <a href="/users/Oliffee">Oliffee</a>, <a href="/users/Kat151820">Kat151820</a>, <a href="/users/plamen">plamen</a>, <a href="/users/anonymouspotato22">anonymouspotato22</a>, <a href="/users/The_Local_Weeb">The_Local_Weeb</a>, <a href="/users/codebamboo">codebamboo</a>, <a href="/users/Seiberwing">Seiberwing</a>, <a href="/users/Alias_of_Apocalypse">Alias_of_Apocalypse</a>, <a href="/users/Premeditated_shitbag">Premeditated_shitbag</a>, <a href="/users/TheKursed">TheKursed</a>, <a href="/users/thefreeman">thefreeman</a>, <a href="/users/Runnika">Runnika</a>, <a href="/users/WizardsGirl">WizardsGirl</a>, <a href="/users/Mellownumel">Mellownumel</a>, <a href="/users/Zelda_Moony">Zelda_Moony</a>, <a href="/users/ses_12345678">ses_12345678</a>, <a href="/users/acebian">acebian</a>, <a href="/users/Dangerzone227">Dangerzone227</a>, <a href="/users/Respect_Potatoes">Respect_Potatoes</a>, <a href="/users/CorndogsDie">CorndogsDie</a>, <a href="/users/weredragon">weredragon</a>, <a href="/users/sonibreeze">sonibreeze</a>, <a href="/users/linesofreturninggeese">linesofreturninggeese</a>, <a href="/users/Pickles57">Pickles57</a>, <a href="/users/timidemi">timidemi</a>, <a href="/users/Fattailcat">Fattailcat</a>, <a href="/users/Otakuforlife19">Otakuforlife19</a>, <a href="/users/OurLadyTiptree">OurLadyTiptree</a>, <a href="/users/RiverWren">RiverWren</a>, <a href="/users/Winters_stars21">Winters_stars21</a>, <a href="/users/Nie">Nie</a>, <a href="/users/frariedogs91">frariedogs91</a>, <a href="/users/Spirit13">Spirit13</a>, <a href="/users/Purplepasta1987">Purplepasta1987</a>, <a href="/users/melborp">melborp</a>, <a href="/users/Serina_Leigh">Serina_Leigh</a>, <a href="/users/midnight_birds">midnight_birds</a>, <a href="/users/YunJun">YunJun</a>, <a href="/users/BlackCat666">BlackCat666</a>, <a href="/users/rosycheekedfish">rosycheekedfish</a>, <a href="/users/KillerByte">KillerByte</a>, <a href="/users/Gallimaufry256">Gallimaufry256</a>, <a href="/users/NappingIsAWayOfLife">NappingIsAWayOfLife</a>, <a href="/users/tamenetsi">tamenetsi</a>, <a href="/users/AconiteHemlock">AconiteHemlock</a>, <a href="/users/Crisstal">Crisstal</a>, <a href="/users/Dollmaker_Margatroid">Dollmaker_Margatroid</a>, <a href="/users/A_Reflective_Projection">A_Reflective_Projection</a>, <a href="/users/Mirlocke">Mirlocke</a>, <a href="/users/rosalini">rosalini</a>, <a href="/users/sailoryuda">sailoryuda</a>, <a href="/users/Zoanzon">Zoanzon</a>, <a href="/users/fluff_is_life">fluff_is_life</a>, <a href="/users/PorcelanaRota">PorcelanaRota</a>, <a href="/users/Tipot">Tipot</a>, <a href="/users/JamieGaylePiff">JamieGaylePiff</a>, <a href="/users/SnarkyAi">SnarkyAi</a>, <a href="/users/Shoujirou">Shoujirou</a>, <a href="/users/Looking_at_the_sky">Looking_at_the_sky</a>, <a href="/users/Localfujoshi">Localfujoshi</a>, <a href="/users/Doggyband">Doggyband</a>, <a href="/users/bnha_traaaash">bnha_traaaash</a>, <a href="/users/CuppiecakeZombie">CuppiecakeZombie</a>, <a href="/users/saintsaint">saintsaint</a>, <a href="/users/corrose">corrose</a>, <a href="/users/Cuore_senza_vita">Cuore_senza_vita</a>, <a href="/users/Sailingseas">Sailingseas</a>, <a href="/users/Yorozoya_shiroyasha">Yorozoya_shiroyasha</a>, <a href="/users/RanAkki">RanAkki</a>, <a href="/users/TheCurat0r">TheCurat0r</a>, <a href="/users/rowanseas">rowanseas</a>, <a href="/users/KidWestHope16">KidWestHope16</a>, <a href="/users/JajaLala">JajaLala</a>, <a href="/users/Azulira">Azulira</a>, <a href="/users/AbsoluteZero">AbsoluteZero</a>, <a href="/users/Miss_Nameless">Miss_Nameless</a>, <a href="/users/Unknownhero00">Unknownhero00</a>, <a href="/users/DancinOddball">DancinOddball</a>, <a href="/users/DrWhoFan">DrWhoFan</a>, <a href="/users/fictionismyaddiction98">fictionismyaddiction98</a>, <a href="/users/resd">resd</a>, <a href="/users/Asimar">Asimar</a>, <a href="/users/lildino">lildino</a>, <a href="/users/SquidCircle">SquidCircle</a>, <a href="/users/DandelionPuff">DandelionPuff</a>, <a href="/users/razzle_dazzle_lancey">razzle_dazzle_lancey</a>, <a href="/users/Lmic244">Lmic244</a>, <a href="/users/KittenInTheDust">KittenInTheDust</a>, <a href="/users/Guardian_de_historias">Guardian_de_historias</a>, <a href="/users/Emberontheashes517">Emberontheashes517</a>, <a href="/users/NovaAnang">NovaAnang</a>, <a href="/users/Thecaramelsecrets">Thecaramelsecrets</a>, <a href="/users/smoakberry">smoakberry</a>, <a href="/users/StarsEverywhereBitch">StarsEverywhereBitch</a>, <a href="/users/Lizzyfaber">Lizzyfaber</a>, <a href="/users/Why_is_a_user_name_necessary">Why_is_a_user_name_necessary</a>, <a href="/users/bearswithlazereyes">bearswithlazereyes</a>, <a href="/users/SurohSopsisofClouds">SurohSopsisofClouds</a>, <a href="/users/rainbow_haired_idiot">rainbow_haired_idiot</a>, <a href="/users/Kea2121312">Kea2121312</a>, <a href="/users/InTheMix">InTheMix</a>, <a href="/users/Aglio_Saggezza">Aglio_Saggezza</a>, <a href="/users/Swirlingflight">Swirlingflight</a>, <a href="/users/Saik0u">Saik0u</a>, <a href="/users/JusKIdding">JusKIdding</a>, <a href="/users/X_Well_Dang_X">X_Well_Dang_X</a>, <a href="/users/a_tortoise_with_3_cups">a_tortoise_with_3_cups</a>, <a href="/users/ame_colours">ame_colours</a>, <a href="/users/lavenderdreams">lavenderdreams</a>, <a href="/users/Pineapple_Hurt">Pineapple_Hurt</a>, <a href="/users/Crimmy">Crimmy</a>, <a href="/users/VixenTheWolf">VixenTheWolf</a>, <a href="/users/Artemis_Fortune">Artemis_Fortune</a>, <a href="/users/passiveAfficionado">passiveAfficionado</a>, <a href="/users/Yarn_Weaver">Yarn_Weaver</a>, <a href="/users/ehu123">ehu123</a>, <a href="/users/BarryAllenIsTheFlash">BarryAllenIsTheFlash</a>, <a href="/users/Sensoray">Sensoray</a>, <a href="/users/sarcasticwhaleshark">sarcasticwhaleshark</a>, <a href="/users/Birdeer">Birdeer</a>, <a href="/users/FreeElf">FreeElf</a>, <a href="/users/TheFearlessArmy">TheFearlessArmy</a>, <a href="/users/kaanna">kaanna</a>, <a href="/users/PuddingMeow">PuddingMeow</a>, <a href="/users/Psychedelic0Kitty">Psychedelic0Kitty</a>, <a href="/users/TramontAnna">TramontAnna</a>, <a href="/users/BluebottleTea">BluebottleTea</a>, <a href="/users/BU8BLES404">BU8BLES404</a>, <a href="/users/Starlightfantasy">Starlightfantasy</a>, <a href="/users/mistress_of_sarcasm">mistress_of_sarcasm</a>, <a href="/users/TopographicalMapOfUtah">TopographicalMapOfUtah</a>, <a href="/users/sparkypikachu">sparkypikachu</a>, <a href="/users/JackiSax">JackiSax</a>, <a href="/users/AvaSwan">AvaSwan</a>, <a href="/users/anniewallden">anniewallden</a>, <a href="/users/simplesongsmistress">simplesongsmistress</a>, <a href="/users/YesItWasAReference">YesItWasAReference</a>, <a href="/users/DGshoe">DGshoe</a>, <a href="/users/zanbandia">zanbandia</a>, <a href="/users/tinystargazer">tinystargazer</a>, <a href="/users/Markhyuck9900">Markhyuck9900</a>, <a href="/users/tadashicat">tadashicat</a>, <a href="/users/OctoberDays">OctoberDays</a>, <a href="/users/TheSirenix">TheSirenix</a>, <a href="/users/FictiveFeline">FictiveFeline</a>, <a href="/users/Shelbell19">Shelbell19</a>, <a href="/users/freyxama">freyxama</a>, <a href="/users/Broken_Arrow">Broken_Arrow</a>, <a href="/users/theSarcasticWench">theSarcasticWench</a>, <a href="/users/HelplessLemon">HelplessLemon</a>, <a href="/users/Beeslippers">Beeslippers</a>, <a href="/users/the_bookwyrm">the_bookwyrm</a>, <a href="/users/WalkingTheRoad">WalkingTheRoad</a>, <a href="/users/Sam41999">Sam41999</a>, <a href="/users/Stacimalibu">Stacimalibu</a>, <a href="/users/StarryKnight565">StarryKnight565</a>, <a href="/users/RecklessPrudence">RecklessPrudence</a>, <a href="/users/Prophesier_Key">Prophesier_Key</a>, <a href="/users/GreyDayMoon">GreyDayMoon</a>, <a href="/users/smolmenace">smolmenace</a>, <a href="/users/The_she_demons">The_she_demons</a>, <a href="/users/Myamissymoo">Myamissymoo</a>, <a href="/users/RinnyEC">RinnyEC</a>, <a href="/users/Red_Lego2x4">Red_Lego2x4</a>, <a href="/users/Rose_Of_Dusk">Rose_Of_Dusk</a>, <a href="/users/NotASloth">NotASloth</a>, <a href="/users/MysticFlamingo">MysticFlamingo</a>, <a href="/users/Baranor7">Baranor7</a>, <a href="/users/aloserkid">aloserkid</a>, <a href="/users/ShadowedGalaxy">ShadowedGalaxy</a>, <a href="/users/Tempest_Nemesis">Tempest_Nemesis</a>, <a href="/users/OnyxStitches">OnyxStitches</a>, <a href="/users/Troper_Nyaru">Troper_Nyaru</a>, <a href="/users/QingJynnBean_27">QingJynnBean_27</a>, <a href="/users/Blance_DuBois">Blance_DuBois</a>, <a href="/users/i_am_a_small_potato">i_am_a_small_potato</a>, <a href="/users/tobifog">tobifog</a>, <a href="/users/arch101">arch101</a>, <a href="/users/Tj123">Tj123</a>, <a href="/users/Wintermichael">Wintermichael</a>, <a href="/users/TheEndorCreeper">TheEndorCreeper</a>, <a href="/users/Whitetiger789">Whitetiger789</a>, <a href="/users/whod99">whod99</a>, <a href="/users/CheesusCrust">CheesusCrust</a>, <a href="/users/Scrivenger_Grimgar">Scrivenger_Grimgar</a>, <a href="/users/Zerph">Zerph</a>, <a href="/users/alkaidp">alkaidp</a>, <a href="/users/FunNerd">FunNerd</a>, <a href="/users/AnabelleRosenai">AnabelleRosenai</a>, <a href="/users/befuddle">befuddle</a>, <a href="/users/Dumpster_Closet">Dumpster_Closet</a>, <a href="/users/Acteae">Acteae</a>, <a href="/users/Chimeras_Hope">Chimeras_Hope</a>, <a href="/users/Kibokite">Kibokite</a>, <a href="/users/Dracovoce">Dracovoce</a>, <a href="/users/UmiMumi">UmiMumi</a>, <a href="/users/idnn927">idnn927</a>, <a href="/users/leggyleo">leggyleo</a>, <a href="/users/Wolfgirl85670">Wolfgirl85670</a>, <a href="/users/jaBeca_desafinada">jaBeca_desafinada</a>, <a href="/users/RadAceFriend">RadAceFriend</a>, <a href="/users/Alenari">Alenari</a>, <a href="/users/Lacila">Lacila</a>, <a href="/users/XiontheDragon">XiontheDragon</a>, <a href="/users/the_lost_Homestuck">the_lost_Homestuck</a>, <a href="/users/Maximilian_Alexander">Maximilian_Alexander</a>, <a href="/users/Comedy_Junky88">Comedy_Junky88</a>, <a href="/users/Poseidon95">Poseidon95</a>, <a href="/users/Kyonarai">Kyonarai</a>, <a href="/users/BlueLiliesStars">BlueLiliesStars</a>, <a href="/users/Marina_Rosette">Marina_Rosette</a>, <a href="/users/peacock_mami">peacock_mami</a>, <a href="/users/SpaceFarm">SpaceFarm</a>, <a href="/users/FairlyWicked">FairlyWicked</a>, <a href="/users/jelliefishies">jelliefishies</a>, <a href="/users/AnOverObsessedShipper">AnOverObsessedShipper</a>, <a href="/users/l_ermite">l_ermite</a>, <a href="/users/LilacAsteroid">LilacAsteroid</a>, <a href="/users/Seniorirish2">Seniorirish2</a>, <a href="/users/Verdantia">Verdantia</a>, <a href="/users/TheStoryWever">TheStoryWever</a>, <a href="/users/unreemarkable">unreemarkable</a>, <a href="/users/Theodore_Writes">Theodore_Writes</a>, <a href="/users/Rytsu">Rytsu</a>, <a href="/users/Kenaressa">Kenaressa</a>, <a href="/users/lethaltea">lethaltea</a>, <a href="/users/StarryNightConstellations">StarryNightConstellations</a>, <a href="/users/Porpoise_philosopher">Porpoise_philosopher</a>, <a href="/users/ForbiddenFandom">ForbiddenFandom</a>, <a href="/users/EmmaSaysHi">EmmaSaysHi</a>, <a href="/users/writingforFUNandbecauseBoredom">writingforFUNandbecauseBoredom</a>, <a href="/users/Seer_Of_Life">Seer_Of_Life</a>, <a href="/users/Dismallyadorable">Dismallyadorable</a>, <a href="/users/KanaSee">KanaSee</a>, <a href="/users/InTheSnow">InTheSnow</a>, <a href="/users/babbling_bedlamite">babbling_bedlamite</a>, <a href="/users/Chupilca">Chupilca</a>, <a href="/users/girlizzima">girlizzima</a>, <a href="/users/dearwhimsy">dearwhimsy</a>, <a href="/users/Delsark">Delsark</a>, <a href="/users/thebuildingsnotonfire">thebuildingsnotonfire</a>, <a href="/users/Elyra_the_Grey">Elyra_the_Grey</a>, <a href="/users/PinkieStyle">PinkieStyle</a>, <a href="/users/mxpiter">mxpiter</a>, <a href="/users/SpaceY787">SpaceY787</a>, <a href="/users/Sennica">Sennica</a>, <a href="/users/Kingdom_of_Ice">Kingdom_of_Ice</a>, <a href="/users/Seekingtheoblivion">Seekingtheoblivion</a>, <a href="/users/ashenRebirth">ashenRebirth</a>, <a href="/users/phoenixdaisy">phoenixdaisy</a>, <a href="/users/Walker4">Walker4</a>, <a href="/users/hopsus">hopsus</a>, <a href="/users/Im_super_trash_owo">Im_super_trash_owo</a>, <a href="/users/Dovakitten">Dovakitten</a>, <a href="/users/MiaoMi">MiaoMi</a>, <a href="/users/sunflowersafehaven">sunflowersafehaven</a>, <a href="/users/Scaradango">Scaradango</a>, <a href="/users/TheUnnamedSin">TheUnnamedSin</a>, <a href="/users/aqustd">aqustd</a>, <a href="/users/Missatatoperv">Missatatoperv</a>, <a href="/users/WrensThrenody">WrensThrenody</a>, <a href="/users/condonzack">condonzack</a>, <a href="/users/lue_n05">lue_n05</a>, <a href="/users/conned_by_connwaer">conned_by_connwaer</a>, <a href="/users/HikariFlower">HikariFlower</a>, <a href="/users/Hue_Scan">Hue_Scan</a>, <a href="/users/SpaceButterflies">SpaceButterflies</a>, <a href="/users/IridescentStars">IridescentStars</a>, <a href="/users/poisonred">poisonred</a>, <a href="/users/GoddamnItNoctis">GoddamnItNoctis</a>, <a href="/users/bleubirdsong">bleubirdsong</a>, <a href="/users/Gogle">Gogle</a>, <a href="/users/KyokiUzumaki">KyokiUzumaki</a>, <a href="/users/wintersnout">wintersnout</a>, <a href="/users/TheKillerQueen">TheKillerQueen</a>, <a href="/users/SamMason666">SamMason666</a>, <a href="/users/Midnight_Reader">Midnight_Reader</a>, <a href="/users/TrueLove17yugi_yami">TrueLove17yugi_yami</a>, <a href="/users/patronsaintoffuck">patronsaintoffuck</a>, <a href="/users/KRDiStort">KRDiStort</a>, <a href="/users/VardaKatsu">VardaKatsu</a>, <a href="/users/ImpassiveMoon">ImpassiveMoon</a>, <a href="/users/020_Serpens_1996">020_Serpens_1996</a>, <a href="/users/YokoHasagagua">YokoHasagagua</a>, <a href="/users/cunninglanguage">cunninglanguage</a>, <a href="/users/Silverwolf1211">Silverwolf1211</a>, <a href="/users/honorelle">honorelle</a>, <a href="/users/terribly_shy">terribly_shy</a>, <a href="/users/sprytfrysker">sprytfrysker</a>, <a href="/users/ProfessionalCranberry">ProfessionalCranberry</a>, <a href="/users/mayhavefakedit">mayhavefakedit</a>, <a href="/users/SilentReader_R">SilentReader_R</a>, <a href="/users/Umbreonpanda">Umbreonpanda</a>, <a href="/users/MadHat_Alice">MadHat_Alice</a>, <a href="/users/ObsessiveOddball">ObsessiveOddball</a>, <a href="/users/CrimsonMoonn">CrimsonMoonn</a>, <a href="/users/Kail_lizuc">Kail_lizuc</a>, <a href="/users/TheRedSun">TheRedSun</a>, <a href="/users/Zerafall">Zerafall</a>, <a href="/users/sparklingflare0214">sparklingflare0214</a>, <a href="/users/chachamaru43">chachamaru43</a>, <a href="/users/Serenity_Hime">Serenity_Hime</a>, <a href="/users/Mystic_Rising">Mystic_Rising</a>, <a href="/users/Army_7_Life">Army_7_Life</a>, <a href="/users/ArtisticKamenRider">ArtisticKamenRider</a>, <a href="/users/Blacksun321">Blacksun321</a>, <a href="/users/pleasant_pluviophile">pleasant_pluviophile</a>, <a href="/users/ktnow8y">ktnow8y</a>, <a href="/users/AngelsAreWatchingOverYou">AngelsAreWatchingOverYou</a>, <a href="/users/RiotStyle">RiotStyle</a>, <a href="/users/SomebodyNobodyEverybody">SomebodyNobodyEverybody</a>, <a href="/users/AmazingHefi">AmazingHefi</a>, <a href="/users/Raven_hart">Raven_hart</a>, <a href="/users/BearandtheBunny">BearandtheBunny</a>, <a href="/users/Rmbz">Rmbz</a>, <a href="/users/ArietteEpsilon">ArietteEpsilon</a>, <a href="/users/alexak">alexak</a>, <a href="/users/fracil_shvets">fracil_shvets</a>, <a href="/users/ApatheticAlways">ApatheticAlways</a>, <a href="/users/TobiasWraithwall">TobiasWraithwall</a>, <a href="/users/Captainloony007">Captainloony007</a>, <a href="/users/monny2404">monny2404</a>, <a href="/users/Raggabrash">Raggabrash</a>, <a href="/users/wassupyo">wassupyo</a>, <a href="/users/i_am_nervousness">i_am_nervousness</a>, <a href="/users/chanticleer">chanticleer</a>, <a href="/users/jumpwjoy">jumpwjoy</a>, <a href="/users/Stormslostradiant">Stormslostradiant</a>, <a href="/users/MamaOwl248">MamaOwl248</a>, <a href="/users/Xstone1">Xstone1</a>, <a href="/users/Ren_berries">Ren_berries</a>, <a href="/users/Isis_the_Sphinx">Isis_the_Sphinx</a>, <a href="/users/Plagues_Vengeance">Plagues_Vengeance</a>, <a href="/users/colourfulqueer">colourfulqueer</a>, <a href="/users/ThatOneDolphinLover">ThatOneDolphinLover</a>, <a href="/users/Silfrvarg">Silfrvarg</a>, <a href="/users/zaphire18">zaphire18</a>, <a href="/users/MediocreSavant">MediocreSavant</a>, <a href="/users/Harym42">Harym42</a>, <a href="/users/TheVoidIsHiring">TheVoidIsHiring</a>, <a href="/users/Wowza48">Wowza48</a>, <a href="/users/Naokikiri">Naokikiri</a>, <a href="/users/GuessMyname1306">GuessMyname1306</a>, <a href="/users/FlippedScript">FlippedScript</a>, <a href="/users/yandare_senpai">yandare_senpai</a>, <a href="/users/Punpun">Punpun</a>, <a href="/users/AlterNight">AlterNight</a>, <a href="/users/043912">043912</a>, <a href="/users/deerang2002">deerang2002</a>, <a href="/users/what_even_is_sleep">what_even_is_sleep</a>, <a href="/users/CloverLord">CloverLord</a>, <a href="/users/DeadPatrol">DeadPatrol</a>, <a href="/users/compass96">compass96</a>, <a href="/users/Usili">Usili</a>, <a href="/users/Scinn">Scinn</a>, <a href="/users/IrogicalArgument">IrogicalArgument</a>, <a href="/users/dekkaisdefyinggravity">dekkaisdefyinggravity</a>, <a href="/users/hmn92">hmn92</a>, <a href="/users/LilyLeaves">LilyLeaves</a>, <a href="/users/wintershope">wintershope</a>, <a href="/users/TabbyNundo">TabbyNundo</a>, <a href="/users/HandHelld">HandHelld</a>, <a href="/users/Twin2">Twin2</a>, <a href="/users/glueballs">glueballs</a>, <a href="/users/Salka24">Salka24</a>, <a href="/users/Magical_librarian">Magical_librarian</a>, <a href="/users/justsomebread">justsomebread</a>, <a href="/users/LastHope">LastHope</a>, <a href="/users/Ronnie_Lewis">Ronnie_Lewis</a>, <a href="/users/JesterCard">JesterCard</a>, <a href="/users/Nightfaaal">Nightfaaal</a>, <a href="/users/justalilfangirl">justalilfangirl</a>, <a href="/users/AmusedDevil">AmusedDevil</a>, <a href="/users/YumeFuragumento">YumeFuragumento</a>, <a href="/users/Paintmosi">Paintmosi</a>, <a href="/users/Zalewinds">Zalewinds</a>, <a href="/users/the_humdrum">the_humdrum</a>, <a href="/users/LordDoitsu">LordDoitsu</a>, <a href="/users/russian_space_geckos">russian_space_geckos</a>, <a href="/users/Olorisstra">Olorisstra</a>, <a href="/users/M1zushi">M1zushi</a>, <a href="/users/Fellfromthevoid">Fellfromthevoid</a>, <a href="/users/ninasafiri">ninasafiri</a>, <a href="/users/Guard1ans">Guard1ans</a>, <a href="/users/lyssippe">lyssippe</a>, <a href="/users/Math_Book">Math_Book</a>, <a href="/users/AppleFlapjack">AppleFlapjack</a>, <a href="/users/miscat">miscat</a>, <a href="/users/slytherinsdaughter">slytherinsdaughter</a>, <a href="/users/IceWolf92">IceWolf92</a>, <a href="/users/Gigas">Gigas</a>, <a href="/users/Zelezawui">Zelezawui</a>, <a href="/users/MasterofSwords7">MasterofSwords7</a>, <a href="/users/catfire13">catfire13</a>, <a href="/users/Caellen">Caellen</a>, <a href="/users/random0factor">random0factor</a>, <a href="/users/paracosim">paracosim</a>, <a href="/users/kate3248">kate3248</a>, <a href="/users/My_feets">My_feets</a>, <a href="/users/Alkirian">Alkirian</a>, <a href="/users/bisexualpirate">bisexualpirate</a>, <a href="/users/MakaChii">MakaChii</a>, <a href="/users/miikkuli">miikkuli</a>, <a href="/users/SchrodingersKat">SchrodingersKat</a>, <a href="/users/scarfshark">scarfshark</a>, <a href="/users/pandadictator">pandadictator</a>, <a href="/users/Candetrona">Candetrona</a>, <a href="/users/SeraphiraLilith">SeraphiraLilith</a>, <a href="/users/Pause143">Pause143</a>, <a href="/users/starlighted">starlighted</a>, <a href="/users/SaccharineSalt">SaccharineSalt</a>, <a href="/users/CaitieAHHHH">CaitieAHHHH</a>, <a href="/users/cerulai">cerulai</a>, <a href="/users/this_strangebewilderment">this_strangebewilderment</a>, <a href="/users/Nacho_Cheese">Nacho_Cheese</a>, <a href="/users/rune_ined">rune_ined</a>, <a href="/users/AsFarAsICouldSee">AsFarAsICouldSee</a>, <a href="/users/Adwen">Adwen</a>, <a href="/users/Miss_Write">Miss_Write</a>, <a href="/users/serotonus">serotonus</a>, <a href="/users/EvilZebra">EvilZebra</a>, <a href="/users/igoldengirl007">igoldengirl007</a>, <a href="/users/Tb22194">Tb22194</a>, <a href="/users/LudonarrativeDissonance">LudonarrativeDissonance</a>, <a href="/users/TheHollyTree">TheHollyTree</a>, <a href="/users/Ellarian">Ellarian</a>, <a href="/users/percyjackass">percyjackass</a>, <a href="/users/Ace_of_Spades">Ace_of_Spades</a>, <a href="/users/PastelCandy">PastelCandy</a>, <a href="/users/Ginger_Senpai">Ginger_Senpai</a>, <a href="/users/GunsAndMagic">GunsAndMagic</a>, <a href="/users/Kikiqueen">Kikiqueen</a>, <a href="/users/NyanzoYiffmada">NyanzoYiffmada</a>, <a href="/users/popcornpile">popcornpile</a>, <a href="/users/mangoisee">mangoisee</a>, <a href="/users/berkaa">berkaa</a>, <a href="/users/KirishiMom">KirishiMom</a>, <a href="/users/Akirama">Akirama</a>, <a href="/users/shakina">shakina</a>, <a href="/users/kim1131">kim1131</a>, <a href="/users/insidiousillusions">insidiousillusions</a>, <a href="/users/Luminarily">Luminarily</a>, <a href="/users/loveurselfmp3">loveurselfmp3</a>, <a href="/users/whymeiy">whymeiy</a>, <a href="/users/Dead_but_only_ironically">Dead_but_only_ironically</a>, <a href="/users/Kyuubi_Kuroba">Kyuubi_Kuroba</a>, <a href="/users/MYCOOKIESVENOMOUSYESTHEYBITE">MYCOOKIESVENOMOUSYESTHEYBITE</a>, <a href="/users/KaiTheAwesomeGuy">KaiTheAwesomeGuy</a>, <a href="/users/Neis">Neis</a>, <a href="/users/kuroiitami">kuroiitami</a>, <a href="/users/temperature_is_fake">temperature_is_fake</a>, <a href="/users/Brynhilde">Brynhilde</a>, <a href="/users/Veorie">Veorie</a>, <a href="/users/AnalogRain">AnalogRain</a>, <a href="/users/wodniw_a">wodniw_a</a>, <a href="/users/MySolitude">MySolitude</a>, <a href="/users/DragonMoon2995">DragonMoon2995</a>, <a href="/users/AshlinMerdew">AshlinMerdew</a>, <a href="/users/chabbit">chabbit</a>, <a href="/users/LOGO_Comics">LOGO_Comics</a>, <a href="/users/Tealeafcustom">Tealeafcustom</a>, <a href="/users/PsychaoticButterscotch">PsychaoticButterscotch</a>, <a href="/users/Kitsune243">Kitsune243</a>, <a href="/users/Batgirlbunny">Batgirlbunny</a>, <a href="/users/YggiDee">YggiDee</a>, <a href="/users/Mezzy2468">Mezzy2468</a>, <a href="/users/Sparsile">Sparsile</a>, <a href="/users/FianatOfAvalon">FianatOfAvalon</a>, <a href="/users/SkyeMist">SkyeMist</a>, <a href="/users/septemberisending">septemberisending</a>, <a href="/users/Slyaa_134">Slyaa_134</a>, <a href="/users/giovygio91">giovygio91</a>, <a href="/users/Mellisah">Mellisah</a>, <a href="/users/RumpleTheWanderer">RumpleTheWanderer</a>, <a href="/users/DeerShifter">DeerShifter</a>, <a href="/users/poetikat">poetikat</a>, <a href="/users/DementorsBane">DementorsBane</a>, <a href="/users/SierraToYourMist">SierraToYourMist</a>, <a href="/users/CriticalSecret">CriticalSecret</a>, <a href="/users/ThermicSine">ThermicSine</a>, <a href="/users/Monozuchan">Monozuchan</a>, <a href="/users/tomatoRenegade">tomatoRenegade</a>, <a href="/users/StyrofoamSickness">StyrofoamSickness</a>, <a href="/users/Wolfren13">Wolfren13</a>, <a href="/users/mamawerewolf">mamawerewolf</a>, <a href="/users/Dontjudgemyfanfichistory">Dontjudgemyfanfichistory</a>, <a href="/users/when_the_mayflowers_bloom">when_the_mayflowers_bloom</a>, <a href="/users/justsmilemore">justsmilemore</a>, <a href="/users/Kayl">Kayl</a>, <a href="/users/Lady_Genevieve">Lady_Genevieve</a>, <a href="/users/Ithilion">Ithilion</a>, <a href="/users/Hiepsfrog">Hiepsfrog</a>, <a href="/users/Renkades">Renkades</a>, <a href="/users/DragonRider53">DragonRider53</a>, <a href="/users/secondlandia">secondlandia</a>, <a href="/users/Slirry">Slirry</a>, <a href="/users/DawningFlower">DawningFlower</a>, <a href="/users/Madine_has_arrived20">Madine_has_arrived20</a>, <a href="/users/HoodedLord">HoodedLord</a>, <a href="/users/scrawly_times">scrawly_times</a>, <a href="/users/sunandmooniceandsnow">sunandmooniceandsnow</a>, <a href="/users/NutmegCucurbita">NutmegCucurbita</a>, <a href="/users/bravo">bravo</a>, <a href="/users/Leosworld">Leosworld</a>, <a href="/users/CureIcy">CureIcy</a>, <a href="/users/MajorSession">MajorSession</a>, <a href="/users/PhyreGirl">PhyreGirl</a>, <a href="/users/EmpressofFei">EmpressofFei</a>, <a href="/users/Haru_Kuwamine">Haru_Kuwamine</a>, <a href="/users/PixelKind">PixelKind</a>, <a href="/users/GingerKid1701">GingerKid1701</a>, <a href="/users/atwistedconundrum">atwistedconundrum</a>, <a href="/users/Soul_of_the_Kitsune">Soul_of_the_Kitsune</a>, <a href="/users/Silver_tenshi">Silver_tenshi</a>, <a href="/users/Shadowphoenix16">Shadowphoenix16</a>, <a href="/users/Sanemadness">Sanemadness</a>, <a href="/users/sceleris">sceleris</a>, <a href="/users/Crazy_wolf_2477">Crazy_wolf_2477</a>, <a href="/users/Jaggedheart">Jaggedheart</a>, <a href="/users/Rootin_Tootin_Toucan">Rootin_Tootin_Toucan</a>, <a href="/users/Redsparrow12">Redsparrow12</a>, <a href="/users/girlwithouttime">girlwithouttime</a>, <a href="/users/ChaosMage175">ChaosMage175</a>, <a href="/users/Delighted_to_Read_You">Delighted_to_Read_You</a>, <a href="/users/yaowoyorozu">yaowoyorozu</a>, <a href="/users/BiblioMatsuri">BiblioMatsuri</a>, <a href="/users/meridien313">meridien313</a>, <a href="/users/SallyJay">SallyJay</a>, <a href="/users/Apsire">Apsire</a>, <a href="/users/Jay_Bird6810">Jay_Bird6810</a>, <a href="/users/NamioftheSea">NamioftheSea</a>, <a href="/users/Lord_Miraak">Lord_Miraak</a>, <a href="/users/PendingPendulum">PendingPendulum</a>, <a href="/users/MidKnightOwl">MidKnightOwl</a>, <a href="/users/celibateHero">celibateHero</a>, <a href="/users/GhostTikTak">GhostTikTak</a>, <a href="/users/Masked_Victim">Masked_Victim</a>, <a href="/users/FriendlyObsessiveReader">FriendlyObsessiveReader</a>, <a href="/users/Fittonia">Fittonia</a>, <a href="/users/iwonderandiwander">iwonderandiwander</a>, <a href="/users/Andrake">Andrake</a>, <a href="/users/Jamica">Jamica</a>, <a href="/users/UltimateGamer101">UltimateGamer101</a>, <a href="/users/Blaiddsumu">Blaiddsumu</a>, <a href="/users/Trax369">Trax369</a>, <a href="/users/DubbLeohh">DubbLeohh</a>, <a href="/users/HikariNekoo">HikariNekoo</a>, <a href="/users/Ashallayndarkyn">Ashallayndarkyn</a>, <a href="/users/TheCheeseWitch">TheCheeseWitch</a>, <a href="/users/Vector_Arrows">Vector_Arrows</a>, <a href="/users/Lynn_kitsune">Lynn_kitsune</a>, <a href="/users/ShinkaAkira">ShinkaAkira</a>, <a href="/users/winterthur">winterthur</a>, <a href="/users/Idontknowisuckwithnames">Idontknowisuckwithnames</a>, <a href="/users/shunned_one">shunned_one</a>, <a href="/users/Bubblemuffles">Bubblemuffles</a>, <a href="/users/loatroll">loatroll</a>, <a href="/users/DemoiselleRouge">DemoiselleRouge</a>, <a href="/users/4annfals">4annfals</a>, <a href="/users/Feather_Qwill">Feather_Qwill</a>, <a href="/users/Sunny_yea">Sunny_yea</a>, <a href="/users/Chirolite">Chirolite</a>, <a href="/users/Emordnilap101">Emordnilap101</a>, <a href="/users/purple_lips">purple_lips</a>, <a href="/users/CantBelieveItsNotGay">CantBelieveItsNotGay</a>, <a href="/users/SkyBunny25">SkyBunny25</a>, <a href="/users/HoneyBadger97">HoneyBadger97</a>, <a href="/users/Alilaila">Alilaila</a>, <a href="/users/Tangibility">Tangibility</a>, <a href="/users/frozenintime">frozenintime</a>, <a href="/users/Prisca_Cosmo">Prisca_Cosmo</a>, <a href="/users/yada1993">yada1993</a>, <a href="/users/bluemoldxcalicocat">bluemoldxcalicocat</a>, <a href="/users/SeeMyShadows">SeeMyShadows</a>, <a href="/users/katyr0101">katyr0101</a>, <a href="/users/MsLilly">MsLilly</a>, <a href="/users/hi_im_whY">hi_im_whY</a>, <a href="/users/Zepheric">Zepheric</a>, <a href="/users/Before_i_sleep">Before_i_sleep</a>, <a href="/users/AuroraDragon">AuroraDragon</a>, <a href="/users/DacianaDrakul24">DacianaDrakul24</a>, <a href="/users/Reijade">Reijade</a>, <a href="/users/LazyCoffee">LazyCoffee</a>, <a href="/users/Koganei_chan0104">Koganei_chan0104</a>, <a href="/users/PwincessSapphire">PwincessSapphire</a>, <a href="/users/bookandtvlover465">bookandtvlover465</a>, <a href="/users/ChewyNemesis">ChewyNemesis</a>, <a href="/users/Aurelyn">Aurelyn</a>, <a href="/users/AthenasDragon138">AthenasDragon138</a>, <a href="/users/Onlyus">Onlyus</a>, <a href="/users/YellowWomanontheBrink">YellowWomanontheBrink</a>, <a href="/users/accord">accord</a>, <a href="/users/captainsatire">captainsatire</a>, <a href="/users/WordCubed">WordCubed</a>, <a href="/users/tybaltcapulet">tybaltcapulet</a>, <a href="/users/onwardforalways">onwardforalways</a>, <a href="/users/Brushstrokefox">Brushstrokefox</a>, <a href="/users/Hoxrns">Hoxrns</a>, <a href="/users/MynameisJodi">MynameisJodi</a>, <a href="/users/lazy_spectator">lazy_spectator</a>, <a href="/users/LameGayShark">LameGayShark</a>, <a href="/users/Lottie_Tsubasa">Lottie_Tsubasa</a>, <a href="/users/Ashtreemeadow">Ashtreemeadow</a>, <a href="/users/Raining_Leaves">Raining_Leaves</a>, <a href="/users/Artemis_Crimson">Artemis_Crimson</a>, <a href="/users/Anthem_of_Liones">Anthem_of_Liones</a>, <a href="/users/Shirokurobaku">Shirokurobaku</a>, <a href="/users/Deannaistirednnngh">Deannaistirednnngh</a>, <a href="/users/reinariel">reinariel</a>, <a href="/users/ORgasmicPigeon">ORgasmicPigeon</a>, <a href="/users/creativesm75">creativesm75</a>, <a href="/users/lizzpercush">lizzpercush</a>, <a href="/users/Catkyn">Catkyn</a>, <a href="/users/poisonedbymako">poisonedbymako</a>, <a href="/users/Harley_Q">Harley_Q</a>, <a href="/users/Psiiren">Psiiren</a>, <a href="/users/Mute_Madness">Mute_Madness</a>, <a href="/users/Ingeitum">Ingeitum</a>, <a href="/users/HarriedHermes">HarriedHermes</a>, <a href="/users/secret_werewolves">secret_werewolves</a>, <a href="/users/Socordiam">Socordiam</a>, <a href="/users/rigi">rigi</a>, <a href="/users/LadyImago">LadyImago</a>, <a href="/users/Glowfire">Glowfire</a>, <a href="/users/Moonpuzzle">Moonpuzzle</a>, <a href="/users/OrangeKe_2">OrangeKe_2</a>, <a href="/users/scorpioblueeyes">scorpioblueeyes</a>, <a href="/users/Mothmanisreal">Mothmanisreal</a>, <a href="/users/MightyMouse">MightyMouse</a>, <a href="/users/CosplayRaven">CosplayRaven</a>, <a href="/users/aroray">aroray</a>, <a href="/users/Assiduously_Haphazard">Assiduously_Haphazard</a>, <a href="/users/And_My_Axe_Girl">And_My_Axe_Girl</a>, <a href="/users/DaemonWolfe">DaemonWolfe</a>, <a href="/users/Nahjii">Nahjii</a>, <a href="/users/Musecal">Musecal</a>, <a href="/users/momomonstrosity_37">momomonstrosity_37</a>, <a href="/users/Pallascatevo">Pallascatevo</a>, <a href="/users/HeckinMotherYee">HeckinMotherYee</a>, <a href="/users/lucky1025">lucky1025</a>, <a href="/users/Della_Lupa">Della_Lupa</a>, <a href="/users/Rothinsel">Rothinsel</a>, <a href="/users/Skadi_The_Goddess_of_Winter">Skadi_The_Goddess_of_Winter</a>, <a href="/users/Asomewolf">Asomewolf</a>, <a href="/users/TheShippingGirl">TheShippingGirl</a>, <a href="/users/LizwiddaZ">LizwiddaZ</a>, <a href="/users/leilairan3">leilairan3</a>, <a href="/users/AllForPun">AllForPun</a>, <a href="/users/Lucidity">Lucidity</a>, <a href="/users/keiyos">keiyos</a>, <a href="/users/koneji">koneji</a>, <a href="/users/Redrayvn">Redrayvn</a>, <a href="/users/ben_jaded">ben_jaded</a>, <a href="/users/Mysterious_Prophetess">Mysterious_Prophetess</a>, <a href="/users/bootsandboulders">bootsandboulders</a>, <a href="/users/IfWishesWereHorses">IfWishesWereHorses</a>, <a href="/users/Shinju_Tori">Shinju_Tori</a>, <a href="/users/Goodminji">Goodminji</a>, <a href="/users/LDK">LDK</a>, <a href="/users/Aminaoi">Aminaoi</a>, <a href="/users/Starchaic">Starchaic</a>, <a href="/users/SonAsami">SonAsami</a>, <a href="/users/queenofugh">queenofugh</a>, <a href="/users/SuneaterKuvan">SuneaterKuvan</a>, <a href="/users/Dessmina">Dessmina</a>, <a href="/users/Lila_Vitoria">Lila_Vitoria</a>, <a href="/users/kimchiwrites">kimchiwrites</a>, <a href="/users/Nightfire_kVala">Nightfire_kVala</a>, <a href="/users/YourEndIsNye">YourEndIsNye</a>, <a href="/users/Dire_Kumori">Dire_Kumori</a>, <a href="/users/Howltriem">Howltriem</a>, <a href="/users/Raven_Iris">Raven_Iris</a>, <a href="/users/lord_ibau">lord_ibau</a>, <a href="/users/Mellifluous_Cadance">Mellifluous_Cadance</a>, <a href="/users/Stackerwlf">Stackerwlf</a>, <a href="/users/imprisonbabies">imprisonbabies</a>, <a href="/users/Unformal_Sorrelle">Unformal_Sorrelle</a>, <a href="/users/Inkillousionist">Inkillousionist</a>, <a href="/users/xenzen">xenzen</a>, <a href="/users/Nataliebe96">Nataliebe96</a>, <a href="/users/ninjaeris131">ninjaeris131</a>, <a href="/users/RhapsodicDorito">RhapsodicDorito</a>, <a href="/users/living_with_the_night">living_with_the_night</a>, <a href="/users/lightningstrikes">lightningstrikes</a>, <a href="/users/AwesomeOnly">AwesomeOnly</a>, <a href="/users/Texiliaz">Texiliaz</a>, <a href="/users/ERI_HIO">ERI_HIO</a>, <a href="/users/chipperdan">chipperdan</a>, <a href="/users/VictoryUlforce">VictoryUlforce</a>, <a href="/users/wei_wei_wei">wei_wei_wei</a>, <a href="/users/StrudelQueen">StrudelQueen</a>, <a href="/users/CrossBones">CrossBones</a>, <a href="/users/peachmlk">peachmlk</a>, <a href="/users/Im_happy_dammit">Im_happy_dammit</a>, <a href="/users/Justtochi">Justtochi</a>, <a href="/users/SilentUnicornSpeaks">SilentUnicornSpeaks</a>, <a href="/users/Alhenair">Alhenair</a>, <a href="/users/Jericoshost">Jericoshost</a>, <a href="/users/Imaginationzkey">Imaginationzkey</a>, <a href="/users/DoomsdayKitten">DoomsdayKitten</a>, <a href="/users/BookLover2401">BookLover2401</a>, <a href="/users/Heylel_27">Heylel_27</a>, <a href="/users/Snowfluff">Snowfluff</a>, <a href="/users/Dicove">Dicove</a>, <a href="/users/cyborg23">cyborg23</a>, <a href="/users/NeptunesMirror">NeptunesMirror</a>, <a href="/users/Adramaelim">Adramaelim</a>, <a href="/users/Book_Worm1414">Book_Worm1414</a>, <a href="/users/vannerrie">vannerrie</a>, <a href="/users/brieflydeepperson">brieflydeepperson</a>, <a href="/users/RianMoeru">RianMoeru</a>, <a href="/users/Yomion">Yomion</a>, <a href="/users/Swedishluck">Swedishluck</a>, <a href="/users/p3paula">p3paula</a>, <a href="/users/dhazellouise">dhazellouise</a>, <a href="/users/nuggle3">nuggle3</a>, <a href="/users/AgentWindsnap">AgentWindsnap</a>, <a href="/users/Rein">Rein</a>, <a href="/users/ShotgunWoman">ShotgunWoman</a>, <a href="/users/redhuntress26">redhuntress26</a>, <a href="/users/Martesh">Martesh</a>, <a href="/users/democord">democord</a>, <a href="/users/Diomedeidae">Diomedeidae</a>, <a href="/users/Aurbane">Aurbane</a>, <a href="/users/SenpenBanka">SenpenBanka</a>, <a href="/users/hermitcrabandproud">hermitcrabandproud</a>, <a href="/users/Eternal_Paradox001">Eternal_Paradox001</a>, <a href="/users/origami79">origami79</a>, <a href="/users/plastromeme">plastromeme</a>, <a href="/users/Seedling_lotus">Seedling_lotus</a>, <a href="/users/Werewolf_Alpha">Werewolf_Alpha</a>, <a href="/users/The_Girl_Who_Cried_Wolf">The_Girl_Who_Cried_Wolf</a>, <a href="/users/Daga000">Daga000</a>, <a href="/users/yeehawfam">yeehawfam</a>, <a href="/users/Sea_Nagatani">Sea_Nagatani</a>, <a href="/users/DJdjakko">DJdjakko</a>, <a href="/users/Trashreciptical">Trashreciptical</a>, <a href="/users/Hydrawolf">Hydrawolf</a>, <a href="/users/BlueNekomata">BlueNekomata</a>, <a href="/users/MakeBelieveMacy">MakeBelieveMacy</a>, <a href="/users/Kuro_freak_fanatic">Kuro_freak_fanatic</a>, <a href="/users/Wishdead">Wishdead</a>, <a href="/users/Hep0katti">Hep0katti</a>, <a href="/users/kyzalon">kyzalon</a>, <a href="/users/VampireJellybean15">VampireJellybean15</a>, <a href="/users/TheBookstore">TheBookstore</a>, <a href="/users/Silentshadow01">Silentshadow01</a>, <a href="/users/Reianon">Reianon</a>, <a href="/users/larryslarrie">larryslarrie</a>, <a href="/users/booping_the_snoot">booping_the_snoot</a>, <a href="/users/Sori13">Sori13</a>, <a href="/users/Vault166">Vault166</a>, <a href="/users/Usagi_chan">Usagi_chan</a>, <a href="/users/Arulan">Arulan</a>, <a href="/users/sleepy_willow">sleepy_willow</a>, <a href="/users/RYuuri27">RYuuri27</a>, <a href="/users/LexiAchieves">LexiAchieves</a>, <a href="/users/atypicalhypocrite">atypicalhypocrite</a>, <a href="/users/acomist">acomist</a>, <a href="/users/SkyArt">SkyArt</a>, <a href="/users/Trebor200008">Trebor200008</a>, <a href="/users/SethTheStitcher">SethTheStitcher</a>, <a href="/users/under_the_sea_dragon">under_the_sea_dragon</a>, <a href="/users/ilreies">ilreies</a>, <a href="/users/Nastish07">Nastish07</a>, <a href="/users/spacekid96">spacekid96</a>, <a href="/users/A_Wolf_Of_Ideas">A_Wolf_Of_Ideas</a>, <a href="/users/oliczek23">oliczek23</a>, <a href="/users/Nobody101">Nobody101</a>, <a href="/users/chrismarium">chrismarium</a>, <a href="/users/thejumpingbean14">thejumpingbean14</a>, <a href="/users/Genevive">Genevive</a>, <a href="/users/ArcaneCougar">ArcaneCougar</a>, <a href="/users/IndecisivePsyche">IndecisivePsyche</a>, <a href="/users/MothLarva">MothLarva</a>, <a href="/users/The_BloodyEagle">The_BloodyEagle</a>, <a href="/users/Ni_hilism">Ni_hilism</a>, <a href="/users/kipzzz">kipzzz</a>, <a href="/users/AnimeVampire">AnimeVampire</a>, <a href="/users/TheJadedPhoenix">TheJadedPhoenix</a>, <a href="/users/Its_Icecream_BB">Its_Icecream_BB</a>, <a href="/users/Alexe15">Alexe15</a>, <a href="/users/IronAngelOfAsguard">IronAngelOfAsguard</a>, <a href="/users/Baba_Yaga">Baba_Yaga</a>, <a href="/users/lamiahime">lamiahime</a>, <a href="/users/rutledgegirl">rutledgegirl</a>, <a href="/users/SaraBlake">SaraBlake</a>, <a href="/users/LoveHopes">LoveHopes</a>, <a href="/users/bookqueen15">bookqueen15</a>, <a href="/users/Rubiendz">Rubiendz</a>, <a href="/users/Shii">Shii</a>, <a href="/users/DaniKleine">DaniKleine</a>, <a href="/users/100shots100hits">100shots100hits</a>, <a href="/users/pan_demic">pan_demic</a>, <a href="/users/Possessedwolf">Possessedwolf</a>, <a href="/users/Bmorales">Bmorales</a>, <a href="/users/MalaMoon">MalaMoon</a>, <a href="/users/andreanna">andreanna</a>, <a href="/users/ImbalancedPhilosophy">ImbalancedPhilosophy</a>, <a href="/users/Micha247">Micha247</a>, <a href="/users/theaveragegatsby27">theaveragegatsby27</a>, <a href="/users/raven30142">raven30142</a>, <a href="/users/arwainian">arwainian</a>, <a href="/users/Honey_Apples">Honey_Apples</a>, <a href="/users/Calworks">Calworks</a>, <a href="/users/traviswj">traviswj</a>, <a href="/users/eternalblue">eternalblue</a>, <a href="/users/Deathlysilence">Deathlysilence</a>, <a href="/users/CAMIvH">CAMIvH</a>, <a href="/users/wolfshadow009">wolfshadow009</a>, <a href="/users/dekuquake">dekuquake</a>, <a href="/users/becamarquex">becamarquex</a>, <a href="/users/Dreamillusions">Dreamillusions</a>, <a href="/users/LabyrinthOfShadows">LabyrinthOfShadows</a>, <a href="/users/Penultimated">Penultimated</a>, <a href="/users/peachstems">peachstems</a>, <a href="/users/Gilraen_Euphemia_Amandil_Shirokaze">Gilraen_Euphemia_Amandil_Shirokaze</a>, <a href="/users/Kikenna">Kikenna</a>, <a href="/users/NightmareFlames">NightmareFlames</a>, <a href="/users/CarmineCranes">CarmineCranes</a>, <a href="/users/Spookmin">Spookmin</a>, <a href="/users/Annis_lau">Annis_lau</a>, <a href="/users/NihilistClarkKent">NihilistClarkKent</a>, <a href="/users/scienceside">scienceside</a>, <a href="/users/Luminoir">Luminoir</a>, <a href="/users/SupahJapah">SupahJapah</a>, <a href="/users/prettyboysylveon">prettyboysylveon</a>, <a href="/users/flamecranium">flamecranium</a>, <a href="/users/Lucy112358">Lucy112358</a>, <a href="/users/SIC_Prowl">SIC_Prowl</a>, <a href="/users/melodyxchii">melodyxchii</a>, <a href="/users/MissusMG">MissusMG</a>, <a href="/users/Netara">Netara</a>, <a href="/users/CIL78">CIL78</a>, <a href="/users/Illumihottie">Illumihottie</a>, <a href="/users/Katola">Katola</a>, <a href="/users/Chriko">Chriko</a>, <a href="/users/ScourgeFanatic101">ScourgeFanatic101</a>, <a href="/users/Letters2Elvinscend">Letters2Elvinscend</a>, <a href="/users/onsheka">onsheka</a>, <a href="/users/thrice_a_fool">thrice_a_fool</a>, <a href="/users/ImSoBored246">ImSoBored246</a>, <a href="/users/Willa_Night">Willa_Night</a>, <a href="/users/Drop_Dead_Inside">Drop_Dead_Inside</a>, <a href="/users/RandomUsername13">RandomUsername13</a>, <a href="/users/Uzulover">Uzulover</a>, <a href="/users/wendigogoboots">wendigogoboots</a>, <a href="/users/kunnskat">kunnskat</a>, <a href="/users/Hiroshi">Hiroshi</a>, <a href="/users/MissK">MissK</a>, <a href="/users/KagamiNoHikari">KagamiNoHikari</a>, <a href="/users/miloutic">miloutic</a>, <a href="/users/PlsLetMeSleep23">PlsLetMeSleep23</a>, <a href="/users/stellascribes">stellascribes</a>, <a href="/users/Ananda_Samsara">Ananda_Samsara</a>, <a href="/users/op_gryphon978">op_gryphon978</a>, <a href="/users/Weedzuku">Weedzuku</a>, <a href="/users/vixiveri">vixiveri</a>, <a href="/users/sleepyTree">sleepyTree</a>, <a href="/users/Calic_Rec">Calic_Rec</a>, <a href="/users/fonn">fonn</a>, <a href="/users/Lyquoritte">Lyquoritte</a>, <a href="/users/Monyas">Monyas</a>, <a href="/users/Omnipotentdogs">Omnipotentdogs</a>, <a href="/users/Blackmoontiger">Blackmoontiger</a>, <a href="/users/Usagi323">Usagi323</a>, <a href="/users/Rahtoro">Rahtoro</a>, <a href="/users/Livvy_london">Livvy_london</a>, <a href="/users/tillifer">tillifer</a>, <a href="/users/Opheliad">Opheliad</a>, <a href="/users/songofcirce">songofcirce</a>, <a href="/users/DelightfulSepsis">DelightfulSepsis</a>, <a href="/users/Wereder">Wereder</a>, <a href="/users/xRuiruiXxx">xRuiruiXxx</a>, <a href="/users/Verity58">Verity58</a>, <a href="/users/Racnarath">Racnarath</a>, <a href="/users/ghastlyGoodwill">ghastlyGoodwill</a>, <a href="/users/InsanityRed">InsanityRed</a>, <a href="/users/WarriorofAces">WarriorofAces</a>, <a href="/users/iconoclastic04">iconoclastic04</a>, <a href="/users/Justpassingthru">Justpassingthru</a>, <a href="/users/Rainofbrokenpromise">Rainofbrokenpromise</a>, <a href="/users/sweetie_24">sweetie_24</a>, <a href="/users/OmegaBeast27">OmegaBeast27</a>, <a href="/users/DraconaAria">DraconaAria</a>, <a href="/users/KazYrmir">KazYrmir</a>, <a href="/users/Sly_Helador">Sly_Helador</a>, <a href="/users/php30010">php30010</a>, <a href="/users/ladyasher13">ladyasher13</a>, <a href="/users/forgottenwhispers">forgottenwhispers</a>, <a href="/users/Amethyst_Moon">Amethyst_Moon</a>, <a href="/users/Slaayerr">Slaayerr</a>, <a href="/users/NagaTreeCrester">NagaTreeCrester</a>, <a href="/users/Lyneana">Lyneana</a>, <a href="/users/nightlilly">nightlilly</a>, <a href="/users/ohgodnowhhy">ohgodnowhhy</a>, <a href="/users/Owieeey">Owieeey</a>, <a href="/users/rayningnight">rayningnight</a>, <a href="/users/FlyingArtist">FlyingArtist</a>, <a href="/users/janazza">janazza</a>, <a href="/users/InsanityUnleashed">InsanityUnleashed</a>, <a href="/users/Fortify45">Fortify45</a>, <a href="/users/iaxyatz">iaxyatz</a>, <a href="/users/mandaknewthis">mandaknewthis</a>, <a href="/users/SaLtYrAiNbOwS">SaLtYrAiNbOwS</a>, <a href="/users/theuglyfriend">theuglyfriend</a>, <a href="/users/Winterfrostt">Winterfrostt</a>, <a href="/users/Maniacdreamer1998">Maniacdreamer1998</a>, <a href="/users/j99450">j99450</a>, <a href="/users/DAsObiQuiet">DAsObiQuiet</a>, <a href="/users/Swiny">Swiny</a>, <a href="/users/sarcasticforfunson">sarcasticforfunson</a>, <a href="/users/satisfice">satisfice</a>, <a href="/users/Matt_Phars">Matt_Phars</a>, <a href="/users/iAmDiaaa">iAmDiaaa</a>, <a href="/users/clamspeaks">clamspeaks</a>, <a href="/users/Ancer">Ancer</a>, <a href="/users/Chloe_has_2_hands">Chloe_has_2_hands</a>, <a href="/users/rabbitwords">rabbitwords</a>, <a href="/users/smallorderofcurlyfries">smallorderofcurlyfries</a>, <a href="/users/MrLackingSanity">MrLackingSanity</a>, <a href="/users/AnDeasAriana">AnDeasAriana</a>, <a href="/users/Ejrin">Ejrin</a>, <a href="/users/Rapture38">Rapture38</a>, <a href="/users/AkiraDaWolf">AkiraDaWolf</a>, <a href="/users/Astral_Throne">Astral_Throne</a>, <a href="/users/Silver_Shadow360">Silver_Shadow360</a>, <a href="/users/InfiniteToast">InfiniteToast</a>, <a href="/users/Kyotokiki">Kyotokiki</a>, <a href="/users/commonlyquixotic">commonlyquixotic</a>, <a href="/users/pointvee">pointvee</a>, <a href="/users/MentalNewt">MentalNewt</a>, <a href="/users/KH_Nobody">KH_Nobody</a>, <a href="/users/LordAlania">LordAlania</a>, <a href="/users/sofi16_1999">sofi16_1999</a>, <a href="/users/raindroproses">raindroproses</a>, <a href="/users/Sapphyre_Lorallen">Sapphyre_Lorallen</a>, <a href="/users/jaypeg">jaypeg</a>, <a href="/users/TykiTavi">TykiTavi</a>, <a href="/users/nakamotakoyaki">nakamotakoyaki</a>, <a href="/users/quillsoffire">quillsoffire</a>, <a href="/users/rubywings91">rubywings91</a>, <a href="/users/AmethystClearwater">AmethystClearwater</a>, <a href="/users/JonathanSporkTheSecond">JonathanSporkTheSecond</a>, <a href="/users/ShippingForALiving">ShippingForALiving</a>, <a href="/users/zombiepdb">zombiepdb</a>, <a href="/users/AwesomeAnimePrincess">AwesomeAnimePrincess</a>, <a href="/users/Lunatrix">Lunatrix</a>, <a href="/users/Kollaux">Kollaux</a>, <a href="/users/UssopTheLiar">UssopTheLiar</a>, <a href="/users/Hajime_Mitsoyo">Hajime_Mitsoyo</a>, <a href="/users/Percys_Panda_Pillow_Pet">Percys_Panda_Pillow_Pet</a>, <a href="/users/Korvidae_Rex">Korvidae_Rex</a>, <a href="/users/ForgettableFace">ForgettableFace</a>, <a href="/users/SavageSamurai">SavageSamurai</a>, <a href="/users/Zed_27">Zed_27</a>, <a href="/users/JulesShallRule">JulesShallRule</a>, <a href="/users/momochiaki">momochiaki</a>, <a href="/users/Emillest">Emillest</a>, <a href="/users/Pegasister60">Pegasister60</a>, <a href="/users/Hollow_Whisperings">Hollow_Whisperings</a>, <a href="/users/KitKatssie">KitKatssie</a>, <a href="/users/FlosEtIgnis">FlosEtIgnis</a>, <a href="/users/helianthemum">helianthemum</a>, <a href="/users/Shamsia">Shamsia</a>, <a href="/users/Scatterbone">Scatterbone</a>, <a href="/users/Daydreamer412">Daydreamer412</a>, <a href="/users/kappa_ta">kappa_ta</a>, <a href="/users/RoyalAdvisor13">RoyalAdvisor13</a>, <a href="/users/Azgats_Len">Azgats_Len</a>, <a href="/users/Moron1">Moron1</a>, <a href="/users/quietncryptic">quietncryptic</a>, <a href="/users/TrashZone">TrashZone</a>, <a href="/users/NoisyMuffin">NoisyMuffin</a>, <a href="/users/Vampsbware">Vampsbware</a>, <a href="/users/Bookspazz55">Bookspazz55</a>, <a href="/users/Pegistar5">Pegistar5</a>, <a href="/users/PhellDown">PhellDown</a>, <a href="/users/Ghostlanxx">Ghostlanxx</a>, <a href="/users/catarina566">catarina566</a>, <a href="/users/ANIME_IS_LIFE_bOI">ANIME_IS_LIFE_bOI</a>, <a href="/users/improbableZero">improbableZero</a>, <a href="/users/Silvalina">Silvalina</a>, <a href="/users/Setyourlazerstopew">Setyourlazerstopew</a>, <a href="/users/Elisye">Elisye</a>, <a href="/users/BlueRosariv">BlueRosariv</a>, <a href="/users/HuaFeiHua">HuaFeiHua</a>, <a href="/users/Lums_the_Hummus_Kid">Lums_the_Hummus_Kid</a>, <a href="/users/Smol_mushroom">Smol_mushroom</a>, <a href="/users/vindice">vindice</a>, <a href="/users/Paper_lily">Paper_lily</a>, <a href="/users/ShoetsuOtaku">ShoetsuOtaku</a>, <a href="/users/Momma">Momma</a>, <a href="/users/Lionan">Lionan</a>, <a href="/users/wnhy48">wnhy48</a>, <a href="/users/StaticBean227">StaticBean227</a>, <a href="/users/webtail">webtail</a>, <a href="/users/OrigamiSensei">OrigamiSensei</a>, <a href="/users/not_maddie">not_maddie</a>, <a href="/users/hellpudding">hellpudding</a>, <a href="/users/Baezetsu">Baezetsu</a>, <a href="/users/kanae1968">kanae1968</a>, <a href="/users/UserNameInstalling">UserNameInstalling</a>, <a href="/users/Pandaa123">Pandaa123</a>, <a href="/users/MaddAchinchilla">MaddAchinchilla</a>, <a href="/users/L_y_n">L_y_n</a>, <a href="/users/KairiOliver">KairiOliver</a>, <a href="/users/Goofy_Boss">Goofy_Boss</a>, <a href="/users/pen_and_pencil">pen_and_pencil</a>, <a href="/users/HautBanane">HautBanane</a>, <a href="/users/a_Strangers_Pov">a_Strangers_Pov</a>, <a href="/users/floofspring">floofspring</a>, <a href="/users/yonaka_tan">yonaka_tan</a>, <a href="/users/jeprose01">jeprose01</a>, <a href="/users/Code_Shikai_S">Code_Shikai_S</a>, <a href="/users/MysteryMystery">MysteryMystery</a>, <a href="/users/wraven881">wraven881</a>, <a href="/users/belle_jennichi">belle_jennichi</a>, <a href="/users/late_choco">late_choco</a>, <a href="/users/Perseus_Freedom">Perseus_Freedom</a>, <a href="/users/Howl_to_the_Moon">Howl_to_the_Moon</a>, <a href="/users/SayaRules">SayaRules</a>, <a href="/users/bsbluv28">bsbluv28</a>, <a href="/users/ZeroMotivationToWrite">ZeroMotivationToWrite</a>, <a href="/users/Simbjammin">Simbjammin</a>, <a href="/users/Ludicrously_Idiotic">Ludicrously_Idiotic</a>, <a href="/users/pervywisenerd">pervywisenerd</a>, <a href="/users/NoWarningSignNoAlibi">NoWarningSignNoAlibi</a>, <a href="/users/Phaes">Phaes</a>, <a href="/users/lilbabybirdie">lilbabybirdie</a>, <a href="/users/rainbowsinshadesofblue">rainbowsinshadesofblue</a>, <a href="/users/Kael_Vercorian">Kael_Vercorian</a>, <a href="/users/echotalia">echotalia</a>, <a href="/users/UnknownDevil666">UnknownDevil666</a>, <a href="/users/Sungsi">Sungsi</a>, <a href="/users/Just_Another_Introvert">Just_Another_Introvert</a>, <a href="/users/Foresthunter">Foresthunter</a>, <a href="/users/ProcrastinatorQueen">ProcrastinatorQueen</a>, <a href="/users/Aerdnanocte">Aerdnanocte</a>, <a href="/users/Strawbellie666">Strawbellie666</a>, <a href="/users/SevenRenny">SevenRenny</a>, <a href="/users/Axolotl_In_A_Bottle">Axolotl_In_A_Bottle</a>, <a href="/users/vasenrys">vasenrys</a>, <a href="/users/Ellibarrie">Ellibarrie</a>, <a href="/users/olympian_mystery">olympian_mystery</a>, <a href="/users/LordGrima">LordGrima</a>, <a href="/users/explorne">explorne</a>, <a href="/users/belawyn">belawyn</a>, <a href="/users/curledqueen">curledqueen</a>, <a href="/users/Darkdragonforge">Darkdragonforge</a>, <a href="/users/Fremontii">Fremontii</a>, <a href="/users/bee_official">bee_official</a>, <a href="/users/mangageek23">mangageek23</a>, <a href="/users/chocolettu">chocolettu</a>, <a href="/users/God_Of_Cake">God_Of_Cake</a>, <a href="/users/HereToSuffer">HereToSuffer</a>, <a href="/users/HunterOfTheWild">HunterOfTheWild</a>, <a href="/users/Kai_Lu">Kai_Lu</a>, <a href="/users/RoyalBard">RoyalBard</a>, <a href="/users/zephyr_dh">zephyr_dh</a>, <a href="/users/Blackhole_Called_Anime">Blackhole_Called_Anime</a>, <a href="/users/Mysana">Mysana</a>, <a href="/users/0ssian">0ssian</a>, <a href="/users/NingenShikkaku">NingenShikkaku</a>, <a href="/users/samlavie">samlavie</a>, <a href="/users/TenebrisDecora">TenebrisDecora</a>, <a href="/users/Serventa">Serventa</a>, <a href="/users/RedQueen">RedQueen</a>, <a href="/users/kinnoonnanoko">kinnoonnanoko</a>, <a href="/users/KnightofAwesome">KnightofAwesome</a>, <a href="/users/Liana_Alma">Liana_Alma</a>, <a href="/users/Sapphire_Arrow">Sapphire_Arrow</a>, <a href="/users/EstaJay">EstaJay</a>, <a href="/users/idiocypersonified">idiocypersonified</a>, <a href="/users/Millberry_5">Millberry_5</a>, <a href="/users/fireredrose95">fireredrose95</a>, <a href="/users/NotTheTomato">NotTheTomato</a>, <a href="/users/CactusInPots">CactusInPots</a>, <a href="/users/thisiscrasy">thisiscrasy</a>, <a href="/users/moriartyshouldseemeinacrown">moriartyshouldseemeinacrown</a>, <a href="/users/Isola">Isola</a>, <a href="/users/Firefang32942">Firefang32942</a>, <a href="/users/TheLadyVanora">TheLadyVanora</a>, <a href="/users/Itcamefromashes">Itcamefromashes</a>, <a href="/users/themysteriousinternetentity">themysteriousinternetentity</a>, <a href="/users/ReyRose">ReyRose</a>, <a href="/users/irradtional">irradtional</a>, <a href="/users/Tobiyolo">Tobiyolo</a>, <a href="/users/HillKleen">HillKleen</a>, <a href="/users/OnlyHereForTheCat">OnlyHereForTheCat</a>, <a href="/users/mandaley">mandaley</a>, <a href="/users/ConsumedFandomFrenzy">ConsumedFandomFrenzy</a>, <a href="/users/ArseniK19">ArseniK19</a>, <a href="/users/StormySkies95">StormySkies95</a>, <a href="/users/Noodlethoughts">Noodlethoughts</a>, <a href="/users/Thireven">Thireven</a>, <a href="/users/Valkyrian_Profiler">Valkyrian_Profiler</a>, <a href="/users/Rosey16">Rosey16</a>, <a href="/users/wolfshaman84">wolfshaman84</a>, <a href="/users/atolla">atolla</a>, <a href="/users/Imaon">Imaon</a>, <a href="/users/TwistedDisaster">TwistedDisaster</a>, <a href="/users/Dyute">Dyute</a>, <a href="/users/CuzImninjathatway">CuzImninjathatway</a>, <a href="/users/quietgalaxies">quietgalaxies</a>, <a href="/users/MerelOye">MerelOye</a>, <a href="/users/covirn">covirn</a>, <a href="/users/Oixys">Oixys</a>, <a href="/users/DarkinRed">DarkinRed</a>, <a href="/users/Sparkle9510">Sparkle9510</a>, <a href="/users/AlwaysSometimesKobold">AlwaysSometimesKobold</a>, <a href="/users/ChickenBrittle">ChickenBrittle</a>, <a href="/users/rrr98">rrr98</a>, <a href="/users/IlluminatingSceadugenga">IlluminatingSceadugenga</a>, <a href="/users/milquetoastttttt">milquetoastttttt</a>, <a href="/users/chillychill">chillychill</a>, <a href="/users/Mizukiyoru_Shiroko">Mizukiyoru_Shiroko</a>, <a href="/users/RainAmbrosius">RainAmbrosius</a>, <a href="/users/vickibla">vickibla</a>, <a href="/users/SickApothecary">SickApothecary</a>, <a href="/users/nkole12">nkole12</a>, <a href="/users/derevosky">derevosky</a>, <a href="/users/wickednotevil">wickednotevil</a>, <a href="/users/Grey_sky_BG90">Grey_sky_BG90</a>, <a href="/users/liuenhui">liuenhui</a>, <a href="/users/Ploiarium">Ploiarium</a>, <a href="/users/Vinny_Gunfetti">Vinny_Gunfetti</a>, <a href="/users/Paristandard">Paristandard</a>, <a href="/users/FancyTragedyCat">FancyTragedyCat</a>, <a href="/users/forrealthough">forrealthough</a>, <a href="/users/Irina2010med">Irina2010med</a>, <a href="/users/AnjuSchiffer">AnjuSchiffer</a>, <a href="/users/AceEntrope_y">AceEntrope_y</a>, <a href="/users/TheMagicPlok">TheMagicPlok</a>, <a href="/users/condulences">condulences</a>, <a href="/users/RuneShadow24">RuneShadow24</a>, <a href="/users/ryouseiteki">ryouseiteki</a>, <a href="/users/sententiae_bonae">sententiae_bonae</a>, <a href="/users/art_Dragon">art_Dragon</a>, <a href="/users/AFellowOtaku">AFellowOtaku</a>, <a href="/users/coobieduwang">coobieduwang</a>, <a href="/users/Kennedy1226">Kennedy1226</a>, <a href="/users/Hiruma">Hiruma</a>, <a href="/users/ArkofTime">ArkofTime</a>, <a href="/users/TimeLordLucario">TimeLordLucario</a>, <a href="/users/CAELandTAiyo">CAELandTAiyo</a>, <a href="/users/niln">niln</a>, <a href="/users/JaniceJade">JaniceJade</a>, <a href="/users/winter_368">winter_368</a>, <a href="/users/princessoro">princessoro</a>, <a href="/users/melono246">melono246</a>, <a href="/users/Assasin8">Assasin8</a>, <a href="/users/Sparky_crazymofo">Sparky_crazymofo</a>, <a href="/users/DarthPeezy">DarthPeezy</a>, <a href="/users/burningsaiyan">burningsaiyan</a>, <a href="/users/Torn_Pride_Flag">Torn_Pride_Flag</a>, <a href="/users/NightFireFury">NightFireFury</a>, <a href="/users/Just_Tired">Just_Tired</a>, <a href="/users/Monochrome13">Monochrome13</a>, <a href="/users/ThatOnePlatypus">ThatOnePlatypus</a>, <a href="/users/Dante_Morgan">Dante_Morgan</a>, <a href="/users/ReadingIsGreaterThanWriting">ReadingIsGreaterThanWriting</a>, <a href="/users/senna_robbins">senna_robbins</a>, <a href="/users/Snowleaper">Snowleaper</a>, <a href="/users/Coelum">Coelum</a>, <a href="/users/Kamu">Kamu</a>, <a href="/users/Sneaky_Commenter">Sneaky_Commenter</a>, <a href="/users/localcryptidkid">localcryptidkid</a>, <a href="/users/ableedingheart">ableedingheart</a>, <a href="/users/Lexus_night">Lexus_night</a>, <a href="/users/Night_Pixie">Night_Pixie</a>, <a href="/users/tinygrunt">tinygrunt</a>, <a href="/users/my_haikyuu_academia">my_haikyuu_academia</a>, <a href="/users/maplebee">maplebee</a>, <a href="/users/IvorySoda">IvorySoda</a>, <a href="/users/Amadeus_Erebus_Aurelianus">Amadeus_Erebus_Aurelianus</a>, <a href="/users/HikaruWinter">HikaruWinter</a>, <a href="/users/ErinLovesPotatoes">ErinLovesPotatoes</a>, <a href="/users/catsplosionxd">catsplosionxd</a>, <a href="/users/EsotericChaos">EsotericChaos</a>, <a href="/users/Huntershyren">Huntershyren</a>, <a href="/users/ShamrockTales">ShamrockTales</a>, <a href="/users/charlietheepic7">charlietheepic7</a>, <a href="/users/PlsLetMeSleeb">PlsLetMeSleeb</a>, <a href="/users/triangulumkel">triangulumkel</a>, <a href="/users/ValenNightstorm">ValenNightstorm</a>, <a href="/users/Jukki21">Jukki21</a>, <a href="/users/Dethia9">Dethia9</a>, <a href="/users/BrilliantCrow">BrilliantCrow</a>, <a href="/users/marouli">marouli</a>, <a href="/users/AceofCoins">AceofCoins</a>, <a href="/users/Phantom_of_Shipper">Phantom_of_Shipper</a>, <a href="/users/draconicPenartastic">draconicPenartastic</a>, <a href="/users/CloudDreamer">CloudDreamer</a>, <a href="/users/quietest">quietest</a>, <a href="/users/WeAreTheLegionOfTheBeast">WeAreTheLegionOfTheBeast</a>, <a href="/users/GhostlyDragon">GhostlyDragon</a>, <a href="/users/talesasoldasbelle">talesasoldasbelle</a>, <a href="/users/blueglassesgirl">blueglassesgirl</a>, <a href="/users/Howling_Sage">Howling_Sage</a>, <a href="/users/TheRechercheRambler">TheRechercheRambler</a>, <a href="/users/Guardian_Rex">Guardian_Rex</a>, <a href="/users/NickNackNyx">NickNackNyx</a>, <a href="/users/lazycros">lazycros</a>, <a href="/users/iamanawesometaco">iamanawesometaco</a>, <a href="/users/pnpclear">pnpclear</a>, <a href="/users/1sakichan2">1sakichan2</a>, <a href="/users/insertcleverjokehere">insertcleverjokehere</a>, <a href="/users/Salirael">Salirael</a>, <a href="/users/sailor_andromeda">sailor_andromeda</a>, <a href="/users/Eadmas">Eadmas</a>, <a href="/users/x0WhisperingWinds0x">x0WhisperingWinds0x</a>, <a href="/users/CanaaniteCabalist">CanaaniteCabalist</a>, <a href="/users/LilyMoon">LilyMoon</a>, <a href="/users/RubelliteGame">RubelliteGame</a>, <a href="/users/SannaSainity">SannaSainity</a>, <a href="/users/Yuechum">Yuechum</a>, <a href="/users/Dreamichigo">Dreamichigo</a>, <a href="/users/fightme">fightme</a>, <a href="/users/thatadhdkid">thatadhdkid</a>, <a href="/users/Nightmarenip">Nightmarenip</a>, <a href="/users/artisticallySuffering">artisticallySuffering</a>, <a href="/users/Evonnys">Evonnys</a>, <a href="/users/wulfy">wulfy</a>, <a href="/users/kittenwithclaws">kittenwithclaws</a>, <a href="/users/sofia30051">sofia30051</a>, <a href="/users/QueenofOblivion">QueenofOblivion</a>, <a href="/users/Plimsoll">Plimsoll</a>, <a href="/users/ehahsou">ehahsou</a>, <a href="/users/chai_kun">chai_kun</a>, <a href="/users/Kopper">Kopper</a>, <a href="/users/ManukaHoneyTea">ManukaHoneyTea</a>, <a href="/users/LadyTardis">LadyTardis</a>, <a href="/users/saintvmon">saintvmon</a>, <a href="/users/kota_bear">kota_bear</a>, <a href="/users/Curiositywillbemydownfall">Curiositywillbemydownfall</a>, <a href="/users/Sweettoothforpie">Sweettoothforpie</a>, <a href="/users/Sleeping_Sheep">Sleeping_Sheep</a>, <a href="/users/schwertlilie">schwertlilie</a>, <a href="/users/Ms_Guillotine">Ms_Guillotine</a>, <a href="/users/OnlyMilesToGo">OnlyMilesToGo</a>, <a href="/users/L_Bane">L_Bane</a>, <a href="/users/fisukisuki">fisukisuki</a>, <a href="/users/Verassi">Verassi</a>, <a href="/users/lunarrainbows">lunarrainbows</a>, <a href="/users/tatsuzukki">tatsuzukki</a>, <a href="/users/SimplyFox">SimplyFox</a>, <a href="/users/I_am_not_error">I_am_not_error</a>, <a href="/users/Shallowsmix">Shallowsmix</a>, <a href="/users/Akemi831Sato">Akemi831Sato</a>, <a href="/users/Dys">Dys</a>, <a href="/users/FindingZ">FindingZ</a>, <a href="/users/EanSovukau">EanSovukau</a>, <a href="/users/Alienea">Alienea</a>, <a href="/users/qwaszxedc9">qwaszxedc9</a>, <a href="/users/Beetpiece">Beetpiece</a>, <a href="/users/Tibki">Tibki</a>, <a href="/users/Tsu_Doh_Nimh">Tsu_Doh_Nimh</a>, <a href="/users/Fluffy_dragon_prince">Fluffy_dragon_prince</a>, <a href="/users/Flippy750">Flippy750</a>, <a href="/users/foxandfriends">foxandfriends</a>, <a href="/users/DuugaDuuga">DuugaDuuga</a>, <a href="/users/Healer99">Healer99</a>, <a href="/users/Messier_47">Messier_47</a>, <a href="/users/paprikaParade">paprikaParade</a>, <a href="/users/TheUselessReader">TheUselessReader</a>, <a href="/users/MisterScamandros">MisterScamandros</a>, <a href="/users/seawispy">seawispy</a>, <a href="/users/DarkElectron">DarkElectron</a>, <a href="/users/Linya333">Linya333</a>, <a href="/users/speakdontweep">speakdontweep</a>, <a href="/users/ThatOneInTheCornerWithTheBook">ThatOneInTheCornerWithTheBook</a>, <a href="/users/Chyme">Chyme</a>, <a href="/users/complexities">complexities</a>, <a href="/users/Caelismylife">Caelismylife</a>, <a href="/users/r3nlock">r3nlock</a>, <a href="/users/Sariau">Sariau</a>, <a href="/users/NobleAzure">NobleAzure</a>, <a href="/users/Bibliophage413">Bibliophage413</a>, <a href="/users/Shimura_Ootani">Shimura_Ootani</a>, <a href="/users/BoPeepWithNoSheep">BoPeepWithNoSheep</a>, <a href="/users/Infinitechange">Infinitechange</a>, <a href="/users/Comicsandslushies">Comicsandslushies</a>, <a href="/users/Hatchett">Hatchett</a>, <a href="/users/storiewriter">storiewriter</a>, <a href="/users/Byeouri">Byeouri</a>, <a href="/users/eepmeep">eepmeep</a>, <a href="/users/Miss_lollipop">Miss_lollipop</a>, <a href="/users/littlelock">littlelock</a>, <a href="/users/zourail">zourail</a>, <a href="/users/TriTaledKitsune">TriTaledKitsune</a>, <a href="/users/thecozydragon">thecozydragon</a>, <a href="/users/Koneko_san">Koneko_san</a>, <a href="/users/Eorendel">Eorendel</a>, <a href="/users/Atsuisora">Atsuisora</a>, <a href="/users/Racke">Racke</a>, <a href="/users/opaillya">opaillya</a>, <a href="/users/Sonder001">Sonder001</a>, <a href="/users/zeixx">zeixx</a>, <a href="/users/The_Na_In_Mina">The_Na_In_Mina</a>, <a href="/users/KillerBee">KillerBee</a>, <a href="/users/bulgecursed">bulgecursed</a>, <a href="/users/Kyu_Momo">Kyu_Momo</a>, <a href="/users/marcysama">marcysama</a>, <a href="/users/TerribleWriter">TerribleWriter</a>, <a href="/users/MochiMochiDohyon">MochiMochiDohyon</a>, <a href="/users/wilowisp">wilowisp</a>, <a href="/users/CeleryWilliams">CeleryWilliams</a>, <a href="/users/Rafflehaffle">Rafflehaffle</a>, <a href="/users/nightowlz">nightowlz</a>, <a href="/users/Greiver_Dhark">Greiver_Dhark</a>, <a href="/users/DorkLord">DorkLord</a>, <a href="/users/Malky">Malky</a>, <a href="/users/Daitoshi">Daitoshi</a>, <a href="/users/sleepingugly">sleepingugly</a>, <a href="/users/Isob3l">Isob3l</a>, <a href="/users/neuroticalien">neuroticalien</a>, <a href="/users/Ihniwid">Ihniwid</a>, <a href="/users/KrakenAntlers">KrakenAntlers</a>, <a href="/users/minorcharacter">minorcharacter</a>, <a href="/users/RLNN">RLNN</a>, <a href="/users/Astral_Firefrost">Astral_Firefrost</a>, <a href="/users/sh_04e">sh_04e</a>, <a href="/users/Maddy_Grace">Maddy_Grace</a>, <a href="/users/TheLordoftheDisc">TheLordoftheDisc</a>, <a href="/users/Phantom_of_Fenrir">Phantom_of_Fenrir</a>, <a href="/users/Mikadosenju">Mikadosenju</a>, <a href="/users/Brightness_Random">Brightness_Random</a>, <a href="/users/Ring_Apple">Ring_Apple</a>, <a href="/users/Yuilhan">Yuilhan</a>, <a href="/users/luciferTM">luciferTM</a>, <a href="/users/CloudE">CloudE</a>, <a href="/users/lucyfer35">lucyfer35</a>, <a href="/users/RakkiAnkh">RakkiAnkh</a>, <a href="/users/Guratta">Guratta</a>, <a href="/users/Pointedflower">Pointedflower</a>, <a href="/users/StuffHappens">StuffHappens</a>, <a href="/users/Nealex">Nealex</a>, <a href="/users/Skull1412">Skull1412</a>, <a href="/users/Ziatrix">Ziatrix</a>, <a href="/users/whyica">whyica</a>, <a href="/users/Cheshire_flower">Cheshire_flower</a>, <a href="/users/ScissorLord">ScissorLord</a>, <a href="/users/Alexisminas">Alexisminas</a>, <a href="/users/curtainsonfire">curtainsonfire</a>, <a href="/users/demonturtle">demonturtle</a>, <a href="/users/hookedonthesky">hookedonthesky</a>, <a href="/users/Lotus1">Lotus1</a>, <a href="/users/snow_and_cats">snow_and_cats</a>, <a href="/users/enamis">enamis</a>, <a href="/users/eRHa">eRHa</a>, <a href="/users/ElectraX12">ElectraX12</a>, <a href="/users/flickers_to_flames">flickers_to_flames</a>, <a href="/users/KattNapper">KattNapper</a>, <a href="/users/Kikaenao">Kikaenao</a>, <a href="/users/Ixempt">Ixempt</a>, <a href="/users/Hatsumei917">Hatsumei917</a>, <a href="/users/Pastelred">Pastelred</a>, <a href="/users/SpiritQuill">SpiritQuill</a>, <a href="/users/samvilric">samvilric</a>, <a href="/users/Lyra21">Lyra21</a>, <a href="/users/KoreanGal55555">KoreanGal55555</a>, <a href="/users/Krai_27">Krai_27</a>, <a href="/users/epiphanein">epiphanein</a>, <a href="/users/Meridian_Prime">Meridian_Prime</a>, <a href="/users/leewrites">leewrites</a>, <a href="/users/castawayastronaut">castawayastronaut</a>, <a href="/users/knowAll">knowAll</a>, <a href="/users/BurningShroud">BurningShroud</a>, <a href="/users/Sekishi">Sekishi</a>, <a href="/users/Fairly_Uncertain">Fairly_Uncertain</a>, <a href="/users/ingredeints">ingredeints</a>, <a href="/users/audire">audire</a>, <a href="/users/Uemangero">Uemangero</a>, <a href="/users/CassBerry">CassBerry</a>, <a href="/users/deviant_alpaca">deviant_alpaca</a>, <a href="/users/sherrysweet">sherrysweet</a>, <a href="/users/Shukkets">Shukkets</a>, <a href="/users/ckirkes2427">ckirkes2427</a>, <a href="/users/Jasminedreamsong">Jasminedreamsong</a>, <a href="/users/Jenaminya">Jenaminya</a>, <a href="/users/Elianlovescats">Elianlovescats</a>, <a href="/users/Mizudoriko">Mizudoriko</a>, <a href="/users/Booklover9477">Booklover9477</a>, <a href="/users/Guise_n_Disguise">Guise_n_Disguise</a>, <a href="/users/Eeveebattler4">Eeveebattler4</a>, <a href="/users/KashimSck">KashimSck</a>, <a href="/users/Greenapril">Greenapril</a>, <a href="/users/KingODunces">KingODunces</a>, <a href="/users/hanamaru025">hanamaru025</a>, <a href="/users/RebelPrincess">RebelPrincess</a>, <a href="/users/HannyBoo">HannyBoo</a>, <a href="/users/lariyats">lariyats</a>, <a href="/users/Jueru">Jueru</a>, <a href="/users/EggEmperor">EggEmperor</a>, <a href="/users/zombiebatgirl">zombiebatgirl</a>, <a href="/users/significantfoliage">significantfoliage</a>, <a href="/users/rowan1025">rowan1025</a>, <a href="/users/IronLucario2012">IronLucario2012</a>, <a href="/users/Evierl_Frost">Evierl_Frost</a>, <a href="/users/Neceros">Neceros</a>, <a href="/users/ashtreeowl">ashtreeowl</a>, <a href="/users/Emily_Elizabeth_Fowl">Emily_Elizabeth_Fowl</a>, <a href="/users/gins4n">gins4n</a>, <a href="/users/Phani">Phani</a>, <a href="/users/Myrddin767">Myrddin767</a>, <a href="/users/Haamulikka">Haamulikka</a>, <a href="/users/WickedBee">WickedBee</a>, <a href="/users/KitsuFae">KitsuFae</a>, <a href="/users/UnicorniaPunk">UnicorniaPunk</a>, <a href="/users/SuperIceLight">SuperIceLight</a>, <a href="/users/sechar">sechar</a>, <a href="/users/unexpected_side_effects">unexpected_side_effects</a>, <a href="/users/SainthRoux">SainthRoux</a>, <a href="/users/Mjah">Mjah</a>, <a href="/users/3AM_Sky">3AM_Sky</a>, <a href="/users/ManicMahou">ManicMahou</a>, <a href="/users/Raven1113">Raven1113</a>, <a href="/users/Zaya">Zaya</a>, <a href="/users/andromedia">andromedia</a>, <a href="/users/Some_Reader">Some_Reader</a>, <a href="/users/Metaphorical_Tables">Metaphorical_Tables</a>, <a href="/users/tenkei">tenkei</a>, <a href="/users/samoulto">samoulto</a>, <a href="/users/Mister_Ukki">Mister_Ukki</a>, <a href="/users/northpeach">northpeach</a>, <a href="/users/Cacti_Lord">Cacti_Lord</a>, <a href="/users/Ageisia">Ageisia</a>, <a href="/users/Scarper_Von_Hyde">Scarper_Von_Hyde</a>, <a href="/users/Waslala">Waslala</a>, <a href="/users/azinine">azinine</a>, <a href="/users/anodyneAvian">anodyneAvian</a>, <a href="/users/bat_teeth">bat_teeth</a>, <a href="/users/Merkitten">Merkitten</a>, <a href="/users/AnnabethLawliet">AnnabethLawliet</a>, <a href="/users/Blank09">Blank09</a>, <a href="/users/mildrice">mildrice</a>, <a href="/users/GrimSong19">GrimSong19</a>, <a href="/users/sherhi666">sherhi666</a>, <a href="/users/furiousbeluga">furiousbeluga</a>, <a href="/users/NonchalantxFish">NonchalantxFish</a>, <a href="/users/Modigar">Modigar</a>, <a href="/users/9exec">9exec</a>, <a href="/users/Lady_Ethelle">Lady_Ethelle</a>, <a href="/users/PsychologicalColors">PsychologicalColors</a>, <a href="/users/Gentrychild">Gentrychild</a>, <a href="/users/Isamaru">Isamaru</a>, <a href="/users/TheMoonOracle">TheMoonOracle</a>, <a href="/users/cloudynightstars">cloudynightstars</a>, <a href="/users/Sooshwoosh">Sooshwoosh</a>, <a href="/users/sebasent">sebasent</a>, <a href="/users/bearfighter">bearfighter</a>, <a href="/users/Kero13">Kero13</a>, <a href="/users/InfectedByTheInternet">InfectedByTheInternet</a>, <a href="/users/StrangeLady1331">StrangeLady1331</a>, <a href="/users/khattikeri">khattikeri</a>, <a href="/users/RiippleEffect">RiippleEffect</a>, <a href="/users/Cannot_think_of_a_cool_username">Cannot_think_of_a_cool_username</a>, <a href="/users/Nattyrose">Nattyrose</a>, <a href="/users/nightange1">nightange1</a>, <a href="/users/thefierydagger">thefierydagger</a>, <a href="/users/SlothOnCaffine">SlothOnCaffine</a>, <a href="/users/MeepDaLoop">MeepDaLoop</a>, <a href="/users/Georgia1727">Georgia1727</a>, <a href="/users/Serpensortia_parapluie">Serpensortia_parapluie</a>, <a href="/users/Axe_S">Axe_S</a>, <a href="/users/Graay">Graay</a>, <a href="/users/IndigoMay">IndigoMay</a>, <a href="/users/JNDC2090">JNDC2090</a>, <a href="/users/TheAmused">TheAmused</a>, <a href="/users/DragonWolfAZ">DragonWolfAZ</a>, <a href="/users/liketolaugh">liketolaugh</a>, <a href="/users/ewfte">ewfte</a>, <a href="/users/bimbambapboo">bimbambapboo</a>, <a href="/users/jacqui_may">jacqui_may</a>, <a href="/users/A_ToastToTheOutcasts">A_ToastToTheOutcasts</a>, <a href="/users/Shade_OKiller">Shade_OKiller</a>, <a href="/users/LittleLoaf">LittleLoaf</a>, <a href="/users/OrionRedde">OrionRedde</a>, <a href="/users/Anderein">Anderein</a>, <a href="/users/A_Conspiracy_of_Ravens">A_Conspiracy_of_Ravens</a>, <a href="/users/Shiba_Deku">Shiba_Deku</a>, <a href="/users/OnlyHitsuzen">OnlyHitsuzen</a>, <a href="/users/TheMagneticWitch">TheMagneticWitch</a>, <a href="/users/Greddb">Greddb</a>, <a href="/users/insomnnni">insomnnni</a>, <a href="/users/soy_un_sombrero">soy_un_sombrero</a>, <a href="/users/Jaxmyne">Jaxmyne</a>, <a href="/users/chococrumple">chococrumple</a>, <a href="/users/Madman044">Madman044</a>, <a href="/users/isadorator">isadorator</a>, <a href="/users/onlytorgato">onlytorgato</a>, <a href="/users/Da_Kaleidoscope">Da_Kaleidoscope</a>, <a href="/users/Delicious_Vice">Delicious_Vice</a>, <a href="/users/Wisteric">Wisteric</a>, <a href="/users/parchas">parchas</a>, <a href="/users/monster_bookworm">monster_bookworm</a>, <a href="/users/iluvscrewballandwoodstock">iluvscrewballandwoodstock</a>, <a href="/users/JoyWoods">JoyWoods</a>, <a href="/users/justyouwaitforit">justyouwaitforit</a>, <a href="/users/byrchgryffin">byrchgryffin</a>, <a href="/users/RiverGod">RiverGod</a>, <a href="/users/ThePackWantstheD">ThePackWantstheD</a>, <a href="/users/birdking">birdking</a>, <a href="/users/Neayss">Neayss</a>, <a href="/users/GravityIsALie">GravityIsALie</a>, <a href="/users/Kintaurus">Kintaurus</a>, <a href="/users/Snekpoetry">Snekpoetry</a>, <a href="/users/inucase">inucase</a>, <a href="/users/FauxPause">FauxPause</a>, <a href="/users/Sunrise_Flame">Sunrise_Flame</a>, <a href="/users/draconicshinx">draconicshinx</a>, <a href="/users/Readera">Readera</a>, <a href="/users/Hugggg">Hugggg</a>, <a href="/users/alech">alech</a>, <a href="/users/cryptidflavored">cryptidflavored</a>, <a href="/users/koutarogue">koutarogue</a>, <a href="/users/Kaileen">Kaileen</a>, <a href="/users/alllula">alllula</a>, <a href="/users/Cassidae">Cassidae</a>, <a href="/users/Luizalds">Luizalds</a>, <a href="/users/Xxkyoumi_chanxx">Xxkyoumi_chanxx</a>, <a href="/users/Kurokono_Tasuke">Kurokono_Tasuke</a>, <a href="/users/alamerysl">alamerysl</a>, <a href="/users/Anchi">Anchi</a>, <a href="/users/LilyWhite22">LilyWhite22</a>, <a href="/users/Nonbinary_pal">Nonbinary_pal</a>, <a href="/users/eeveelutionlover2000">eeveelutionlover2000</a>, <a href="/users/victuri">victuri</a>, <a href="/users/Ryuze">Ryuze</a>, <a href="/users/Lady_Mystra">Lady_Mystra</a>, <a href="/users/aneszto">aneszto</a>, <a href="/users/69Shirayuki96">69Shirayuki96</a>, <a href="/users/MuteTentailes">MuteTentailes</a>, <a href="/users/Merel">Merel</a>, <a href="/users/Gerbleshner">Gerbleshner</a>, <a href="/users/OriksGaming">OriksGaming</a>, <a href="/users/LostCure">LostCure</a>, <a href="/users/Ziel">Ziel</a>, <a href="/users/DropsOfSun">DropsOfSun</a>, <a href="/users/etherealtulip">etherealtulip</a>, <a href="/users/CalicoKitty402">CalicoKitty402</a>, <a href="/users/hispnaicin">hispnaicin</a>, <a href="/users/TabethaRasa">TabethaRasa</a>, <a href="/users/wstphl">wstphl</a>, <a href="/users/JudyBluff">JudyBluff</a>, <a href="/users/Astelinda">Astelinda</a>, <a href="/users/theThirteenthChild">theThirteenthChild</a>, <a href="/users/sunoa">sunoa</a>, <a href="/users/vereloj">vereloj</a>, <a href="/users/Nanook">Nanook</a>, <a href="/users/Tobalerone">Tobalerone</a>, <a href="/users/nothingseriously">nothingseriously</a>, <a href="/users/m00se">m00se</a>, <a href="/users/Aeondragon">Aeondragon</a>, <a href="/users/Quint_Polaris">Quint_Polaris</a>, <a href="/users/warpinator">warpinator</a>, <a href="/users/china_roses">china_roses</a>, <a href="/users/sablin27">sablin27</a>, <a href="/users/TanTales">TanTales</a>, <a href="/users/xibalbaolmec">xibalbaolmec</a>, <a href="/users/brawltogethernow">brawltogethernow</a>, <a href="/users/lesbianmina">lesbianmina</a>, <a href="/users/spontaneite">spontaneite</a>, <a href="/users/whodoyoudo">whodoyoudo</a>, <a href="/users/Hyacinthium">Hyacinthium</a>, <a href="/users/Mysterymew">Mysterymew</a>, <a href="/users/crimesandrhymes">crimesandrhymes</a>, <a href="/users/Fififire">Fififire</a>, <a href="/users/breakout1801">breakout1801</a>, <a href="/users/Cloy552">Cloy552</a>, <a href="/users/Mythplaced_Logic">Mythplaced_Logic</a>, <a href="/users/pink_disaster">pink_disaster</a>, <a href="/users/KittyChan">KittyChan</a>, <a href="/users/LunaKarma">LunaKarma</a>, <a href="/users/Aiyamey">Aiyamey</a>, <a href="/users/AoiMikans">AoiMikans</a>, <a href="/users/Luciola">Luciola</a>, <a href="/users/The_Phantom_Eyes">The_Phantom_Eyes</a>, <a href="/users/abrigosAzules">abrigosAzules</a>, <a href="/users/cluelesscreature">cluelesscreature</a>, <a href="/users/Sophiebybophie">Sophiebybophie</a>, <a href="/users/zntkilledme">zntkilledme</a>, <a href="/users/MagiaZenith">MagiaZenith</a>, <a href="/users/bbuttersworth">bbuttersworth</a>, <a href="/users/Avria">Avria</a>, <a href="/users/Jazlyn191">Jazlyn191</a>, <a href="/users/KnightAsphodel">KnightAsphodel</a>, <a href="/users/HockityPockity">HockityPockity</a>, <a href="/users/Lllllll687">Lllllll687</a>, <a href="/users/bombayneko">bombayneko</a>, <a href="/users/zoey_96">zoey_96</a>, <a href="/users/Guldberg">Guldberg</a>, <a href="/users/Die_Erlkonigin6083">Die_Erlkonigin6083</a>, <a href="/users/zion_a">zion_a</a>, <a href="/users/nhwaun1">nhwaun1</a>, <a href="/users/3ofClubs">3ofClubs</a>, <a href="/users/Uncharted_Constellations">Uncharted_Constellations</a>, <a href="/users/SilfarionOrchestra">SilfarionOrchestra</a>, <a href="/users/Cd1470">Cd1470</a>, <a href="/users/Xas">Xas</a>, <a href="/users/Candy284">Candy284</a>, <a href="/users/url02cabbadge">url02cabbadge</a>, <a href="/users/LuckyDreamer">LuckyDreamer</a>, <a href="/users/tinypurplegiraffe">tinypurplegiraffe</a>, <a href="/users/tsukihime1467">tsukihime1467</a>, <a href="/users/miraclegem">miraclegem</a>, <a href="/users/SweetScentences">SweetScentences</a>, <a href="/users/novelDaydreamer">novelDaydreamer</a>, <a href="/users/NomomoCutieXD">NomomoCutieXD</a>, <a href="/users/darkgrirmora97">darkgrirmora97</a>, <a href="/users/LazyPotatoo">LazyPotatoo</a>, <a href="/users/cecilquangdong">cecilquangdong</a>, <a href="/users/Pinlie">Pinlie</a>, <a href="/users/AdditionalStickers">AdditionalStickers</a>, <a href="/users/Estrella85">Estrella85</a>, <a href="/users/theisleisfullofnoises">theisleisfullofnoises</a>, <a href="/users/FerreFolkLurking">FerreFolkLurking</a>, <a href="/users/jadehml">jadehml</a>, <a href="/users/SunnyDFlower">SunnyDFlower</a>, <a href="/users/falterth">falterth</a>, <a href="/users/TheSecretUchiha">TheSecretUchiha</a>, <a href="/users/anony_mouse">anony_mouse</a>, <a href="/users/cynnix">cynnix</a>, <a href="/users/geneticus">geneticus</a>, <a href="/users/Alara16">Alara16</a>, <a href="/users/AvariceTel">AvariceTel</a>, <a href="/users/aseies">aseies</a>, <a href="/users/Wingwyrm">Wingwyrm</a>, <a href="/users/Unknownlight">Unknownlight</a>, <a href="/users/pikachurinn">pikachurinn</a>, <a href="/users/DeathFollowsMe">DeathFollowsMe</a>, <a href="/users/thegrinningcrow">thegrinningcrow</a>, <a href="/users/rrllao">rrllao</a>, <a href="/users/Kant">Kant</a>, <a href="/users/DilwynAwel">DilwynAwel</a>, <a href="/users/MythicalMind">MythicalMind</a>, <a href="/users/keikia">keikia</a>, <a href="/users/Quetoa">Quetoa</a>, <a href="/users/cupofkahvii">cupofkahvii</a>, <a href="/users/X59">X59</a>, <a href="/users/Orange_Clown">Orange_Clown</a>, <a href="/users/DistantConstellations">DistantConstellations</a>, <a href="/users/Reapergenesis32">Reapergenesis32</a>, <a href="/users/Luxurious_Hellgirl">Luxurious_Hellgirl</a>, <a href="/users/SurreptitiousLife">SurreptitiousLife</a>, <a href="/users/anandroidinatutu">anandroidinatutu</a>, <a href="/users/inherit">inherit</a>, <a href="/users/jimjams_fiddles">jimjams_fiddles</a>, <a href="/users/kpop_Itsgreat963">kpop_Itsgreat963</a>, <a href="/users/Hikaru211017">Hikaru211017</a>, <a href="/users/Deadbloodshiki62">Deadbloodshiki62</a>, <a href="/users/SerenityJay">SerenityJay</a>, <a href="/users/snickerdoodlles">snickerdoodlles</a>, <a href="/users/NobodyInWonderland">NobodyInWonderland</a>, <a href="/users/ChiwiTheKiwi">ChiwiTheKiwi</a>, <a href="/users/greenandsour">greenandsour</a>, <a href="/users/Nopedog">Nopedog</a>, <a href="/users/HahpEnds">HahpEnds</a>, <a href="/users/TheLoneWolf007">TheLoneWolf007</a>, <a href="/users/KidScrappy">KidScrappy</a>, <a href="/users/UselessQueer">UselessQueer</a>, <a href="/users/NowWithExtraSalt">NowWithExtraSalt</a>, <a href="/users/Yuu1412">Yuu1412</a>, <a href="/users/FranchezkaAntoinette">FranchezkaAntoinette</a>, <a href="/users/TheAnonFaerie">TheAnonFaerie</a>, <a href="/users/miraluna23">miraluna23</a>, <a href="/users/TheEmbodimentOfAwkwardness">TheEmbodimentOfAwkwardness</a>, <a href="/users/Im_a_ghost_i_guess">Im_a_ghost_i_guess</a>, <a href="/users/Tanya12">Tanya12</a>, <a href="/users/SunShark">SunShark</a>, <a href="/users/Jinx_Luck">Jinx_Luck</a>, <a href="/users/Evadark1">Evadark1</a>, <a href="/users/truecolorflame">truecolorflame</a>, <a href="/users/No_Naam">No_Naam</a>, <a href="/users/Selias">Selias</a>, <a href="/users/lillithschild">lillithschild</a>, <a href="/users/heiyue">heiyue</a>, <a href="/users/Zusanheim">Zusanheim</a>, <a href="/users/KisaragiMarru">KisaragiMarru</a>, <a href="/users/Waffleleaf">Waffleleaf</a>, <a href="/users/loorking">loorking</a>, <a href="/users/rosysea">rosysea</a>, <a href="/users/spossie9">spossie9</a>, <a href="/users/myfineasymptote">myfineasymptote</a>, <a href="/users/CircleCautious">CircleCautious</a>, <a href="/users/EquinePianist">EquinePianist</a>, <a href="/users/Loria_in_eternity">Loria_in_eternity</a>, <a href="/users/Dezara">Dezara</a>, <a href="/users/FanabstractedZing">FanabstractedZing</a>, <a href="/users/kaear">kaear</a>, <a href="/users/InverseAntagonism">InverseAntagonism</a>, <a href="/users/TheCrystalEevee">TheCrystalEevee</a>, <a href="/users/theinconceivabletruth">theinconceivabletruth</a>, <a href="/users/Kouen_chan">Kouen_chan</a>, <a href="/users/TheFaeDemon">TheFaeDemon</a>, <a href="/users/jelliedbeans">jelliedbeans</a>, <a href="/users/AxZi">AxZi</a>, <a href="/users/LightningPriestess">LightningPriestess</a>, <a href="/users/Jory0994">Jory0994</a>, <a href="/users/MarsBars626">MarsBars626</a>, <a href="/users/Kasplode">Kasplode</a>, <a href="/users/DisorganizedAuthor">DisorganizedAuthor</a>, <a href="/users/Kristtorn_drage">Kristtorn_drage</a>, <a href="/users/geneticMuralist">geneticMuralist</a>, <a href="/users/blueskies36">blueskies36</a>, <a href="/users/Angelmonster">Angelmonster</a>, <a href="/users/athylia">athylia</a>, <a href="/users/Cassia_alata">Cassia_alata</a>, <a href="/users/StarTrail">StarTrail</a>, <a href="/users/CodePurple">CodePurple</a>, <a href="/users/decipheringchaos">decipheringchaos</a>, <a href="/users/CharlotteDaBookworm">CharlotteDaBookworm</a>, <a href="/users/wrenchwench">wrenchwench</a>, <a href="/users/myvividreams">myvividreams</a>, <a href="/users/Scuutie">Scuutie</a>, <a href="/users/koolandkatty">koolandkatty</a>, <a href="/users/Yukionna13">Yukionna13</a>, <a href="/users/RamblingIntoTheDistance">RamblingIntoTheDistance</a>, <a href="/users/mischif">mischif</a>, <a href="/users/Rubles">Rubles</a>, <a href="/users/Hypaterin">Hypaterin</a>, <a href="/users/jamester56">jamester56</a>, <a href="/users/arinrowan">arinrowan</a>, <a href="/users/Aowly">Aowly</a>, <a href="/users/ThegreatH">ThegreatH</a>, <a href="/users/RiverScales">RiverScales</a>, <a href="/users/iguessso12">iguessso12</a>, <a href="/users/LMS616">LMS616</a>, <a href="/users/besotted">besotted</a>, <a href="/users/BlackValkyrie">BlackValkyrie</a>, <a href="/users/oxbonkus">oxbonkus</a>, <a href="/users/Sanzaki_Miya">Sanzaki_Miya</a>, <a href="/users/kendallnicola">kendallnicola</a>, <a href="/users/Zibeth">Zibeth</a>, <a href="/users/Ren_Heart">Ren_Heart</a>, <a href="/users/marguarita33">marguarita33</a>, <a href="/users/ebonyIllusion">ebonyIllusion</a>, <a href="/users/ThisCat">ThisCat</a>, <a href="/users/Niwasae">Niwasae</a>, <a href="/users/SSJSaphira">SSJSaphira</a>, <a href="/users/AkairoShikkoku">AkairoShikkoku</a>, <a href="/users/Guppygabby">Guppygabby</a>, <a href="/users/meshik">meshik</a>, <a href="/users/Carol96">Carol96</a>, <a href="/users/lineline15">lineline15</a>, <a href="/users/Angonoka">Angonoka</a>, <a href="/users/Cianidix">Cianidix</a>, <a href="/users/Tzi">Tzi</a>, <a href="/users/LastEmbers">LastEmbers</a>, <a href="/users/xama">xama</a>, <a href="/users/ShadowedAuthor">ShadowedAuthor</a>, <a href="/users/arcanesecrets">arcanesecrets</a>, <a href="/users/Benevemi">Benevemi</a>, <a href="/users/Vibvigvwrayf">Vibvigvwrayf</a>, <a href="/users/hostile_invasion">hostile_invasion</a>, <a href="/users/Fandoom_Heart">Fandoom_Heart</a>, <a href="/users/HannokiKaen">HannokiKaen</a>, <a href="/users/messalin">messalin</a>, <a href="/users/HecateKalivas">HecateKalivas</a>, <a href="/users/oriflamme">oriflamme</a>, <a href="/users/celdak18">celdak18</a>, <a href="/users/mahehe">mahehe</a>, <a href="/users/Sparkzey">Sparkzey</a>, <a href="/users/Moka_961">Moka_961</a>, <a href="/users/Grimdark_Arisen">Grimdark_Arisen</a>, <a href="/users/Saltywithwritersblock">Saltywithwritersblock</a>, <a href="/users/limpeelee">limpeelee</a>, <a href="/users/bbcat">bbcat</a>, <a href="/users/K_mimi135">K_mimi135</a>, <a href="/users/bittersblue">bittersblue</a>, <a href="/users/Solaris_Scantraxx">Solaris_Scantraxx</a>, <a href="/users/Idhren">Idhren</a>, <a href="/users/Chemarta">Chemarta</a>, <a href="/users/BBGR8">BBGR8</a>, <a href="/users/FreshDirt">FreshDirt</a>, <a href="/users/Ghostbutt33">Ghostbutt33</a>, <a href="/users/ChaseTheFreakinStars">ChaseTheFreakinStars</a>, <a href="/users/Pen_Name_Noyb">Pen_Name_Noyb</a>, <a href="/users/BleuFleur">BleuFleur</a>, <a href="/users/CallisaDawn">CallisaDawn</a>, <a href="/users/NewandOld">NewandOld</a>, <a href="/users/TacticianMark">TacticianMark</a>, <a href="/users/Asgardu">Asgardu</a>, <a href="/users/syac">syac</a>, <a href="/users/akelios">akelios</a>, <a href="/users/SealedDynasty">SealedDynasty</a>, <a href="/users/Swiftyue">Swiftyue</a>, <a href="/users/Levifold">Levifold</a>, <a href="/users/TempestKitsune">TempestKitsune</a>, <a href="/users/Dragon_Age_Fan">Dragon_Age_Fan</a>, <a href="/users/geraldAD">geraldAD</a>, <a href="/users/Sakilya">Sakilya</a>, <a href="/users/Irriella">Irriella</a>, <a href="/users/Yumemiru_hito">Yumemiru_hito</a>, <a href="/users/IllMadeKnight">IllMadeKnight</a>, <a href="/users/Jaybird_Wings">Jaybird_Wings</a>, <a href="/users/agentpiglet">agentpiglet</a>, <a href="/users/Flappycat03">Flappycat03</a>, <a href="/users/Kurvector">Kurvector</a>, <a href="/users/MidnightMixer">MidnightMixer</a>, <a href="/users/Advocate4BAMFs">Advocate4BAMFs</a>, <a href="/users/Cool_Rocks">Cool_Rocks</a>, <a href="/users/Amygdaloid07">Amygdaloid07</a>, <a href="/users/StarLost">StarLost</a>, <a href="/users/Ghlim">Ghlim</a>, <a href="/users/Renlu">Renlu</a>, <a href="/users/frodo_stole_my_ring">frodo_stole_my_ring</a>, <a href="/users/2Bmadeofglass">2Bmadeofglass</a>, <a href="/users/hydrandreams">hydrandreams</a>, <a href="/users/IncisiveRiposte">IncisiveRiposte</a>, <a href="/users/DUO_02">DUO_02</a>, <a href="/users/nex_et_nox">nex_et_nox</a>, <a href="/users/RandomGuy">RandomGuy</a>, <a href="/users/shakiya">shakiya</a>, <a href="/users/aika2020">aika2020</a>, <a href="/users/auPHE">auPHE</a>, <a href="/users/Hectopascal">Hectopascal</a>, <a href="/users/NicaMyth">NicaMyth</a>, <a href="/users/knightofdei">knightofdei</a>, <a href="/users/FunMoustache">FunMoustache</a>, <a href="/users/TheReadersGame">TheReadersGame</a>, <a href="/users/thatoneperson">thatoneperson</a>, <a href="/users/aniluv24">aniluv24</a>, <a href="/users/WorldMusic">WorldMusic</a>, <a href="/users/Mellosweet">Mellosweet</a>, <a href="/users/RikoJasmine">RikoJasmine</a>, <a href="/users/Deanlover1">Deanlover1</a>, <a href="/users/Tyranno">Tyranno</a>, <a href="/users/Ordin">Ordin</a>, <a href="/users/AkumaPrincess">AkumaPrincess</a>, <a href="/users/Sammykatza">Sammykatza</a>, <a href="/users/ChibiFelicia">ChibiFelicia</a>, <a href="/users/Brend839">Brend839</a>, <a href="/users/GrayWorld">GrayWorld</a>, <a href="/users/EllieInLove">EllieInLove</a>, <a href="/users/verboseDescription">verboseDescription</a>, <a href="/users/Edgedancer">Edgedancer</a>, <a href="/users/scapolice">scapolice</a>, <a href="/users/AvaTaggart">AvaTaggart</a>, <a href="/users/Sakurabankai">Sakurabankai</a>, <a href="/users/Lazerpie">Lazerpie</a>, <a href="/users/philona">philona</a>, <a href="/users/The_Pied_Piper">The_Pied_Piper</a>, <a href="/users/Jermani">Jermani</a>, <a href="/users/dwellin">dwellin</a>, <a href="/users/Spartaness">Spartaness</a>, <a href="/users/Sai_Cannopy">Sai_Cannopy</a>, <a href="/users/Valerii376">Valerii376</a>, <a href="/users/Blazeka">Blazeka</a>, <a href="/users/arysthaeniru">arysthaeniru</a>, <a href="/users/kat99421">kat99421</a>, <a href="/users/kpossibles">kpossibles</a>, <a href="/users/GavootTheScoot">GavootTheScoot</a>, <a href="/users/Tokoyonokuni">Tokoyonokuni</a>, <a href="/users/Shippo704">Shippo704</a>, <a href="/users/RichW">RichW</a>, <a href="/users/IRTooM">IRTooM</a>, <a href="/users/Aradow">Aradow</a>, <a href="/users/shvoop">shvoop</a>, <a href="/users/Starsilver">Starsilver</a>, <a href="/users/ATRM">ATRM</a>, <a href="/users/AnimeManiac">AnimeManiac</a>, <a href="/users/ria_green">ria_green</a>, <a href="/users/Shaydenthedude">Shaydenthedude</a>, <a href="/users/ajgryffindor">ajgryffindor</a>, <a href="/users/LovelyPrincess4">LovelyPrincess4</a>, <a href="/users/RedHeadsRock1010">RedHeadsRock1010</a>, <a href="/users/Angelcat8">Angelcat8</a>, <a href="/users/Pumpkin_Bunny">Pumpkin_Bunny</a>, <a href="/users/QuietStar">QuietStar</a>, <a href="/users/degreesofinsanity">degreesofinsanity</a>, <a href="/users/mabbofu">mabbofu</a>, <a href="/users/Soulykins">Soulykins</a>, <a href="/users/Geirhildur">Geirhildur</a>, <a href="/users/Cerokun">Cerokun</a>, <a href="/users/IncognitoPhenomenon">IncognitoPhenomenon</a>, <a href="/users/Photon51">Photon51</a>, <a href="/users/Wrath_of_Nature">Wrath_of_Nature</a>, <a href="/users/TorchPhoenix">TorchPhoenix</a>, <a href="/users/Shimanith">Shimanith</a>, <a href="/users/automn">automn</a>, <a href="/users/BonesOfBirdWings">BonesOfBirdWings</a>, <a href="/users/kazzarole">kazzarole</a>, <a href="/users/voldydoitsu">voldydoitsu</a>, <a href="/users/shipping_ruined_my_life">shipping_ruined_my_life</a>, <a href="/users/kitty2o1">kitty2o1</a>, <a href="/users/narikopathfinder">narikopathfinder</a>, <a href="/users/advait2003">advait2003</a>, <a href="/users/tunnelOFdawn">tunnelOFdawn</a>, <a href="/users/fantasprite">fantasprite</a>, <a href="/users/Talyara">Talyara</a>, <a href="/users/inuani">inuani</a>, <a href="/users/Lammstrellicon">Lammstrellicon</a>, <a href="/users/N7_Jam">N7_Jam</a>, <a href="/users/Absolem0">Absolem0</a>, <a href="/users/Myst_Silverhand">Myst_Silverhand</a>, <a href="/users/starlistic">starlistic</a>, <a href="/users/teacuptaako">teacuptaako</a>, <a href="/users/Crystallized_W">Crystallized_W</a>, <a href="/users/Heroman3003">Heroman3003</a>, <a href="/users/BlueWonder">BlueWonder</a>, <a href="/users/Colerate">Colerate</a>, <a href="/users/AbstractCows">AbstractCows</a>, <a href="/users/Victuuri_Road">Victuuri_Road</a>, <a href="/users/Yestering">Yestering</a>, <a href="/users/poisedwalrus">poisedwalrus</a>, <a href="/users/Rayvenfire12">Rayvenfire12</a>, <a href="/users/Kurohana806">Kurohana806</a>, <a href="/users/Telnan">Telnan</a>, <a href="/users/Elfhunter">Elfhunter</a>, <a href="/users/Diablotin">Diablotin</a>, <a href="/users/Anummel">Anummel</a>, <a href="/users/Jatynzel">Jatynzel</a>, <a href="/users/8bluebell8">8bluebell8</a>, <a href="/users/aniaorome">aniaorome</a>, <a href="/users/Foibles_and_Follies">Foibles_and_Follies</a>, <a href="/users/MaoCha">MaoCha</a>, <a href="/users/buru">buru</a>, <a href="/users/StarrLightning">StarrLightning</a>, <a href="/users/spacetimeenigma">spacetimeenigma</a>, <a href="/users/QueenKing">QueenKing</a>, <a href="/users/Annapods">Annapods</a>, <a href="/users/Eahei">Eahei</a>, <a href="/users/ArtisticEntropy">ArtisticEntropy</a>, <a href="/users/sidana27">sidana27</a>, <a href="/users/noes_cape">noes_cape</a>, <a href="/users/cinderous_scrivenings">cinderous_scrivenings</a>, <a href="/users/eolus">eolus</a>, <a href="/users/LuminousDelusions">LuminousDelusions</a>, <a href="/users/Rowlet">Rowlet</a>, <a href="/users/Heaven_is_a_place_on_earth">Heaven_is_a_place_on_earth</a>, <a href="/users/MikamiMoon">MikamiMoon</a>, <a href="/users/sheagar">sheagar</a>, <a href="/users/bbberry12">bbberry12</a>, <a href="/users/redhatter54">redhatter54</a>, <a href="/users/Freezing_Of_a_Heart">Freezing_Of_a_Heart</a>, <a href="/users/cacau1005">cacau1005</a>, <a href="/users/Ioeth">Ioeth</a>, <a href="/users/Purrtato">Purrtato</a>, <a href="/users/zoewinter1">zoewinter1</a>, <a href="/users/Okami_g">Okami_g</a>, <a href="/users/Mocha_and_Marx">Mocha_and_Marx</a>, <a href="/users/beantheredonethat">beantheredonethat</a>, <a href="/users/FeminineBrain">FeminineBrain</a>, <a href="/users/eeveepkmnfan">eeveepkmnfan</a>, <a href="/users/Seele">Seele</a>, <a href="/users/ToomanyOTPsbutI_love_all_of_them">ToomanyOTPsbutI_love_all_of_them</a>, <a href="/users/BlankFeathers">BlankFeathers</a>, <a href="/users/mia826">mia826</a>, <a href="/users/arcticapple">arcticapple</a>, <a href="/users/ITravelByTardis">ITravelByTardis</a>, <a href="/users/Too_Many_Usernames">Too_Many_Usernames</a>, <a href="/users/Happerry">Happerry</a>, <a href="/users/HowlingGuardian">HowlingGuardian</a>, <a href="/users/tearlessNevermore">tearlessNevermore</a>, <a href="/users/Azulish">Azulish</a>, <a href="/users/MlleKlausermans">MlleKlausermans</a>, <a href="/users/DPRenFTW">DPRenFTW</a>, <a href="/users/TiredRazzberry">TiredRazzberry</a>, <a href="/users/Elijah">Elijah</a>, <a href="/users/ultrabies">ultrabies</a>, <a href="/users/milifilou">milifilou</a>, <a href="/users/SeaCatAnna">SeaCatAnna</a>, <a href="/users/SapphireStream">SapphireStream</a>, <a href="/users/jjcc1113">jjcc1113</a>, <a href="/users/princesskel">princesskel</a>, <a href="/users/Maquette">Maquette</a>, <a href="/users/Locklain">Locklain</a>, <a href="/users/Animapower">Animapower</a>, <a href="/users/Saytherin">Saytherin</a>, <a href="/users/Canisse">Canisse</a>, <a href="/users/TSoL_iNSaNITY">TSoL_iNSaNITY</a>, <a href="/users/Janneia">Janneia</a>, <a href="/users/Unorganized_Shelf">Unorganized_Shelf</a>, <a href="/users/Lorical">Lorical</a>, <a href="/users/Levante">Levante</a>, <a href="/users/OHSQUASH">OHSQUASH</a>, <a href="/users/Jelaza">Jelaza</a>, <a href="/users/Anataeus">Anataeus</a>, <a href="/users/ladopa">ladopa</a>, <a href="/users/ChessKnight">ChessKnight</a>, <a href="/users/TediousLibrarian">TediousLibrarian</a>, <a href="/users/nykil">nykil</a>, <a href="/users/LeFang">LeFang</a>, <a href="/users/KnightPaco">KnightPaco</a>, <a href="/users/ChaoteToTheCore">ChaoteToTheCore</a>, <a href="/users/Rorb_Lalorb">Rorb_Lalorb</a>, <a href="/users/victorswreath">victorswreath</a>, <a href="/users/Harroc">Harroc</a>, <a href="/users/Riza_Wolf12">Riza_Wolf12</a>, <a href="/users/IDontEvenFandom">IDontEvenFandom</a>, <a href="/users/tsuwu">tsuwu</a>, <a href="/users/fistman_sunshine">fistman_sunshine</a>, <a href="/users/ArchaicNightfall">ArchaicNightfall</a>, <a href="/users/P_0TAT0_S">P_0TAT0_S</a>, <a href="/users/sa_turns">sa_turns</a>, <a href="/users/zenlove11">zenlove11</a>, <a href="/users/Stale_Goose">Stale_Goose</a>, <a href="/users/werewolvesRvalid">werewolvesRvalid</a>, <a href="/users/abbzeh">abbzeh</a>, <a href="/users/Lady_of_Bronze">Lady_of_Bronze</a>, <a href="/users/Crimson13">Crimson13</a>, <a href="/users/TheAmazingSpiderTeen">TheAmazingSpiderTeen</a>, <a href="/users/sevensages72000">sevensages72000</a>, <a href="/users/Juliedoo">Juliedoo</a>, <a href="/users/theshoutingslytherin">theshoutingslytherin</a>, <a href="/users/Sealunis">Sealunis</a>, <a href="/users/Rebeccaknowsyou">Rebeccaknowsyou</a>, <a href="/users/Rumorunderoath">Rumorunderoath</a>, <a href="/users/bibliofanatic">bibliofanatic</a>, <a href="/users/shadowalex2000">shadowalex2000</a>, <a href="/users/Eovin">Eovin</a>, <a href="/users/TiredSmolPrince">TiredSmolPrince</a>, <a href="/users/graeyre">graeyre</a>, <a href="/users/inkwellofstars">inkwellofstars</a>, <a href="/users/Gay_lover343">Gay_lover343</a>, <a href="/users/MinMin_Minah">MinMin_Minah</a>, <a href="/users/Acixs">Acixs</a>, <a href="/users/Nu_toamna">Nu_toamna</a>, <a href="/users/swag_canada">swag_canada</a>, <a href="/users/CrossBladeWing">CrossBladeWing</a>, <a href="/users/zegirlthatlikeslongstories">zegirlthatlikeslongstories</a>, <a href="/users/Soulborg63">Soulborg63</a>, <a href="/users/dytabytes">dytabytes</a>, <a href="/users/iluvcelebi">iluvcelebi</a>, <a href="/users/twinklehana">twinklehana</a>, <a href="/users/LadyMerlin">LadyMerlin</a>, <a href="/users/Illurine">Illurine</a>, <a href="/users/carpha">carpha</a>, <a href="/users/LuminatedEmber">LuminatedEmber</a>, <a href="/users/serinu">serinu</a>, <a href="/users/ZeeMastermind">ZeeMastermind</a>, <a href="/users/Yuu3">Yuu3</a>, <a href="/users/Voidless">Voidless</a>, <a href="/users/AbnormalVulpes">AbnormalVulpes</a>, <a href="/users/Chimeara">Chimeara</a>, <a href="/users/Risachi">Risachi</a>, <a href="/users/Interruptimoooooo">Interruptimoooooo</a>, <a href="/users/Ghostmilky">Ghostmilky</a>, <a href="/users/GambolVanguard">GambolVanguard</a>, <a href="/users/procrascarnations">procrascarnations</a>, <a href="/users/SilverPhoenixFlame">SilverPhoenixFlame</a>, <a href="/users/kookiepup12">kookiepup12</a>, <a href="/users/WillowWispFlame">WillowWispFlame</a>, <a href="/users/VioletLilies">VioletLilies</a>, <a href="/users/LlamaLamb72">LlamaLamb72</a>, <a href="/users/LectorEl">LectorEl</a>, <a href="/users/inanimaterambles">inanimaterambles</a>, <a href="/users/sunlightlover">sunlightlover</a>, <a href="/users/obliviouseloquence">obliviouseloquence</a>, <a href="/users/Ekgthe1st">Ekgthe1st</a>, <a href="/users/echol">echol</a>, <a href="/users/zarinthel">zarinthel</a>, <a href="/users/TheLennyBunny">TheLennyBunny</a>, <a href="/users/BookAddictAndLoner">BookAddictAndLoner</a>, <a href="/users/Lolle">Lolle</a>, <a href="/users/ameliafromafairytale">ameliafromafairytale</a>, <a href="/users/AllytheGreat">AllytheGreat</a>, <a href="/users/StandAloneFemale">StandAloneFemale</a>, <a href="/users/AstroGeko">AstroGeko</a>, <a href="/users/WhatTheDeafManHeard">WhatTheDeafManHeard</a>, <a href="/users/dixdozen">dixdozen</a>, <a href="/users/jenesaisrien">jenesaisrien</a>, <a href="/users/wovenstarlight">wovenstarlight</a>, <a href="/users/redrobin1989">redrobin1989</a>, <a href="/users/nessa11997">nessa11997</a>, <a href="/users/TophatsGalore">TophatsGalore</a>, <a href="/users/Keyrim">Keyrim</a>, <a href="/users/10scheherazade01">10scheherazade01</a>, <a href="/users/MadderRed">MadderRed</a>, <a href="/users/Atashi_wa_Kimi">Atashi_wa_Kimi</a>, <a href="/users/soarz">soarz</a>, <a href="/users/poetical_nonsense">poetical_nonsense</a>, <a href="/users/holdyholdy">holdyholdy</a>, <a href="/users/Guest182769">Guest182769</a>, <a href="/users/HowShouldIKnowboutLife">HowShouldIKnowboutLife</a>, <a href="/users/Momoirokitsune">Momoirokitsune</a>, <a href="/users/TheEdifier">TheEdifier</a>, <a href="/users/hrosanna">hrosanna</a>, <a href="/users/B0nk3rs">B0nk3rs</a>, <a href="/users/ArdentAspen2">ArdentAspen2</a>, <a href="/users/forbiddenSender">forbiddenSender</a>, <a href="/users/nxtelight">nxtelight</a>, <a href="/users/ColorfulGrey">ColorfulGrey</a>, <a href="/users/QueanKatt">QueanKatt</a>, <a href="/users/matterglob">matterglob</a>, <a href="/users/RubyChimera">RubyChimera</a>, <a href="/users/Silvermoon_of_Forestclan">Silvermoon_of_Forestclan</a>, <a href="/users/Obi_Sean_Kenobi">Obi_Sean_Kenobi</a>, <a href="/users/LunaLavenderSkies">LunaLavenderSkies</a>, <a href="/users/Oceans_pebble">Oceans_pebble</a>, <a href="/users/reol">reol</a>, <a href="/users/GoblinCatKC">GoblinCatKC</a>, <a href="/users/SnakeofMedusa">SnakeofMedusa</a>, <a href="/users/Eldritch_kun">Eldritch_kun</a>, <a href="/users/Menokai">Menokai</a>, <a href="/users/TheLachnessMonster">TheLachnessMonster</a>, <a href="/users/Eye_Heart">Eye_Heart</a>, <a href="/users/yaichi">yaichi</a>, <a href="/users/Silver777Tongue">Silver777Tongue</a>, <a href="/users/pohpohpotato">pohpohpotato</a>, <a href="/users/Flaremage">Flaremage</a>, <a href="/users/APhantomReader">APhantomReader</a>, <a href="/users/Kikialaxis">Kikialaxis</a>, <a href="/users/mikochan_noda">mikochan_noda</a>, <a href="/users/splazbee">splazbee</a>, <a href="/users/rossettes">rossettes</a>, <a href="/users/YepTheRebel">YepTheRebel</a>, <a href="/users/LeahElizabeth89">LeahElizabeth89</a>, <a href="/users/TiniGene">TiniGene</a>, <a href="/users/Mini_N">Mini_N</a>, <a href="/users/crabapplered">crabapplered</a>, <a href="/users/kaz_2y5_impala">kaz_2y5_impala</a>, <a href="/users/solarwings">solarwings</a>, <a href="/users/Sydeon">Sydeon</a>, <a href="/users/Lady_Lucirnaga">Lady_Lucirnaga</a>, <a href="/users/Dr_Valor">Dr_Valor</a>, <a href="/users/phantomwolf000">phantomwolf000</a>, <a href="/users/natsukyi">natsukyi</a>, <a href="/users/Maberry">Maberry</a>, <a href="/users/Feddlefew">Feddlefew</a>, <a href="/users/Symxalia">Symxalia</a>, <a href="/users/Wenzku">Wenzku</a>, <a href="/users/ubwPersona">ubwPersona</a>, <a href="/users/xane0">xane0</a>, <a href="/users/Knockoutroundabout">Knockoutroundabout</a>, <a href="/users/tabletoptime">tabletoptime</a>, <a href="/users/Dragonfire719">Dragonfire719</a>, <a href="/users/unsafestpear">unsafestpear</a>, <a href="/users/Gelatik">Gelatik</a>, <a href="/users/AiryAri">AiryAri</a>, <a href="/users/SimZim">SimZim</a>, <a href="/users/SpecialKai">SpecialKai</a>, <a href="/users/Devourer_of_Tales">Devourer_of_Tales</a>, <a href="/users/SugaSugar">SugaSugar</a>, <a href="/users/Lazy_Creativity">Lazy_Creativity</a>, <a href="/users/weslane">weslane</a>, <a href="/users/LepusCor">LepusCor</a>, <a href="/users/Sunnylighter">Sunnylighter</a>, <a href="/users/ShadowArchon">ShadowArchon</a>, <a href="/users/aeonastra">aeonastra</a>, <a href="/users/Rathenon">Rathenon</a>, <a href="/users/Antea21">Antea21</a>, <a href="/users/gearsky">gearsky</a>, <a href="/users/Haely_Potter">Haely_Potter</a>, <a href="/users/GoldGreen">GoldGreen</a>, <a href="/users/Ent">Ent</a>, <a href="/users/Trashworks">Trashworks</a>, <a href="/users/Mochikoenda">Mochikoenda</a>, <a href="/users/CaroBunny23">CaroBunny23</a>, <a href="/users/Lis_the_reader">Lis_the_reader</a>, <a href="/users/WerewolvesAreReal">WerewolvesAreReal</a>, <a href="/users/Crude_Mood">Crude_Mood</a>, <a href="/users/Celevon">Celevon</a>, <a href="/users/Tiamat851v5n">Tiamat851v5n</a>, <a href="/users/DrJ">DrJ</a>, <a href="/users/SelenaSkyheart">SelenaSkyheart</a>, <a href="/users/FlyingPotato63">FlyingPotato63</a>, <a href="/users/a_walnut">a_walnut</a>, <a href="/users/talcat">talcat</a>, <a href="/users/Grand_Marxc">Grand_Marxc</a>, <a href="/users/nbyk">nbyk</a>, <a href="/users/3dward">3dward</a>, <a href="/users/JebusCouch">JebusCouch</a>, <a href="/users/RMXStudio">RMXStudio</a>, <a href="/users/Sergito">Sergito</a>, <a href="/users/ThatPersonWhoExists">ThatPersonWhoExists</a>, <a href="/users/SheepySeconds">SheepySeconds</a>, <a href="/users/fox_lover">fox_lover</a>, <a href="/users/Tayto778">Tayto778</a>, <a href="/users/shio_san">shio_san</a>, <a href="/users/daiyu_amaya">daiyu_amaya</a>, <a href="/users/Noveloid505">Noveloid505</a>, <a href="/users/Castor_Raiden">Castor_Raiden</a>, <a href="/users/Fayah">Fayah</a>, <a href="/users/Vnovice7">Vnovice7</a>, <a href="/users/greenest_bean">greenest_bean</a>, <a href="/users/Mitsuhiku">Mitsuhiku</a>, <a href="/users/The_Button_Harlequin">The_Button_Harlequin</a>, <a href="/users/cookie_from_heck">cookie_from_heck</a>, <a href="/users/Ravelights">Ravelights</a>, <a href="/users/L1ghts55">L1ghts55</a>, <a href="/users/Xandynz">Xandynz</a>, <a href="/users/ekabw97">ekabw97</a>, <a href="/users/redhazel">redhazel</a>, <a href="/users/Despondent_Rat">Despondent_Rat</a>, <a href="/users/ShinXcrown">ShinXcrown</a>, <a href="/users/lunabyrd">lunabyrd</a>, <a href="/users/TheScienceCat">TheScienceCat</a>, <a href="/users/Zyxaliath">Zyxaliath</a>, <a href="/users/LadyAshetzi">LadyAshetzi</a>, <a href="/users/Hatelikingbatman">Hatelikingbatman</a>, <a href="/users/kageddd">kageddd</a>, <a href="/users/pjzza">pjzza</a>, <a href="/users/Pom_Rania">Pom_Rania</a>, <a href="/users/Shidake">Shidake</a>, <a href="/users/nokkochi">nokkochi</a>, <a href="/users/meowmeowmeow222">meowmeowmeow222</a>, <a href="/users/caeulio">caeulio</a>, <a href="/users/Lamellar">Lamellar</a>, <a href="/users/DeathByCocoa">DeathByCocoa</a>, <a href="/users/Annab23">Annab23</a>, <a href="/users/starless_ocean">starless_ocean</a>, <a href="/users/cigi">cigi</a>, <a href="/users/rnr4ev">rnr4ev</a>, <a href="/users/TiredMeis">TiredMeis</a>, <a href="/users/ardnajela">ardnajela</a>, <a href="/users/EternallyDescending">EternallyDescending</a>, <a href="/users/cherrylurker">cherrylurker</a>, <a href="/users/Chuchutu">Chuchutu</a>, <a href="/users/stephenc966">stephenc966</a>, <a href="/users/Lunar_Hikari">Lunar_Hikari</a>, <a href="/users/Reddiamond29">Reddiamond29</a>, <a href="/users/Reikey">Reikey</a>, <a href="/users/youlookhellafine">youlookhellafine</a>, <a href="/users/MoDSarah">MoDSarah</a>, <a href="/users/Dukeofnachos">Dukeofnachos</a>, <a href="/users/heybudster">heybudster</a>, <a href="/users/NoOneLeftStanding">NoOneLeftStanding</a>, <a href="/users/FelicitousVixen">FelicitousVixen</a>, <a href="/users/ZioWolfregent">ZioWolfregent</a>, <a href="/users/WaffleB0t">WaffleB0t</a>, <a href="/users/Savests">Savests</a>, <a href="/users/Sunny86">Sunny86</a>, <a href="/users/Mek_Night">Mek_Night</a>, <a href="/users/0Lazuli0">0Lazuli0</a>, <a href="/users/sugoid">sugoid</a>, <a href="/users/SammyLerma">SammyLerma</a>, <a href="/users/Ayacchii">Ayacchii</a>, <a href="/users/HybridKylin">HybridKylin</a>, <a href="/users/momoi">momoi</a>, <a href="/users/mymuffyincat">mymuffyincat</a>, <a href="/users/Wisetypewriter">Wisetypewriter</a>, <a href="/users/Kelton200143">Kelton200143</a>, <a href="/users/Wuga">Wuga</a>, <a href="/users/ShinyAltaria">ShinyAltaria</a>, <a href="/users/WinterRose21">WinterRose21</a>, <a href="/users/simgrim">simgrim</a>, <a href="/users/ch0bs">ch0bs</a>, <a href="/users/khepur">khepur</a>, <a href="/users/y_uu">y_uu</a>, <a href="/users/DeadHero">DeadHero</a>, <a href="/users/grimtidings">grimtidings</a>, <a href="/users/pine_ster">pine_ster</a>, <a href="/users/Femme_Fatality">Femme_Fatality</a>, <a href="/users/CrimsonCrystalConstellation">CrimsonCrystalConstellation</a>, <a href="/users/Faceball_95">Faceball_95</a>, <a href="/users/Fluffyladylady">Fluffyladylady</a>, <a href="/users/Lordlyhour">Lordlyhour</a>, <a href="/users/GoldenFalls">GoldenFalls</a>, <a href="/users/aloof_intheinternet">aloof_intheinternet</a>, <a href="/users/Spirit_Kin">Spirit_Kin</a>, <a href="/users/antara756">antara756</a>, <a href="/users/thousandstars">thousandstars</a>, <a href="/users/SwordZword">SwordZword</a>, <a href="/users/Evilkitten3">Evilkitten3</a>, <a href="/users/Suzy_Bro">Suzy_Bro</a>, <a href="/users/lesbianedgeworth">lesbianedgeworth</a>, <a href="/users/MathiasKejseren">MathiasKejseren</a>, <a href="/users/yihou">yihou</a>, <a href="/users/7thScythe">7thScythe</a>, <a href="/users/Secret_H">Secret_H</a>, <a href="/users/Resinpath">Resinpath</a>, <a href="/users/foible">foible</a>, <a href="/users/NameIt">NameIt</a>, <a href="/users/Sleepy_9000">Sleepy_9000</a>, <a href="/users/XxxBellaBellaxxX">XxxBellaBellaxxX</a>, <a href="/users/Shimmer">Shimmer</a>, <a href="/users/Rangrids">Rangrids</a>, <a href="/users/Beastrage">Beastrage</a>, <a href="/users/BJoker">BJoker</a>, <a href="/users/Tactile">Tactile</a>, <a href="/users/Maggisakura">Maggisakura</a>, <a href="/users/jitterbug0">jitterbug0</a>, <a href="/users/areyouserious">areyouserious</a>, <a href="/users/B_Cavendish">B_Cavendish</a>, <a href="/users/sunfirewings">sunfirewings</a>, <a href="/users/A_Normal_User">A_Normal_User</a>, <a href="/users/RandomCatStar">RandomCatStar</a>, <a href="/users/cicsummers">cicsummers</a>, <a href="/users/rhodonitewitch">rhodonitewitch</a>, <a href="/users/ariihen">ariihen</a>, <a href="/users/SweetAsLaffyTaffy">SweetAsLaffyTaffy</a>, <a href="/users/AyameEcho">AyameEcho</a>, <a href="/users/Sly_Slytherin_in_da_house">Sly_Slytherin_in_da_house</a>, <a href="/users/ToBeorNotto_Ohforgetit">ToBeorNotto_Ohforgetit</a>, <a href="/users/Geeneelee">Geeneelee</a>, <a href="/users/mochidrops">mochidrops</a>, <a href="/users/MemeDreams">MemeDreams</a>, <a href="/users/pinkpiano26">pinkpiano26</a>, <a href="/users/The_Truth_Or_Falsity">The_Truth_Or_Falsity</a>, <a href="/users/kenamailani">kenamailani</a>, <a href="/users/Bleak98">Bleak98</a>, <a href="/users/ChaoticallyAwkward">ChaoticallyAwkward</a>, <a href="/users/Acidwing">Acidwing</a>, <a href="/users/QTW">QTW</a>, <a href="/users/softgunch">softgunch</a>, <a href="/users/letspanic">letspanic</a>, <a href="/users/Oldseablues">Oldseablues</a>, <a href="/users/Kellakazoo">Kellakazoo</a>, <a href="/users/Minatos_Legacy">Minatos_Legacy</a>, <a href="/users/YouRanForIt">YouRanForIt</a>, <a href="/users/StealthyPeacock">StealthyPeacock</a>, <a href="/users/2tarOfMyHeart">2tarOfMyHeart</a> and <a href="/users/Katyuam">Katyuam</a></span> as well as 3381 guests left kudos on this work! <span class="kudos_expanded hidden"><a id="kudos_collapser" href="#">(collapse)</a></span>
                            </p>
                        </div>
                        <div id="add_comment_placeholder" title="top level comment">
                            <div id="add_comment">
                                <!-- expects the local variables comment, commentable, and button_name -->
                                <div class="post comment" id="comment_form_for_26640231">
                                    <form id="comment_for_26640231" class="new_comment" action="/chapters/26640231/comments" accept-charset="UTF-8" method="post" name="comment_for_26640231">
                                        <input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="mOIlmErw6PVov2WEmzPkwGCptUG6CxJzGM90CBL0PHrSTvwVmLjunDejSKXjCjK6IKNJz31k1VS4E2QXVNpj4A==" />
                                        <fieldset>
                                            <legend>Post Comment</legend>
                                            <dl>
                                                <dt class="landmark">
                                                    Note:
                                                </dt>
                                                <dd class="instructions comment_form">
                                                    All fields are required. Your email address will not be published.
                                                </dd>
                                                <dt>
                                                    <label for="comment_name_for_26640231">Name:</label>
                                                </dt>
                                                <dd>
                                                    <input id="comment_name_for_26640231" type="text" name="comment[name]" /> 
                                                    <script>
                                                    <![CDATA[
                                                    var validation_for_comment_name_for_26640231=new LiveValidation('comment_name_for_26640231',{wait:500,onlyOnBlur:false});validation_for_comment_name_for_26640231.add(Validate.Presence,{"failureMessage":"Please enter your name.","validMessage":""});
                                                    ]]>
                                                    </script>
                                                </dd>
                                                <dt>
                                                    <label for="comment_email_for_26640231">Email:</label>
                                                </dt>
                                                <dd>
                                                    <input id="comment_email_for_26640231" type="text" name="comment[email]" /> 
                                                    <script>
                                                    <![CDATA[
                                                    var validation_for_comment_email_for_26640231=new LiveValidation('comment_email_for_26640231',{wait:500,onlyOnBlur:false});validation_for_comment_email_for_26640231.add(Validate.Presence,{"failureMessage":"Please enter your email address.","validMessage":""});
                                                    ]]>
                                                    </script>
                                                </dd>
                                            </dl>
                                            <p>
                                                <label for="comment_content_for_26640231" class="landmark">Comment</label> 
                                                <textarea id="comment_content_for_26640231" class="comment_form observe_textlength" title="Enter Comment" name="comment[comment_content]"></textarea> <input type="hidden" id="controller_name_for_26640231" name="controller_name" value="chapters" />
                                            </p>
                                            <p class="character_counter">
                                                <span id="comment_content_for_26640231_counter" class="value" data-maxlength="10000" aria-live="polite" aria-valuemax="10000" aria-valuenow="comment_content_for_26640231">10000</span> characters left
                                            </p>
                                            <script>
                                            <![CDATA[
                                            var validation_for_comment_content_for_26640231=new LiveValidation('comment_content_for_26640231',{wait:500,onlyOnBlur:false});validation_for_comment_content_for_26640231.add(Validate.Presence,{"failureMessage":"Brevity is the soul of wit, but we need your comment to have text in it.","validMessage":""});validation_for_comment_content_for_26640231.add(Validate.Length,{"maximum":"10000","tooLongMessage":"must be less than 10000 characters long."});
                                            ]]>
                                            </script>
                                            <p class="submit actions">
                                                <input type="submit" name="commit" value="Comment" id="comment_submit_for_26640231" data-disable-with="Please wait..." />
                                            </p>
                                        </fieldset>
                                    </form>
                                </div>
                                <div class="clear"></div>
                            </div>
                        </div><!-- If we have javascript, here is where the comments will be spiffily inserted -->
                        <!-- If not, and show_comments is true, here is where the comments will be rendered -->
                        <div id="comments_placeholder" style="display:none;"></div>
                    </div><!-- END comments -->
                    <!-- END comment section -->
                    <div class="clear">
                        <!--presentational-->
                    </div>
                </div><!-- END main -->
            </div><!-- BEGIN footer -->
            <div id="footer" role="contentinfo" class="region">
                <h3 class="landmark heading">
                    Footer
                </h3>
                <ul class="navigation actions" role="navigation">
                    <li class="module group">
                        <h4 class="heading">
                            About the Archive
                        </h4>
                        <ul class="menu">
                            <li>
                                <a href="/site_map">Site Map</a>
                            </li>
                            <li>
                                <a href="/diversity">Diversity Statement</a>
                            </li>
                            <li>
                                <a href="/tos">Terms of Service</a>
                            </li>
                            <li>
                                <a href="/dmca">DMCA Policy</a>
                            </li>
                        </ul>
                    </li>
                    <li class="module group">
                        <h4 class="heading">
                            Contact Us
                        </h4>
                        <ul class="menu">
                            <li>
                                <a href="/abuse_reports/new">Report Abuse</a>
                            </li>
                            <li>
                                <a href="/support">Technical Support and Feedback</a>
                            </li>
                        </ul>
                    </li>
                    <li class="module group">
                        <h4 class="heading">
                            Development
                        </h4>
                        <ul class="menu">
                            <li>
                                <a href="https://github.com/otwcode/otwarchive/commits/v0.9.282.1">otwarchive v0.9.282.1</a>
                            </li>
                            <li>
                                <a href="/known_issues">Known Issues</a>
                            </li>
                            <li>
                                <a href="http://www.gnu.org/licenses/gpl-2.0.html" title="View License">GPL</a> by the <a href="http://transformativeworks.org/" title="The Organization for Transformative Works">OTW</a>
                            </li>
                        </ul>
                    </li>
                </ul>
            </div><!-- END footer -->
        </div><!-- check to see if this controller/action allow tinymce before we load the gigantor js; see application_helper -->
    </body>
</html>