-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembedded_db_stats.json
More file actions
2607 lines (2607 loc) · 78.2 KB
/
Copy pathembedded_db_stats.json
File metadata and controls
2607 lines (2607 loc) · 78.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"total_entries": 30466,
"file_sizes": {
"d3fc0n6_embedded.lua": 219460,
"external_combined_embedded.lua": 650072,
"joekiller_embedded.lua": 136909,
"megascat_embedded.lua": 671679,
"qfoxb_embedded.lua": 58597,
"sleepy_ext_embedded.lua": 37115,
"sleepy_main_embedded.lua": 62118,
"sleepy_nullc0re_embedded.lua": 28067,
"tf2bd_official_embedded.lua": 180111,
"tfcl_combined_lua.lua": 3651744
},
"unique_sources": {
"d3fc0n6 Cheater List": 2774,
"Sleepy External List": 242,
"Sleepy Cheater List": 558,
"TF2BD Official": 1971,
"joekiller Cheater List": 1504,
"qfoxb Cheater List": 731,
"Sleepy Nullc0re List": 241,
"Rijin Cheater List": 22445
},
"unique_reasons": {
"Cheater (d3fc0n6)": 2632,
"Cheater (Sleepy External) - running a lbox youtube channel // https://www.youtube.com/@Sanses64": 4,
"Cheater (Sleepy) - fakelag": 10,
"Cheater (Sleepy) - [GROUP BAN] RIJIN USER (103582791473349160) | Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 39,
"Bot (TF2BD Official)": 1623,
"Cheater (d3fc0n6) | Bot (TF2BD Official)": 36,
"Cheater (d3fc0n6) | Cheater (Sleepy) - bro's literally named pasteware.": 1,
"Cheater (Sleepy External) - [GROUP BAN] koth_harvest (103582791474223707)": 34,
"Cheater (d3fc0n6) | Cheater (joekiller)": 6,
"Cheater (Sleepy External) - [GROUP BAN] OM NOM \u0427\u0412\u041a \u0410\u041c \u041d\u042f\u041c (103582791473998229)": 21,
"Cheater (joekiller) (Racist)": 92,
"Cheater (Sleepy) - doubletap": 7,
"Cheater (joekiller)": 1365,
"Bot (TF2BD Official) (Racist)": 113,
"Cheater (Sleepy) - [GROUP BAN] deer_dance (103582791473056449)": 27,
"Cheater (d3fc0n6) | Cheater (Sleepy) - [GROUP BAN] RIJIN USER (103582791473349160) | Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 17,
"Cheater (Sleepy External) - response needed: RHD7JLnAsA8": 2,
"Cheater (Sleepy)": 26,
"Cheater (Sleepy) (Suspicious) - [association] queued with tempest": 2,
"Cheater (Sleepy) - blatantly cheating - heavy aimbot.": 2,
"Cheater (Sleepy) (Cheater | Racist) - blatantly cheating - antiaiming sniper.": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - [GROUP BAN] serious players with big money (103582791472903194)": 11,
"Cheater (Sleepy) - aimbotting.": 2,
"Cheater (Sleepy) - prefiring people he has no intel on": 2,
"Cheater (Sleepy) (Cheater | Racist) - **9** sourcebans, 4 of which are cheating related": 2,
"Cheater (d3fc0n6) | Cheater (qfoxb)": 7,
"Cheater (d3fc0n6) | Cheater (Sleepy) - aimbotting + rage stack with SunnyD-Pad ([U:1:207152741]), (utf8) [U:1:145032342": 1,
"Cheater (Sleepy) - agressive aimbot": 4,
"Cheater (Sleepy) - general aim": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - [GROUP BAN] HVH GODZ FAN KKKLUB (103582791471794977)": 4,
"Cheater (qfoxb) | Bot (TF2BD Official)": 107,
"Cheater (Sleepy) - aim, bt": 2,
"Bot (TF2BD Official) (Exploiter)": 8,
"Cheater (Sleepy) - ragehacking | Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 1,
"Cheater (qfoxb)": 483,
"Cheater (Sleepy) - https://www.youtube.com/watch?v=SkiLwWypoKg": 2,
"Cheater (Sleepy) - [GROUP BAN] Protogens Of 2Fort (103582791473512066)": 39,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - [GROUP BAN] OM NOM \u0427\u0412\u041a \u0410\u041c \u041d\u042f\u041c (103582791473998229)": 3,
"Cheater (Sleepy) - aimbotting": 2,
"Cheater (Sleepy External) - [GROUP BAN] serious players with big money (103582791472903194)": 21,
"Bot (TF2BD Official) (Cheater | Racist)": 214,
"Cheater (Sleepy) (Suspicious) - [association] possibly queued with Syn (U:1:1273939688)": 2,
"Cheater (Sleepy) - aim": 29,
"Cheater (Sleepy) - backtrack": 4,
"Cheater (d3fc0n6) | Cheater (Sleepy)": 2,
"Cheater (Sleepy) (Suspicious) - aimbot": 2,
"Cheater (Sleepy External) - [GROUP BAN] HVH GODZ FAN KKKLUB (103582791471794977)": 43,
"Cheater (Sleepy) (Suspicious) - [association] queued with Timing ([U:1:184360469])": 2,
"Cheater (Sleepy) - fakelag + ragehacking.": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - rage stacking w/ 580 ([U:1:1095741268])": 1,
"Cheater (Sleepy) - ragehacking": 18,
"Cheater (d3fc0n6) | Cheater (Sleepy) - aimbotting, doubletap, critkey": 1,
"Cheater (Sleepy) - 180fov 'closet'": 2,
"Cheater (Sleepy External) - [GROUP BAN] SCHL\u00c4GER CREW\udb40\udc58\udb40\udc58 (103582791469779428)": 17,
"Cheater (Sleepy) - backtrack, aim": 2,
"Cheater (Sleepy) - backed by fiona + 3 others; **blatantly** cheating.": 2,
"Cheater (Sleepy) - 180fov aimbot": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - aimbotting + rage stack with ceryel ([U:1:95556303]), (utf8) [U:1:1450323428], s": 1,
"Cheater (Sleepy) - antiaiming": 2,
"Cheater (Sleepy) - antiaim": 2,
"Cheater (joekiller) (Racist) | Bot (TF2BD Official) (Racist)": 1,
"Cheater (Sleepy) - backtrack, 500 ping.": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - havent seen it but most likely 95% cheating (see comment section)": 1,
"Cheater (Sleepy) - proj aim and crit": 2,
"Cheater (Sleepy) - 180fov proj aim": 2,
"Cheater (Sleepy) (Suspicious) - queued with crit bucket ": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - Edging people they have no intelligence on, aimbot, 'gg nn' after game": 1,
"Cheater (qfoxb) (Racist)": 10,
"Cheater (d3fc0n6) | Cheater (Sleepy) - seen hvhing in a casual match": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy) (Suspicious) - marked as cheater previously and don't know why; investigate later": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy External) (Cheater | Exploiter | Racist) - lmaobox user and various server bans": 1,
"Cheater (qfoxb) (Racist) | Cheater (Sleepy) - aim": 1,
"Cheater (Sleepy) - dude hvh'ed against bots and lost": 2,
"Bot (TF2BD Official) - https://rgl.gg/Public/PlayerProfile.aspx?p=76561198246427928": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - edge-aiming / lbox user": 1,
"Cheater (qfoxb) | Cheater (joekiller)": 79,
"Cheater (Sleepy) - general aim and esp": 2,
"Cheater (Sleepy) - see livestream 4-11": 2,
"Cheater (Sleepy External) - rijin user confirmed": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - aimbot + backtrack": 1,
"Cheater (Sleepy) (Suspicious) - weird aim, instant reaction; dogshit movement.": 2,
"Cheater (Sleepy) - ragestack": 4,
"Bot (TF2BD Official) (Racist) - https://web.archive.org/web/20200805234122/https://steamcommunity.com/id/PazerFr": 2,
"Cheater (d3fc0n6) | Cheater (qfoxb) | Cheater (joekiller) | Cheater (Sleepy) - ACP-Dashie, famous cheater": 1,
"Cheater (Sleepy) (Cheater | Racist) - blatantly cheating - 180fov aimbot.": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - [GROUP BAN] SCHL\u00c4GER CREW\udb40\udc58\udb40\udc58 (103582791469779428)": 3,
"Cheater (d3fc0n6) | Cheater (Sleepy) - autobhop, aim": 1,
"Cheater (Sleepy) - aimbotting + rage stack with SunnyD-Pad ([U:1:207152741]), (utf8) [U:1:145032342": 3,
"Cheater (Sleepy) - antiaiming, backtracking, etc; fails to resolve CYOAPDA though": 2,
"Cheater (d3fc0n6) | Bot (TF2BD Official) (Racist)": 4,
"Cheater (joekiller) (Suspicious)": 6,
"Cheater (d3fc0n6) | Cheater (Sleepy) - aim, blatant // also known as Octovender": 1,
"Cheater (Sleepy) - edging (aimbot), legitAA": 2,
"Cheater (Sleepy) - prefiring no intel players on wide swing at around 1~2 ticks": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - general cheating": 1,
"Cheater (d3fc0n6) | Cheater (joekiller) (Racist)": 2,
"Cheater (d3fc0n6) | Bot (TF2BD Official) - https://www.youtube.com/channel/UC2WRDk3I6_cFuM3TIiUQX5A/videos": 1,
"Cheater (Sleepy External) (Suspicious) - in the pokerface group": 6,
"Cheater (Sleepy) (Suspicious) - [association] no evidence of cheating, but queued with Furrita insana ([U:1:1131": 2,
"Cheater (Sleepy) - antiaim and autovacccinator": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) (Suspicious) - [association] edating lucy aka pokerface ([U:1:1273939688]), or something": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy) - [GROUP BAN] deer_dance (103582791473056449) | Bot (TF2BD Official)": 1,
"Cheater (Sleepy) - aimbot": 6,
"Cheater (Sleepy) - profile id is literally 'autoairblast', aim.": 2,
"Cheater (Sleepy) - ~200ms backtrack, aim": 2,
"Cheater (Sleepy) - Listening to game events impossible (DispatchUserMessage) with in-game console o": 2,
"Bot (TF2BD Official) (Cheater | Exploiter)": 5,
"Cheater (Sleepy) (Suspicious) - [assoication] queued with Magistricide ([U:1:311463055])": 2,
"Cheater (Sleepy) - aim, terrible gamesense ": 2,
"Cheater (Sleepy) - agressive aimbot (direct hit soldier likely)": 2,
"Cheater (qfoxb) (Suspicious)": 2,
"Bot (TF2BD Official) - https://youtu.be/0zCXOMO1-G0": 2,
"Cheater (Sleepy) - aim, kind of oblivious and lost.": 2,
"Cheater (Sleepy) - esp + crit + etc": 2,
"Cheater (d3fc0n6) | Cheater (qfoxb) | Cheater (joekiller) | Cheater (Sleepy) - heavy aimbot with crit key.": 1,
"Cheater (Sleepy) - realname: silly.cx -> hvh.lol": 2,
"Cheater (Sleepy) (Cheater | Racist) - likely cheating": 2,
"Cheater (Sleepy) (Cheater | Racist) - autodetonate.": 2,
"Cheater (d3fc0n6) | Bot (TF2BD Official) - https://youtu.be/HnF4VCDBcvY": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - [GROUP BAN] jaredsense (103582791474234858)": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy) - aim": 2,
"Cheater (Sleepy) (Suspicious) - extremely rare SEOwned user if true. (self-admitted)": 2,
"Cheater (d3fc0n6) | Cheater (qfoxb) | Cheater (joekiller) (Racist)": 1,
"Cheater (Sleepy) (Cheater | Racist) - aim, force crit, backtrack": 2,
"Cheater (Sleepy) - url is 'id/nullcorecc'": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - externally confirmed.": 1,
"Cheater (Sleepy) - aimbot, LOST BY A LEGIT LMAOO": 2,
"Cheater (Sleepy) - blatant aim": 4,
"Cheater (Sleepy) - followbotting": 2,
"Cheater (Sleepy) - edge aim backtrack": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - aimbot, walls, backtrack.": 1,
"Cheater (Sleepy) (Suspicious) - aim prob": 2,
"Cheater (Sleepy/nullc0re) - [GROUP BAN] DoesithaveVAC (103582791472589750)": 241,
"Cheater (d3fc0n6) | Bot (TF2BD Official) (Cheater | Racist)": 2,
"Cheater (Sleepy) - seen antiaiming beginning of the match on join, jittered spin.": 2,
"Cheater (joekiller) | Cheater (Sleepy) - [GROUP BAN] RIJIN USER (103582791473349160) | Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 1,
"Cheater (Sleepy) (Cheater | Racist) - see SpinosaurusStudios ([U:1:198050187])": 2,
"Cheater (Sleepy) (Suspicious | Racist) - apparently crithacking, called out from like the entire enemy team.": 2,
"Cheater (Sleepy) - alias: 'PichuHVH' | Cheater (Sleepy/nullc0re) - [GROUP BAN] DoesithaveVAC (103582791472589750)": 1,
"Cheater (Sleepy) - esp": 2,
"Cheater (Sleepy) - fake latency (691ms) and backtrack.": 2,
"Cheater (Sleepy) - [association] queued with nova ([U:1:921831212]), likely cheating.": 2,
"Cheater (joekiller) | Cheater (Sleepy) - doubletap, antiaim": 1,
"Cheater (Sleepy) - 180fov aimbot and noisemaker feature.": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - found on sourcehvh.net": 1,
"Cheater (Sleepy) - agressively backtracking.": 2,
"Cheater (Sleepy) - followbot medic": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - everything that ticks the cheater box- he's got it.": 1,
"Cheater (d3fc0n6) | Bot (TF2BD Official) (Cheater | Exploiter)": 1,
"Cheater (Sleepy) - rage stacking w/ Coldest Rage ([U:1:177392371])": 2,
"Cheater (Sleepy) - [association] queued with poop3r": 2,
"Cheater (d3fc0n6) | Cheater (qfoxb) (Racist)": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy) - general cheating | Bot (TF2BD Official)": 1,
"Cheater (qfoxb) (Cheater | Racist)": 15,
"Cheater (qfoxb) (Cheater | Racist) | Bot (TF2BD Official)": 9,
"Cheater (Sleepy External) - in the pokerface group": 5,
"Cheater (Sleepy) (Cheater | Racist) - ESP + aim, also bad at game.": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) (Suspicious) - autobhop and aim it seems, not too sure.": 1,
"Cheater (d3fc0n6) | Cheater (qfoxb) (Racist) | Bot (TF2BD Official)": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy) - queued with Syn ([U:1:1273939688]), blatant aimbot": 1,
"Cheater (Sleepy) (Suspicious) - [association] queued with xoxo ([U:1:1211941128])": 2,
"Cheater (Sleepy) - crithacks": 2,
"Cheater (joekiller) (Racist) | Cheater (Sleepy) - aimbot, queued with Furrito insano ([U:1:418573583])": 1,
"Cheater (qfoxb) | Cheater (joekiller) | Bot (TF2BD Official)": 22,
"Cheater (joekiller) | Bot (TF2BD Official)": 33,
"Cheater (qfoxb) (Racist) | Cheater (joekiller) | Bot (TF2BD Official)": 1,
"Cheater (Sleepy External) - [GROUP BAN] jaredsense (103582791474234858)": 7,
"Cheater (Sleepy) - aim/esp": 2,
"Cheater (Sleepy) - AGRESSIVE aimbot": 2,
"Cheater (Sleepy) (Suspicious) - lmaobox user, noname": 4,
"Cheater (joekiller) (Racist) | Cheater (Sleepy) (Cheater | Racist) - scout crit key and autobhop, autocrouch, autostrafe.": 1,
"Cheater (Sleepy) - bro he's literally aimbotting in pyro": 2,
"Cheater (Sleepy) - autobhop + proj aim": 2,
"Cheater (Sleepy) (Suspicious) - probably cheating, aim (nospread)": 2,
"Cheater (Sleepy) - blatant aimbot, '1', etc": 2,
"Cheater (Sleepy) (Suspicious) - probably backtracking and aim": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - doubletap": 1,
"Cheater (Sleepy) - fakelag + fake latency": 2,
"Cheater (Sleepy External) - found on sourcehvh.net": 3,
"Cheater (Sleepy) - owning noobs in hvh - profile description | Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 1,
"Cheater (Sleepy) - backtrack (815ms)": 2,
"Cheater (d3fc0n6) | Cheater (joekiller) (Racist) | Cheater (Sleepy) (Cheater | Racist) - autodeflect, crit key, etc": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy) - vanity url is 'seowned' | Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy) - [GROUP BAN] Protogens Of 2Fort (103582791473512066)": 1,
"Cheater (joekiller) (Racist) | Cheater (Sleepy) - fakelag + aimbot": 1,
"Cheater (Sleepy) (Suspicious) - weird playstyle, weird response": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - marked by association": 1,
"Cheater (Sleepy) - high fov aimbot, dumbass movement. dude's probably destroyed his crit key by now": 2,
"Cheater (Sleepy) (Suspicious) - possibly crithacking": 2,
"Cheater (d3fc0n6) | Cheater (qfoxb) | Cheater (Sleepy) - autovaccinator": 1,
"Cheater (qfoxb) | Cheater (Sleepy) - ragehacking (antiaim)": 1,
"Cheater (Sleepy) - ragehacking; blatant": 2,
"Cheater (Sleepy) - agressive fakelag.": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - queueing with inviolatespark1 aka CatholicGod (in official list, [U:1:1114677105": 1,
"Cheater (Sleepy) - backtrack, 500 ping": 2,
"Cheater (Sleepy) - edge aim backtrack w/ revedas ([U:1:1261315039])": 2,
"Cheater (Sleepy) - scout antiaim + crit key": 2,
"Cheater (Sleepy) (Suspicious | Racist) - [association] possibly queued with Pinkie (76561199242779360)": 2,
"Cheater (Sleepy) (Suspicious) - seems to never miss a pistol shot": 2,
"Cheater (Sleepy) - known as LUCY/pokerface/pokerfake // bot host": 2,
"Cheater (Sleepy) - extreme aimbot": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy) - queueing with [VAC] Fluttershy ([U:1:1302897130]) and [VAC] Twilight Sparkle ([U": 1,
"Cheater (Sleepy) - esp and crit key": 2,
"Cheater (Sleepy) (Suspicious) - [association] pocketmedding rage, possibly cheating": 2,
"Cheater (Sleepy) - autobhop/aim": 2,
"Cheater (Sleepy) - found on sourcehvh.net | Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 1,
"Cheater (joekiller) | Cheater (Sleepy) - crit key + esp ": 1,
"Cheater (qfoxb) | Cheater (Sleepy) (Cheater | Racist) - dh / aim": 1,
"Cheater (d3fc0n6) | Cheater (Sleepy) - found on Swag HvH US, obvious rage cheating | Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 1,
"Cheater (Sleepy) - aim / esp / fakelag / force crit": 2,
"Cheater (d3fc0n6) | Cheater (Sleepy External) - in the pokerface group": 1,
"Cheater (Sleepy) - aim, bhop": 2,
"Cheater (Sleepy) - queueing with inviolatespark1 aka CatholicGod (in official list, [U:1:1114677105": 3,
"Cheater (Sleepy) - ragehacking.": 4,
"Cheater (Sleepy) (Suspicious) - likely cheating, low fov": 2,
"Cheater (Sleepy) - agressive aimbot.": 2,
"Cheater (Sleepy) - agressive aimbot and fakelag.": 2,
"Cheater (Sleepy) - Valkyrie bot host": 2,
"Cheater (Sleepy) (Cheater | Racist) - [04:00:50] <76561198412808893> mizuki oshi : antiaim or ur gay": 2,
"Cheater (Sleepy) - aimbotting + rage stack with ceryel ([U:1:95556303]), SunnyD-Pad ([U:1:207152741": 2,
"Cheater (Sleepy) (Suspicious) - probably cheating + queued with cheaters, dude will not shut up.": 2,
"Cheater (Sleepy External) - [association] friend of Sydenious": 2,
"Cheater (Sleepy) - admitted to cheating, is ragehacking": 2,
"Cheater (Sleepy) - aim, garbage gamesense": 2,
"Cheater (Sleepy) - autobhop + proj aim.": 2,
"Cheater (Sleepy) - autovac + autobhop": 2,
"Cheater (Sleepy) (Suspicious) - 'autobackstab'?": 2,
"Cheater (Sleepy) - [association] queued with other cheaters ([U:1:1228915053], [U:1:1162988647])": 2,
"Cheater (joekiller) | Cheater (Sleepy) - bot host of all the sydney bots.": 1,
"Cheater (Sleepy External) - [association] friend of Sydenious, AXDWT": 2,
"Cheater (Sleepy) (Suspicious) - possible private server crasher": 2,
"Cheater (Sleepy External) (Suspicious) - [association] friend of Sydenious, Jesus Chirst Enjoyer!, qtchan": 2,
"Cheater (Sleepy) - ragehacking | Cheater (Sleepy External) - [GROUP BAN] HVH GODZ FAN KKKLUB (103582791471794977)": 1,
"Cheater (Sleepy) - autobhop": 2,
"Cheater (Sleepy External) - same guy who got tapped by github": 2,
"Cheater (Sleepy) - nullc0re's alt, see nullc0re list.": 2,
"Cheater (Sleepy External) (Suspicious) - lv0 in qt group": 2,
"Cheater (Sleepy) - he seems lost, using ~90fov aim": 2,
"Cheater (Sleepy) - rare nitro user": 2,
"Cheater (Sleepy) - sydney new main?": 2,
"Cheater (Sleepy) - crit key + esp + aim": 2,
"Cheater (Sleepy) - 3-hour old account": 2,
"Cheater (Sleepy External) - 'the game is fun only for hvh' - tf2 review": 2,
"Cheater (Sleepy) - aim / crit / etc": 2,
"Cheater (Sleepy External) - [GROUP BAN] RIJIN USER (103582791473349160)": 62,
"Cheater (Sleepy External) (Cheater | Exploiter | Racist) - lmaobox user and various server bans": 1,
"Cheater (Sleepy External) - externally confirmed.": 1,
"Cheater (Sleepy External) - marked by association": 1,
"Cheater (Sleepy) - [GROUP BAN] RIJIN USER (103582791473349160)": 57,
"Cheater (Sleepy) - bro's literally named pasteware.": 1,
"Cheater (Sleepy) - rage stacking w/ 580 ([U:1:1095741268])": 1,
"Cheater (Sleepy) - aimbotting, doubletap, critkey": 1,
"Cheater (Sleepy) - aimbotting + rage stack with ceryel ([U:1:95556303]), (utf8) [U:1:1450323428], s": 1,
"Cheater (Sleepy) - havent seen it but most likely 95% cheating (see comment section)": 1,
"Cheater (Sleepy) - Edging people they have no intelligence on, aimbot, 'gg nn' after game": 1,
"Cheater (Sleepy) - seen hvhing in a casual match": 1,
"Cheater (Sleepy) (Suspicious) - marked as cheater previously and don't know why; investigate later": 1,
"Cheater (Sleepy) - edge-aiming / lbox user": 1,
"Cheater (Sleepy) - aimbot + backtrack": 1,
"Cheater (Sleepy) - ACP-Dashie, famous cheater": 1,
"Cheater (Sleepy) - autobhop, aim": 1,
"Cheater (Sleepy) - aim, blatant // also known as Octovender": 1,
"Cheater (Sleepy) - general cheating": 2,
"Cheater (Sleepy) (Suspicious) - [association] edating lucy aka pokerface ([U:1:1273939688]), or something": 1,
"Cheater (Sleepy) - heavy aimbot with crit key.": 1,
"Cheater (Sleepy) - aimbot, walls, backtrack.": 1,
"Cheater (Sleepy) - alias: 'PichuHVH'": 1,
"Cheater (Sleepy) - doubletap, antiaim": 1,
"Cheater (Sleepy) - everything that ticks the cheater box- he's got it.": 1,
"Cheater (Sleepy) (Suspicious) - autobhop and aim it seems, not too sure.": 1,
"Cheater (Sleepy) - queued with Syn ([U:1:1273939688]), blatant aimbot": 1,
"Cheater (Sleepy) - aimbot, queued with Furrito insano ([U:1:418573583])": 1,
"Cheater (Sleepy) (Cheater | Racist) - scout crit key and autobhop, autocrouch, autostrafe.": 1,
"Cheater (Sleepy) - owning noobs in hvh - profile description": 1,
"Cheater (Sleepy) (Cheater | Racist) - autodeflect, crit key, etc": 1,
"Cheater (Sleepy) - vanity url is 'seowned'": 1,
"Cheater (Sleepy) - fakelag + aimbot": 1,
"Cheater (Sleepy) - autovaccinator": 1,
"Cheater (Sleepy) - ragehacking (antiaim)": 1,
"Cheater (Sleepy) - queueing with [VAC] Fluttershy ([U:1:1302897130]) and [VAC] Twilight Sparkle ([U": 1,
"Cheater (Sleepy) - found on sourcehvh.net": 1,
"Cheater (Sleepy) - crit key + esp ": 1,
"Cheater (Sleepy) (Cheater | Racist) - dh / aim": 1,
"Cheater (Sleepy) - found on Swag HvH US, obvious rage cheating": 1,
"Cheater (Sleepy) - bot host of all the sydney bots.": 1,
"Bot (TF2BD Official) - https://www.youtube.com/channel/UC2WRDk3I6_cFuM3TIiUQX5A/videos": 1,
"Bot (TF2BD Official) - https://youtu.be/HnF4VCDBcvY": 1,
"Cheater (Rijin Alias) - valve employee": 208,
"Cheater (Rijin) | Bot (Rijin) | Cheater (Rijin Alias) - valve employee": 1,
"Bot (Rijin)": 888,
"Cheater (Rijin) | Bot (Rijin)": 3099,
"Cheater (Rijin Alias)": 1328,
"Cheater (Rijin)": 6888,
"INVALID EQUIP REGION": 1067,
"Cheater (Rijin) | Cheater (Rijin Alias)": 174,
"Cheater (Rijin Alias) - TF2 YouTuber": 30,
"Cheater (Rijin Alias) - Furry Pound admin": 23,
"OBB PITCH | TICKBASE ABUSE": 689,
"OB PITCH | TOO MANY INFRACTIONS": 2074,
"Cheater (Rijin Alias) - Steam Moderator": 2,
"Cheater (Rijin Alias) - lmaobox staff": 13,
"Cheater (Rijin) | Cheater (Rijin Alias) - nitro tester": 13,
"OB PITCH": 319,
"Cheater (Rijin Alias) - nullcore developer": 9,
"Cheater (Rijin Alias) - Kidua development": 1,
"ANGLE ANALYTICAL | OBB PITCH | SPEEDHACK | TICKBASE ABUSE": 102,
"TOO MANY INFRACTIONS": 573,
"OBB PITCH | SPEEDHACK": 163,
"Cheater (Rijin Alias) - RGLgg admin": 4,
"OBB PITCH": 1056,
"ANGLE ANALYTICAL | OBB PITCH | TICKBASE ABUSE": 294,
"Cheater (Rijin Alias) - nitro development": 4,
"INVALID EQUIP REGION | TOO MANY INFRACTIONS": 59,
"OBB PITCH | SPEEDHACK | TICKBASE ABUSE": 171,
"ANGLE ANALYTICAL | OBB PITCH": 238,
"Cheater (Rijin Alias) - nitro tester": 78,
"Cheater (Rijin Alias) - MegaAC development": 19,
"Cheater (Rijin Alias) - VALVe employee": 2,
"Cheater (Rijin Alias) - possible closet cheater": 3,
"TICKBASE ABUSE": 55,
"Cheater (Rijin) | Cheater (Rijin Alias) - nullcore tester": 4,
"Cheater (Rijin Alias) - nullcore tester": 14,
"Cheater (Rijin Alias) - TF2 VA": 1,
"ANGLE ANALYTICAL": 80,
"OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin)": 60,
"SPEEDHACK": 19,
"Cheater (Rijin Alias) - Owner of potato mvm": 1,
"Cheater (Rijin Alias) - Valve employee": 1,
"Cheater (Rijin Alias) - Skial Mod": 3,
"INVALID EQUIP REGION | OB PITCH | TOO MANY INFRACTIONS": 67,
"Cheater (Rijin Alias) - Friend of Jerma": 1,
"Cheater (Rijin Alias) - bot detector developer": 1,
"OB PITCH | Cheater (Rijin Alias)": 4,
"Cheater (Rijin Alias) - furukabot/tacobot": 17,
"Cheater (Rijin Alias) - Owner of ScrapTF": 1,
"Cheater (Rijin Alias) - meth-hack development": 15,
"Cheater (Rijin) | Cheater (Rijin Alias) - Bot hoster": 9,
"ANGLE ANALYTICAL | OBB PITCH | SPEEDHACK": 114,
"SPEEDHACK | TICKBASE ABUSE": 6,
"Cheater (Rijin Alias) - Tacobot Member": 17,
"Cheater (Rijin) | Bot (Rijin) | Cheater (Rijin Alias)": 17,
"ANGLE ANALYTICAL | TICKBASE ABUSE": 9,
"Cheater (Rijin Alias) - YouTuber": 2,
"Cheater (Rijin Alias) - Friend of LazyPurple": 3,
"Cheater (Rijin Alias) - Friend of TF2 YouTuber (Aar)": 2,
"Cheater (Rijin Alias) - Blackwonder Owner": 1,
"Cheater (Rijin Alias) - SmellyRussiaHvH": 3,
"Cheater (Rijin Alias) - F1Public developer": 1,
"Cheater (Rijin Alias) - closet cheater": 4,
"Cheater (Rijin) | Cheater (Rijin Alias) - meth-hack development": 1,
"Cheater (Rijin Alias) - Bot hoster": 10,
"Cheater (Rijin Alias) - Owner of Skial": 1,
"INVALID EQUIP REGION | OB PITCH | TOO MANY INFRACTIONS | Cheater (Rijin Alias)": 3,
"OB PITCH | TOO MANY INFRACTIONS | Cheater (Rijin Alias)": 18,
"Cheater (Rijin Alias) - Vorobey's Friend/Closet cheater": 6,
"Cheater (Rijin Alias) - Skial staff": 2,
"Cheater (Rijin Alias) - (closet cheater / nonce)": 3,
"TICKBASE ABUSE | Cheater (Rijin Alias) - unk-cheat developer": 1,
"Cheater (Rijin) | Cheater (Rijin Alias) - meth-hack": 1,
"INVALID EQUIP REGION | TOO MANY INFRACTIONS | Cheater (Rijin Alias)": 2,
"Cheater (Rijin Alias) - seowned development": 3,
"INVALID EQUIP REGION | Bot (Rijin) | Cheater (Rijin Alias)": 2,
"Cheater (Rijin Alias) - YouTube plays with cheaters": 1,
"BOT SUBMITTED | OB PITCH": 18,
"TOO MANY INFRACTIONS | Cheater (Rijin Alias)": 4,
"Cheater (Rijin Alias) - CoomerSquad": 6,
"TOO MANY INFRACTIONS | Bot (Rijin)": 3,
"Cheater (Rijin) | Cheater (Rijin Alias) - SmellyRussiaHvH": 2,
"Cheater (Rijin) | Bot (Rijin) | Cheater (Rijin Alias) - /bot hoster": 1,
"Cheater (Rijin Alias) - STAC development": 1,
"Cheater (Rijin) | Cheater (Rijin Alias) - lmaobox staff": 1,
"Cheater (Rijin Alias) - suspected closet cheating": 1,
"OB PITCH | OBB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Cheater (Rijin Alias) - Bot hoster": 1,
"Cheater (Rijin Alias) - lmaobox developer": 4,
"OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Cheater (Rijin Alias) - Bot Hoster": 1,
"OBB PITCH | Cheater (Rijin Alias) - nitro tester": 2,
"OB PITCH | OBB PITCH | TOO MANY INFRACTIONS | Cheater (Rijin Alias)": 1,
"OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Cheater (Rijin Alias) - nonce o clock": 1,
"OB PITCH | Bot (Rijin) | Cheater (Rijin Alias)": 1,
"Cheater (Rijin Alias) - Owner of quicksell store": 1,
"OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Cheater (Rijin Alias)": 5,
"OBB PITCH | Bot (Rijin) | Cheater (Rijin Alias)": 1,
"OB PITCH | Bot (Rijin)": 17,
"Cheater (Rijin) | Cheater (Rijin Alias) - nitro testing": 1,
"Cheater (Rijin Alias) - Convicted sex offender": 1,
"INVALID EQUIP REGION | OBB PITCH": 4,
"Cheater (Rijin Alias) - votekick on hackusation": 1,
"Cheater (Rijin Alias) - Pedo": 47,
"INVALID EQUIP REGION | OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin)": 7,
"OBB PITCH | Bot (Rijin)": 10,
"INVALID EQUIP REGION | TOO MANY INFRACTIONS | Bot (Rijin)": 1,
"ANGLE ANALYTICAL | OBB PITCH | SPEEDHACK | Bot (Rijin)": 1,
"Cheater (Rijin) | Cheater (Rijin Alias) - unk-cheat developer": 2,
"Cheater (Rijin) | Cheater (Rijin Alias) - CoomerSquad": 2,
"Cheater (Rijin) | Cheater (Rijin Alias) - seowned development": 1,
"Cheater (Rijin Alias) - Vorobey hacker police": 1,
"Cheater (Rijin Alias) - Bot Account": 1930,
"SILENT AIM": 1,
"INVALID EQUIP REGION | Bot (Rijin)": 17,
"INVALID EQUIP REGION | Cheater (Rijin Alias)": 6,
"INVALID EQUIP REGION | Cheater (Rijin Alias) - nitro tester": 1,
"OBB PITCH | SPEEDHACK | Cheater (Rijin Alias)": 2,
"OBB PITCH | SPEEDHACK | Cheater (Rijin Alias) - Pedo": 1,
"OB PITCH | TOO MANY INFRACTIONS | Cheater (Rijin Alias) - SmellyRussiaHvH": 2,
"OB PITCH | TOO MANY INFRACTIONS | Cheater (Rijin Alias) - Pedo": 4,
"OBB PITCH | Cheater (Rijin Alias) - nitro development": 1,
"TOO MANY INFRACTIONS | Cheater (Rijin Alias) - Pedo": 1,
"INVALID EQUIP REGION | OB PITCH | TOO MANY INFRACTIONS | Cheater (Rijin Alias) - Pedo": 1,
"Cheater (Rijin Alias) - moneybot": 6,
"Cheater (Rijin Alias) - suspector": 1,
"Cheater (Rijin Alias) - vorobey hacker reporter": 3,
"BOT SUBMITTED | OB PITCH | TOO MANY INFRACTIONS": 10,
"OBB PITCH | TICKBASE ABUSE | Bot (Rijin)": 4,
"Cheater (Rijin) | Cheater (Rijin Alias) - moneybot": 2,
"Cheater (Rijin) | Bot (Rijin) | Not a Bot (Rijin)": 9,
"ANGLE ANALYTICAL | OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Cheater (Rijin Alias)": 1,
"ANGLE ANALYTICAL | SPEEDHACK": 4,
"Cheater (Rijin) | Cheater (Rijin Alias) - Jewish": 1,
"OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Cheater (Rijin Alias) - SmellyRussiaHvH": 1,
"Cheater (Rijin) | Cheater (Rijin Alias) - development": 2,
"Cheater (Rijin Alias) - Steam Trade Bot": 1,
"OBB PITCH | Cheater (Rijin Alias) - CoomerSquad": 1,
"Bot (Rijin) | Cheater (Rijin Alias) - Bot hoster": 3,
"Cheater (Rijin Alias) - unk-cheat developer": 5,
"Cheater (Rijin) | Bot (Rijin) | Cheater (Rijin Alias) - Bot hoster": 7,
"ANGLE ANALYTICAL | OBB PITCH | Cheater (Rijin Alias)": 1,
"INVALID EQUIP REGION | OB PITCH": 6,
"ANGLE ANALYTICAL | OBB PITCH | SPEEDHACK | Cheater (Rijin Alias)": 1,
"OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Not a Bot (Rijin)": 2,
"ANGLE ANALYTICAL | OBB PITCH | SPEEDHACK | TICKBASE ABUSE | Bot (Rijin)": 1,
"INVALID EQUIP REGION | OBB PITCH | TOO MANY INFRACTIONS": 1,
"Cheater (Rijin Alias) - Bot Hoster": 3,
"Cheater (Rijin Alias) - copy paster": 5,
"INVALID EQUIP REGION | OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Cheater (Rijin Alias) | Not a Bot (Rijin)": 1,
"Cheater (Rijin Alias) - development": 1,
"INVALID EQUIP REGION | OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Not a Bot (Rijin)": 1,
"Cheater (Rijin) | Bot (Rijin) | Cheater (Rijin Alias) - Bot Hoster": 11,
"OB PITCH | TOO MANY INFRACTIONS | Bot (Rijin) | Cheater (Rijin Alias) - Jewish": 1,
"OB PITCH | BOT SUBMITTED": 3,
"Cheater (Rijin) | Cheater (Rijin Alias) - Pedo": 2,
"OB PITCH | Cheater (Rijin Alias) - Nonce": 1,
"OB PITCH | TOO MANY INFRACTIONS | BOT SUBMITTED | OB PITCH": 12,
"Cheater (Rijin) | BOT SUBMITTED | OB PITCH": 5,
"OB PITCH | BOT SUBMITTED | OB PITCH": 3,
"Cheater (Rijin) | BOT SUBMITTED": 8,
"OBB PITCH | SPEEDHACK | TICKBASE ABUSE | Cheater (Rijin Alias) - roach": 1,
"OB PITCH | OBB PITCH": 1,
"OB PITCH | BOT SUBMITTED | OB PITCH | TOO MANY INFRACTIONS": 1,
"OB PITCH | TOO MANY INFRACTIONS | BOT SUBMITTED | OB PITCH | TOO MANY INFRACTIONS": 3,
"OBB PITCH | TOO MANY INFRACTIONS": 1,
"OB PITCH | TOO MANY INFRACTIONS | BOT SUBMITTED": 2,
"BOT SUBMITTED | TOO MANY INFRACTIONS": 1,
"Cheater (Rijin Alias) - roach": 2,
"OB PITCH | OBB PITCH | TOO MANY INFRACTIONS": 1,
"OB PITCH | TOO MANY INFRACTIONS | Cheater (Rijin Alias) - copy paster": 1,
"OB PITCH | TOO MANY INFRACTIONS | Cheater (Rijin Alias) - Bot hoster": 2,
"OBB PITCH | Cheater (Rijin Alias) - Bot hoster": 1,
"OBB PITCH | TICKBASE ABUSE | Cheater (Rijin Alias) - Jewish": 1,
"OBB PITCH | TICKBASE ABUSE | Cheater (Rijin Alias) - Pedo": 1
},
"unique_statics": {
"d3_cheat": 2774,
"sleepy_ext": 242,
"sleepy_main": 558,
"tf2bd_off": 1971,
"joekiller": 1504,
"qfoxb": 731,
"sleepy_nullc0re": 241,
"tfcl_alias": 3858,
"tfcl_dev": 17696,
"tfcl_bot": 626,
"tfcl_botnames": 265
},
"unique_names": {
"Unknown": 23628,
"[VIV] Sanses": 2,
"the winner": 2,
"DihoGOAT": 3,
"enzic2": 2,
"enzic": 2,
"royalhack.net B0T": 34,
"Twitch.tv/PasteWare {LIVE!}": 2,
"Rage Duck DJ": 2,
"Tilar 4.0": 2,
"enzic1": 2,
"Ves": 2,
"shlohmo": 2,
"Sail Hatan": 2,
"_": 2,
"Xiani89": 2,
"BND": 2,
"Leigh (=^ ^=)": 2,
"Lt.TexasDan[BN]": 2,
"Rabbi Gabeslave": 2,
"Hayabusa": 2,
"abomination": 2,
"Tilar 2.0": 2,
"Cheese": 2,
"(1)www.myg0t.win": 10,
"dnd": 3,
"krisiniy korol'": 2,
"Vaporeon innovate.tf": 2,
"MGW": 2,
"S1": 3,
"steven seaga;l": 2,
"Grey The Xeno \\\\ Trade.tf": 2,
"Markusha": 2,
"bigger weapons": 3,
"insomnia": 2,
"cueki": 2,
"derek powers": 2,
"HLLENFEUER": 2,
"Little Pimp": 2,
"www.youtube.com/@Sanses64": 2,
"Fatgineer": 2,
"Glitch The Protogen": 2,
"P!": 2,
"LOVE MACHINE": 6,
"boxvader": 2,
"jeebs": 2,
"/id/raspy_on_osu": 30,
"ooger booger": 2,
"tyre at da curb": 2,
"Old Man Joseph Joestar": 2,
"Ninjaneer": 2,
"76561198048051125": 2,
"summer noobs inbound": 2,
"DoesHotter": 12,
"gitano": 2,
"Mau": 2,
"Ryutaa": 2,
"HairyWBush": 2,
"ceryel": 2,
"aodrael": 2,
"LadiesMan217": 2,
"Medic who laughed": 2,
"MORE THAN MEETS THE EYE": 2,
"getting to the bag stupid": 2,
"Niels Ben Carmine": 2,
"AUTOBOTS, ROLL OUT": 2,
"ubereats": 2,
"Dungeon Master": 2,
"(Futa Feferi)": 2,
"johnny rebel vinyl": 2,
"picklesteakjit\u001b": 2,
"mOnKeY": 2,
"HAMOOD | monkey.club": 2,
"Cant Touch Me": 2,
"Java coder": 2,
"CDG Cashel": 2,
"Creek": 2,
"enis -4": 2,
"videogames9000": 2,
"fool4love": 2,
"Shadow Wizard Money Gang": 2,
"207115": 2,
"Mr. Paladin": 2,
"anubliss": 2,
"OG.PikminBlueLover225 #GAMECUBE": 3,
"SweetCider": 2,
"SHALL": 2,
"Lu": 2,
"Glue": 2,
"Jeff": 5,
"s0yi": 2,
"V1": 2,
"CrnOnDaC0B": 3,
"Heat Miser": 2,
"webitube-*****2": 2,
"I love germany": 2,
"Aegean Honey Badger": 2,
"Tempest (Owned By Snowy)": 2,
"R.I.P. Dick Gay": 2,
"beetlepimp": 2,
"I AM A THREAT": 2,
"camilagaggini": 2,
"my little pony fan": 2,
"Eluvar": 2,
"Chuk Vinson": 2,
"camp": 2,
"chuumon": 2,
"lester": 9,
"foreskin pyro": 2,
"Favored One": 2,
"legacy": 4,
"Kirby Elote Gaming S.A": 2,
"TNTJoeyAlhamdulilah2009shit": 2,
"MintBerryCrunch": 2,
"Tails5421": 2,
"Dylan": 5,
"hoax": 2,
"Yoda Bean": 2,
"Panini": 5,
"wobblingbiscuit": 2,
"Real Barack Obama": 2,
"LEGO": 2,
"Coldest Rage": 2,
"Highlander": 2,
"Autismo": 2,
"Crossed Rover": 2,
"pinky": 2,
"123": 2,
"relaxtakenotes": 2,
"Timing": 10,
"Fortnite Milf": 2,
"Max Payne": 2,
"Main": 2,
"youtube.com/watch?v=dQw4w9WgXcQ": 2,
"H00TOWL": 2,
"the crazy days, city lights": 2,
"surlaw wodahs": 2,
"winter worg": 2,
"FUCK YOU YOU SHIT ASS RETARD": 2,
"SpinosaurusStudios": 2,
"OverwatchC17": 2,
"Puppeteer": 2,
"ChangoTrini": 2,
"SunnyD-Pad": 2,
"Sonic Pissing For 10 Hours": 2,
"$crim": 2,
"I disagree with gays.": 2,
"Bing Soy": 2,
"OG MUDBONE": 2,
"PlaNKDaNK": 2,
"Haven": 2,
"Terenx": 2,
"ComeGlazedDog": 2,
"dungeon": 303,
"hollandice": 2,
"rich model sex": 2,
"Step on me and peg me mommy": 2,
"sporks": 2,
"foam": 2,
"Project-X": 2,
"Modern The 1st.": 2,
"Peiko": 2,
"cycIosa": 2,
"gay homie gaming #savetf2": 2,
"north east": 2,
"gamer weed": 2,
"batmanbananas19": 2,
"lex": 2,
"Femboi Carti #dontsavetf2": 2,
"blabk": 2,
"oBuNgUs": 2,
"Andromeda": 2,
"lucine": 2,
"lispy": 2,
"Al-Gorithmi": 2,
"George Fluigi": 3,
"Nuclear fusion(tryhard/police)": 2,
"nick": 2,
"EASTERN ROMAN EMPIRE GAMING": 2,
"Legatus": 2,
"Vin": 2,
"SPell": 2,
"Bruh": 4,
"czartraktheprotogen": 2,
"deaths aproach": 2,
"www.myg0t.win": 51,
"yourself": 2,
"steve_blowjobs": 2,
"Coktus Pricklus": 2,
"Battle Buddy": 2,
"Shu": 2,
"Magistricide": 4,
"feddi favela": 3,
"Seal and Co.": 2,
"dry nuts": 2,
"so": 2,
"\\\\-RAZIER-/": 2,
"PLAYBOY CARTI": 2,
"ambasing!!! >//w//<": 2,
"Archbishop of Harvest": 2,
"Freddy Fazbear": 2,
"planet": 2,
"scum (Monsanto appreciator)": 2,
"s13": 2,
"cosine god": 2,
"Double": 3,
"Holo": 2,
"Quest for Pepsi": 2,
"furry-bot 5": 2,
"Mr. Sirpent": 4,
"Bob Johnson Fan Acount": 2,
"Certified Racist": 2,
"Stop Crying": 2,
"iAmCringe(F.B.G./ iceWalowCom)": 2,
"[VALVE] Robin | monkey.club": 2,
"76561198310251786": 2,
"Coopyy": 2,
"stanislav_brevi0451": 2,
"Gloria Gloom": 2,
"Spy(tf2)": 2,
"Eobard Thawne": 2,
"76561198316334587": 2,
"funnycar56": 2,
"solar": 2,
"EzKawen_": 2,
"Jewish Pug": 2,
"skibiditoilet": 2,
"gypsynarancs": 3,
"Hllenfeuer": 2,
"st4rb0y^*": 2,
"[EGT] Happy Man": 2,
"p5r_hope": 2,
"spikeymikey bot 3": 2,
"NOT A N O N": 2,
"Tilar 1488 #TRUMP2020": 2,
"Dezoum1": 2,
"EmpRess": 2,
"wowzers": 2,
"southern nights": 2,
"Crispy Water": 2,
"Softie Bella": 2,
"fly little monkey wit drip": 2,
"shasta bot 4": 2,
"deer dancing": 2,
"www.myg0t.gg": 16,
"B-Hop": 2,
"georgie": 2,
"clipbot": 2,
"nuclearcornonthecob365": 2,
"snowy": 2,
"(1)SkyNet - Discord.gg/WRgscGnC": 2,
"Wild Rider": 2,
"The Cap'm": 2,
"katt": 2,
"Nulledcore": 2,
"fdd att bli rik": 2,
"deFY": 2,
"Papa Smoke": 2,
"Interloper": 2,
"|Joey|": 2,
"Furrito insano": 2,
"[VALVE]Nggerkiller": 6,
"enzic3": 2,
"HealSlut": 2,
"YAyyx": 2,
"Night": 2,
"M-FeD": 2,
"notaokey": 2,
"Hania": 2,
"Kaz #ACAB": 2,
"ZubZub": 2,
"Captain Deadeye UGC Plat": 2,
"Plaguedoctor27": 2,
"Cnuy Sentry": 2,
"FS-_-Sam": 2,
"f2p egg": 2,
"Sam [ Nice Guy ]": 2,
"yourmom42069": 2,
"silver": 2,
"i hate fags and trannies": 2,
"EldrVoid": 2,
"GM": 2,
"vast white supremecy": 2,
"scary skibidi toilet": 2,
"inhuman": 3,
"Heavy": 2,
"EldrVoid Bot #1": 2,
"sudo chmod 777 /etc/pacman.conf": 2,
"Festive sylveon": 2,
"Terry A Davis": 2,
"SmellBourp": 2,
"Karl Marx": 2,
"kingstoncrypto528": 2,
"the greatest :3 to ever :3": 2,
"sam": 2,
"John Pork Radio": 2,
"caltze mit glatze": 2,
"LazyMexican": 2,
"(1)DoesHotter": 2,
"F G BOT": 2,
"Davirz": 2,
"(1)F G BOT": 2,
"safe": 2,
"gratter les couilles": 2,
"der Karpfenarzt": 2,
"timelessfootball42": 2,
"umbuku": 2,
"superdupergamer74": 2,
"Marian Iacob Evil Pasting Inc.": 2,
"Tilar 3.0": 2,
"Voltaren": 2,
"Jeff Rosenstock": 2,
"Rocketmanz1": 2,
"MYG)T": 90,
"The Social Distancing Spy": 2,
"Nice Guy": 2,
"KINOPIO from Mario Kart 64": 2,
"Alii": 2,
"christmas chimp": 2,
"Casio": 2,
"Ernest Meets The Fuhrer": 2,
"stone cold freak": 2,
"Lil Endian": 2,
"anti": 3,
"Dorian's Egirl": 2,
"(2)The Gang": 2,
"Dead Game": 2,
"Valdrakar Bloodthorn": 2,
"Ryzen 9 3950X": 2,
"VAYGR | trade.tf": 2,
"orangeboi": 2,
"IRRESPONSIBLE BREEDING": 2,
"unnamed": 2,
"oculus": 2,
"K4L1": 2,
"d9 man for life man": 2,
"Martin White": 3,
"Mao Tse-Tung": 2,
"Family Guy Joe Figurine (rea": 2,
"Revedas": 2,
"eeyore": 3,
"~Nova Winters~": 2,
"Proto-R500": 2,
"cat-bot 2": 4,
"Bud The Bun": 2,
"Theclapgod693": 2,
"Meatwad": 2,
"furrboy": 2,
"adam": 3,
"Tuomis": 3,
"Waffen-SS": 153,
"after dark.": 2,
"Dream Air": 2,
"n23178342uygfjojdshfroahsriuagi": 2,
"artik": 9,
"Keep": 2,
"cobus yolus": 2,
"FEMBOY.ENJOYER": 2,
"DELTATRONIC": 10,
"StuffedCrust": 2,
"bunker boy": 34,
"Papyrus123": 2,
"raspy": 16,
"raspy upset bot makers": 2,
"Orange Madness": 2,
"szymon16062008": 2,
"Trust me": 4,
"tooliwrld": 2,
"koth_harvest (medick)": 2,
"chris mclean IN THE FLESH": 2,
"TNE's Code Garbage Can": 3,
"Alice ^=^": 2,
"Collectorius": 3,
"BloodHunter676": 2,
"Chunky": 2,
"SpinosaurusStudios2": 2,
"Germ": 2,
"Noah Ben Cohen": 2,
"OYK": 2,
"Satoshy": 3,
"spikeymikey bot 10": 2,
"VAC BYPASS!!)))) #savetf2": 2,
"player": 2,
"cgprs59": 2,
"EldrVoid Bot #2": 2,
"EldrVoid Bot #3": 2,
"Bee": 2,
"EldrVoid Bot #5": 2,
"EldrVoid Bot #4": 2,
"conga best taunt": 2,
"irc.myg0t.gg:6969#myg0t": 2,
"Trollgineer": 2,
"no u pow": 2,
"pewdiepie (real)": 2,
"ANDR0MEDA :3": 2,
"Verosika (Nova's Slut)": 2,
"P00P3R": 2,
"Miroslav": 2,
"www.wizard[g0tBoat].com": 2,
"wave": 3,
"ASMR": 2,
"Cannibal": 3,
"ziggy": 2,
"Shotgun Symphony": 2,
"Vanilla Sl4yer": 3,
"(2)NOT A N O N'S BOT": 2,
"youtube.com/watch?v=KDhsaKzXcuo": 2,
"them": 2,
"Mac": 2,
"igor": 4,
"Hades": 2,
"Saless": 3,
"boop": 2,
"CAN YOU QUACK": 6,
"furry-bot 10": 2,
"pazer": 32,
"tkkittel": 2,
"black mask terror": 2,
"quizno": 2,
".": 2,
"hammer tf2": 2,
"Lag-Bot 28": 2,
"Tilar 5.0": 2,
"Neo": 4,
"Lag-Bot 33": 2,
"(2)discord.gg/9Ukuw9V": 2,
"(1)discord.gg/9Ukuw9V": 6,
"Fuck Nemo #RIPV2": 2,
"discord.gg/9Ukuw9V": 4,
"[aeiou] Toasty": 2,
"engineer gaming (real)": 2,
"stimming": 2,
"CIBERKNIGHT": 2,
"Sweet Baby Rays": 2,
"Junkyard Robber": 2,
"www.myg0t.gg]OGBADGER": 2,
"Ray Peat": 2,
"shasta bot 1": 2,
"shasta bot 2": 2,
"cum": 18,
"AliExpress Fentanyl": 2,
"i7-7700K": 2,
"Wonderman": 2,
"(2)cum": 2,
"thejudge2401": 2,
"[VAC] OneTrick": 12,
"Gsausse8_01": 2,
"Soy killer": 2,
"fuzza": 3,
"[VALV]FemboyFurret": 2,
"scunt gaming": 2,
"B O L A X A": 2,
"V3R": 2,
"six": 2,
"spread manipulation scout": 2,
"spikeymikey bot 2": 2,
"horser": 2,
"partyrocker69": 2,
"/id/PazerFromSilver": 2,
"Lag-Bot 23": 2,
"Lag-Bot 26": 2,
"Trump Dog": 2,
"shasta bot 3": 2,
"big weapon man": 2,
"OneTrick": 6,
"Lowrider Niggerkillern;quit": 2,
"Nukebuilder26": 2,
"N bomb": 2,
"*^+": 2,
"Frosty Winter": 2,
"580": 2,
"furry-bot 4": 4,
"furry-bot 1": 2,
"furry-bot 0": 2,
"furry-bot 3": 2,
"kenny": 6,
"furry-bot 2": 4,
"deer": 2,
"-hop": 2,
"(1)MYG)T": 20,
"(3)MYG)T": 2,
"(4)MYG)T": 2,
"(5)MYG)T": 2,
"(2)MYG)T": 8,
"xom": 2,
"GyroBot": 2,
"furry-bot 8": 2,
"furry-bot 21": 4,
"(2)scunt gaming": 2,
"sansic": 2,
"furry-bot 30": 4,
"furry-bot 24": 2,
"benifit bot - kills bots": 2,
"fortisira": 2,
"furry-bot 19": 2,
"Rick May Was A Pedo Bot 1": 2,
"furry-bot 18": 2,
"Rick May Was A Pedo Bot 3": 2,
"Rick May Was A Pedo Bot 4": 2,
"Cry Harder Faggot": 2,
"myg()t": 8,