forked from thatswhatyouget/tpp-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
static.html
3339 lines (3338 loc) · 384 KB
/
static.html
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
<html><head>
<title>TPP Progress Chart</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/tpp-progress.css">
<link rel="stylesheet" href="css/pokemon.css">
<link rel="icon" href="img/icon.png" type="image/png">
<link rel="shortcut icon" href="img/icon.png" type="image/png">
<meta property="og:title" content="TPP Progress Chart">
<meta property="og:url" content="http://thatswhatyouget.github.io/tpp-progress/">
<meta property="og:image" content="http://thatswhatyouget.github.io/tpp-progress/img/icon.png">
<meta property="og:type" content="website">
<meta charset="utf-8">
</head>
<body>
<div class="title">
<h1>Twitch Plays Pokemon</h1>
<div class="subtitle">
Static Version
<a href="index.html">JavaScript Version</a>
</div>
</div>
<div class="title">
<strong>Progress Chart</strong>
<div class="credits">
<span>Original Design: <a href="https://www.reddit.com/user/jim_needs_me" target="_blank">jim_needs_me</a></span>
<span>Interactive version: <a href="https://www.reddit.com/user/VorpalNorman" target="_blank">VorpalNorman</a></span>
</div>
<div class="credits">
Contributors:
<a href="https://www.reddit.com/user/TheSwordUser" target="_blank">TheSwordUser</a>,
<a href="https://www.reddit.com/user/UDie2day" target="_blank">UDie2day</a>,
<a href="https://www.reddit.com/user/AsterJ" target="_blank">AsterJ,</a>
<a href="https://www.reddit.com/user/Rabbeseking" target="_blank">Rabbeseking</a>,
<a href="https://www.reddit.com/user/Tiesoul" target="_blank">Tiesoul</a>,
<a href="https://www.reddit.com/user/Persona_Alio" target="_blank">valence_d</a>,
<a href="https://www.reddit.com/user/ChezMere" target="_blank">ChezMere</a>,
<a href="https://www.reddit.com/user/T-chan" target="_blank">T-chan</a>,
<a href="https://www.reddit.com/user/yoshord" target="_blank">yoshord</a>,
and <a href="https://www.reddit.com/user/Sauzels" target="_blank">Sauzels</a>
</div>
<div class="credits">
Default sprites are from <a href="http://bulbapedia.bulbagarden.net/" target="_blank">Bulbapedia</a> and <a href="http://twitchplayspokemon.org/" target="_blank">twitchplayspokemon.org</a>.
Pokemon sprites are from <a href="http://pldh.net/dex/sprites/index" target="_blank">PLDHnet's SpriteDex</a>.<br>
All custom sprites can be clicked for links to their sources.
</div>
<div class="credits">
<span class="doItLive">Most</span> run data provided by <a href="http://twitchplayspokemon.org/" target="_blank">twitchplayspokemon.org</a>.
</div>
</div>
<div class="charts">
<div class="progressChart season1" data-label="Season 1" id="season1" data-scale="Days" style="background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAABCAYAAACouxZ2AAAAIklEQVRIS2NkGAWjITAaAqMhMBoCoyEwGgIjKgRWrlxZDwAWcgJ8Z7VYMAAAAABJRU5ErkJggg==");"><div class="ruler"><div class="stop" data-scale="Days" style="left: 0px;"></div><div class="stop" data-scale="Days" style="left: 1024px;"></div><div class="stop" data-scale="Days" style="left: 2048px;"></div><div class="stop" data-scale="Days" style="left: 3072px;"></div><div class="stop" data-scale="Days" style="left: 4096px;"></div><div class="stop" data-scale="Days" style="left: 5120px;"></div><div class="stop" data-scale="Days" style="left: 6144px;"></div><div class="stop" data-scale="Days" style="left: 7168px;"></div><div class="stop" data-scale="Days" style="left: 8192px;"></div><div class="stop" data-scale="Days" style="left: 9216px;"></div><div class="stop" data-scale="Days" style="left: 10240px;"></div><div class="stop" data-scale="Days" style="left: 11264px;"></div><div class="stop" data-scale="Days" style="left: 12288px;"></div><div class="stop" data-scale="Days" style="left: 13312px;"></div><div class="stop" data-scale="Days" style="left: 14336px;"></div><div class="stop" data-scale="Days" style="left: 15360px;"></div><div class="stop" data-scale="Days" style="left: 16384px;"></div><div class="stop" data-scale="Days" style="left: 17408px;"></div><div class="stop" data-scale="Days" style="left: 18432px;"></div><div class="stop" data-scale="Days" style="left: 19456px;"></div><div class="stop" data-scale="Days" style="left: 20480px;"></div><div class="stop" data-scale="Days" style="left: 21504px;"></div></div><div class="run red" data-duration="2w 2d 7h 45m 30s" data-endtime="2w 2d 7h 50m 15s" data-start="1392254565" data-label="Red: 16d 7h 45m 30s" data-startdate="2014/02/13 01:22 UTC" id="red" style="color: rgb(140, 56, 54); border-color: rgb(140, 56, 54); width: 16715px; margin-left: 0px; background-color: rgb(192, 80, 77);"><div class="event hosts" data-label="RED" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/red.png" alt="RED" style="margin-top: 0px;"></a></div><div class="event pokesprite charmander pokemon" data-label="Charmander
0d 0h 5m
(estimated)" data-time="0w 0d 0h 5m" style="left: 3.55556px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Charmander
0d 0h 5m
(estimated)" style="margin-top: 0px;"></div><div class="event badges" data-label="Boulder Badge
0d 9h 12m" data-time="0w 0d 9h 12m" style="left: 392.533px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/boulder.png" alt="Boulder Badge
0d 9h 12m" style="margin-top: 0px;"></a></div><div class="event pokesprite pidgey pokemon" data-label="Pidgey
0d 12h 46m
(estimated)" data-time="0w 0d 12h 46m" style="left: 544.711px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgey
0d 12h 46m
(estimated)" style="margin-top: 0px;"></div><div class="event pokesprite charmeleon pokemon" data-label="Charmeleon
0d 13h 36m
(estimated)" data-time="0w 0d 13h 36m" style="left: 580.267px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Charmeleon
0d 13h 36m
(estimated)" style="margin-top: 0px;"></div><div class="event pokesprite rattata pokemon" data-label="Rattata
1d 11h 32m" data-time="0w 1d 11h 32m" style="left: 1516.09px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Rattata
1d 11h 32m" style="margin-top: 0px;"></div><div class="event pokesprite pidgeotto pokemon" data-label="Pidgeotto
1d 14h 23m" data-time="0w 1d 14h 23m" style="left: 1637.69px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgeotto
1d 14h 23m" style="margin-top: 0px;"></div><div class="event badges" data-label="Cascade Badge
1d 18h 56m 38s" data-time="0w 1d 18h 56m 38s" style="left: 1832.27px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/cascade.png" alt="Cascade Badge
1d 18h 56m 38s" style="margin-top: 0px;"></a></div><div class="event pokesprite drowzee pokemon" data-label="Drowzee
2d 2h 37m" data-time="0w 2d 2h 37m" style="left: 2159.64px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Drowzee
2d 2h 37m" style="margin-top: 4.6px;"></div><div class="event pokesprite spearow pokemon" data-label="Spearow
2d 2h 49m" data-time="0w 2d 2h 49m" style="left: 2168.18px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Spearow
2d 2h 49m" style="margin-top: -4.6px;"></div><div class="event pokesprite farfetchd pokemon" data-label="Farfetch'd
2d 6h 59m" data-time="0w 2d 6h 59m" style="left: 2345.96px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Farfetch'd
2d 6h 59m" style="margin-top: 0px;"></div><div class="event badges" data-label="Thunder Badge
2d 11h 29m" data-time="0w 2d 11h 29m" style="left: 2537.96px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/thunder.png" alt="Thunder Badge
2d 11h 29m" style="margin-top: 0px;"></a></div><div class="event pokesprite pidgeot pokemon" data-label="Pidgeot
3d 17h 13m" data-time="0w 3d 17h 13m" style="left: 3806.58px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgeot
3d 17h 13m" style="margin-top: 0px;"></div><div class="event badges" data-label="Rainbow Badge
4d 0h 47m" data-time="0w 4d 0h 47m" style="left: 4129.42px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/rainbow.png" alt="Rainbow Badge
4d 0h 47m" style="margin-top: 0px;"></a></div><div class="event pokesprite eevee pokemon" data-label="Eevee
4d 1h 48m" data-time="0w 4d 1h 48m" style="left: 4172.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Eevee
4d 1h 48m" style="margin-top: 0px;"></div><div class="event pokesprite oddish pokemon" data-label="Oddish
4d 11h 32m" data-time="0w 4d 11h 32m" style="left: 4588.09px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Oddish
4d 11h 32m" style="margin-top: 0px;"></div><div class="event pokesprite flareon pokemon" data-label="Flareon
4d 14h 16m" data-time="0w 4d 14h 16m" style="left: 4704.71px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Flareon
4d 14h 16m" style="margin-top: 0px;"></div><div class="event pokesprite zubat pokemon" data-label="Zubat
6d 14h 4m" data-time="0w 6d 14h 4m" style="left: 6744.18px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Zubat
6d 14h 4m" style="margin-top: 0px;"></div><div class="event pokesprite hitmonlee pokemon" data-label="Hitmonlee
6d 22h 3m" data-time="0w 6d 22h 3m" style="left: 7084.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Hitmonlee
6d 22h 3m" style="margin-top: 0px;"></div><div class="event pokesprite gastly pokemon" data-label="Gastly
6d 23h 49m" data-time="0w 6d 23h 49m" style="left: 7160.18px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Gastly
6d 23h 49m" style="margin-top: 0px;"></div><div class="event pokesprite raticate pokemon" data-label="Raticate
7d 13h 18m" data-time="1w 0d 13h 18m" style="left: 7735.47px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Raticate
7d 13h 18m" style="margin-top: 0px;"></div><div class="event pokesprite gloom pokemon" data-label="Gloom
8d 1h 15m" data-time="1w 1d 1h 15m" style="left: 8245.33px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Gloom
8d 1h 15m" style="margin-top: 0px;"></div><div class="event badges" data-label="Soul Badge
8d 7h 18m" data-time="1w 1d 7h 18m" style="left: 8503.47px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/soul.png" alt="Soul Badge
8d 7h 18m" style="margin-top: 0px;"></a></div><div class="event pokesprite venonat pokemon" data-label="Venonat
8d 8h 5m" data-time="1w 1d 8h 5m" style="left: 8536.89px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Venonat
8d 8h 5m" style="margin-top: 4.1px;"></div><div class="event pokesprite nidoranm pokemon" data-label="NidoranM
8d 8h 10m" data-time="1w 1d 8h 10m" style="left: 8540.44px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="NidoranM
8d 8h 10m" style="margin-top: -8.5px;"></div><div class="event pokesprite paras pokemon" data-label="Paras
8d 8h 24m" data-time="1w 1d 8h 24m" style="left: 8550.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Paras
8d 8h 24m" style="margin-top: 4.5px;"></div><div class="event pokesprite exeggcute pokemon" data-label="Exeggcute
8d 9h 47m" data-time="1w 1d 9h 47m" style="left: 8609.42px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Exeggcute
8d 9h 47m" style="margin-top: 0px;"></div><div class="event pokesprite nidorino pokemon" data-label="Nidorino
8d 12h 29m" data-time="1w 1d 12h 29m" style="left: 8724.62px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Nidorino
8d 12h 29m" style="margin-top: 4.5px;"></div><div class="event pokesprite rhyhorn pokemon" data-label="Rhyhorn
8d 12h 57m" data-time="1w 1d 12h 57m" style="left: 8744.53px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Rhyhorn
8d 12h 57m" style="margin-top: -4.5px;"></div><div class="event pokesprite venomoth pokemon" data-label="Venomoth
8d 14h 37m" data-time="1w 1d 14h 37m" style="left: 8815.64px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Venomoth
8d 14h 37m" style="margin-top: 0px;"></div><div class="event pokesprite lapras pokemon" data-label="Lapras
8d 22h 59m" data-time="1w 1d 22h 59m" style="left: 9172.62px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Lapras
8d 22h 59m" style="margin-top: 0px;"></div><div class="event badges" data-label="Marsh Badge
9d 18h 25m" data-time="1w 2d 18h 25m" style="left: 10001.8px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/marsh.png" alt="Marsh Badge
9d 18h 25m" style="margin-top: 0px;"></a></div><div class="event pokesprite zapdos pokemon" data-label="Zapdos
10d 7h 49m" data-time="1w 3d 7h 49m" style="left: 10573.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Zapdos
10d 7h 49m" style="margin-top: 0px;"></div><div class="event pokesprite geodude pokemon" data-label="Geodude
10d 9h 54m" data-time="1w 3d 9h 54m" style="left: 10662.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Geodude
10d 9h 54m" style="margin-top: 0px;"></div><div class="event pokesprite nidoking pokemon" data-label="Nidoking
11d 6h 44m" data-time="1w 4d 6h 44m" style="left: 11551.3px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Nidoking
11d 6h 44m" style="margin-top: 0px;"></div><div class="event pokesprite omanyte pokemon" data-label="Omanyte
11d 10h 36m" data-time="1w 4d 10h 36m" style="left: 11716.3px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Omanyte
11d 10h 36m" style="margin-top: 0px;"></div><div class="event badges" data-label="Volcano Badge
12d 8h 27m" data-time="1w 5d 8h 27m" style="left: 12648.5px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/volcano.png" alt="Volcano Badge
12d 8h 27m" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Earth Badge
13d 13h 55m" data-time="1w 6d 13h 55m" style="left: 13905.8px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/earth.png" alt="Earth Badge
13d 13h 55m" style="margin-top: 0px;"></a></div><div class="event pokesprite omastar pokemon" data-label="Omastar
14d 17h 58m" data-time="2w 0d 17h 58m" style="left: 15102.6px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Omastar
14d 17h 58m" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Lorelei
15d 18h 26m
(4 Attempts)" data-time="2w 1d 18h 26m" style="left: 16146.5px; display: block; margin-top: 0px;"><img src="img/trainers/red/lorelei.png" alt="Lorelei
15d 18h 26m
(4 Attempts)" style="margin-top: 13.5px;"></div><div class="event elitefour" data-label="Bruno
15d 18h 33m
(1 Attempt)" data-time="2w 1d 18h 33m" style="left: 16151.5px; display: block; margin-top: 0px;"><img src="img/trainers/red/bruno.png" alt="Bruno
15d 18h 33m
(1 Attempt)" style="margin-top: -27px;"></div><div class="event elitefour" data-label="Agatha
15d 19h 15m
(2 Attempts)" data-time="2w 1d 19h 15m" style="left: 16181.3px; display: block; margin-top: 0px;"><img src="img/trainers/red/agatha.png" alt="Agatha
15d 19h 15m
(2 Attempts)" style="margin-top: 27.8px;"></div><div class="event elitefour" data-label="Lance
15d 19h 32m
(1 Attempt)" data-time="2w 1d 19h 32m" style="left: 16193.4px; display: block; margin-top: 0px;"><img src="img/trainers/red/lance.png" alt="Lance
15d 19h 32m
(1 Attempt)" style="margin-top: -13.8px;"></div><div class="event champions" data-label="BLUE
16d 7h 45m 30s
(2 Attempts)" data-time="2w 2d 7h 45m 30s" style="left: 16715px; display: block; margin-top: 0px;"><img src="img/trainers/red/blue.png" alt="BLUE
16d 7h 45m 30s
(2 Attempts)" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run crystal" data-duration="1w 6d 2h 2m" data-endtime="1w 6d 8h 58m" data-start="1393761600" data-label="Crystal: 13d 2h 2m" data-startdate="2014/03/02 12:00 UTC" id="crystal" style="color: rgb(56, 93, 138); border-color: rgb(56, 93, 138); width: 13398.8px; margin-left: 0px; background-color: rgb(79, 129, 189);"><div class="event hosts" data-label="AJDNNW" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/ajdnnw.png" alt="AJDNNW" style="margin-top: 0px;"></a></div><div class="event pokesprite totodile pokemon" data-label="Totodile
0d 0h 15m" data-time="0w 0d 0h 15m" style="left: 10.6667px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Totodile
0d 0h 15m" style="margin-top: 0px;"></div><div class="event pokesprite pidgey pokemon" data-label="Pidgey
0d 4h 58m" data-time="0w 0d 4h 58m" style="left: 211.911px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgey
0d 4h 58m" style="margin-top: -4.8px;"></div><div class="event pokesprite sentret pokemon" data-label="Sentret
0d 5h 22m" data-time="0w 0d 5h 22m" style="left: 228.978px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Sentret
0d 5h 22m" style="margin-top: 8.6px;"></div><div class="event pokesprite caterpie pokemon" data-label="Caterpie
0d 5h 34m" data-time="0w 0d 5h 34m" style="left: 237.511px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Caterpie
0d 5h 34m" style="margin-top: -4.6px;"></div><div class="event badges" data-label="Zephyr Badge
0d 8h 5m 14s" data-time="0w 0d 8h 5m 14s" style="left: 345.055px; display: block; margin-top: 0px;"><img src="img/badges/zephyr.png" alt="Zephyr Badge
0d 8h 5m 14s" style="margin-top: 0px;"></div><div class="event pokesprite togepi pokemon" data-label="Togepi
0d 12h 10m" data-time="0w 0d 12h 10m" style="left: 519.111px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Togepi
0d 12h 10m" style="margin-top: 0px;"></div><div class="event pokesprite wooper pokemon" data-label="Wooper
0d 14h 6m" data-time="0w 0d 14h 6m" style="left: 601.6px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Wooper
0d 14h 6m" style="margin-top: 0px;"></div><div class="event badges" data-label="Hive Badge
0d 20h 38m" data-time="0w 0d 20h 38m" style="left: 880.356px; display: block; margin-top: 0px;"><img src="img/badges/hive.png" alt="Hive Badge
0d 20h 38m" style="margin-top: 0px;"></div><div class="event badges" data-label="Plain Badge
1d 5h 54m 8s" data-time="0w 1d 5h 54m 8s" style="left: 1275.83px; display: block; margin-top: 0px;"><img src="img/badges/plain.png" alt="Plain Badge
1d 5h 54m 8s" style="margin-top: 0px;"></div><div class="event pokesprite croconaw pokemon" data-label="Croconaw
1d 10h 16m" data-time="0w 1d 10h 16m" style="left: 1462.04px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Croconaw
1d 10h 16m" style="margin-top: 0px;"></div><div class="event pokesprite smoochum pokemon" data-label="Smoochum
1d 14h 56m" data-time="0w 1d 14h 56m" style="left: 1661.16px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Smoochum
1d 14h 56m" style="margin-top: 0px;"></div><div class="event pokesprite hoothoot pokemon" data-label="Hoothoot
1d 16h 9m" data-time="0w 1d 16h 9m" style="left: 1713.07px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Hoothoot
1d 16h 9m" style="margin-top: 4.2px;"></div><div class="event pokesprite drowzee pokemon" data-label="Drowzee
1d 16h 42m" data-time="0w 1d 16h 42m" style="left: 1736.53px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Drowzee
1d 16h 42m" style="margin-top: -4.2px;"></div><div class="event pokesprite eevee pokemon" data-label="Eevee
1d 17h 24m" data-time="0w 1d 17h 24m" style="left: 1766.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Eevee
1d 17h 24m" style="margin-top: 0px;"></div><div class="event pokesprite koffing pokemon" data-label="Koffing
1d 20h 24m" data-time="0w 1d 20h 24m" style="left: 1894.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Koffing
1d 20h 24m" style="margin-top: 0px;"></div><div class="event pokesprite metapod pokemon" data-label="Metapod
1d 23h 19m" data-time="0w 1d 23h 19m" style="left: 2018.84px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Metapod
1d 23h 19m" style="margin-top: 0px;"></div><div class="event pokesprite feraligatr pokemon" data-label="Feraligatr
2d 0h 23m" data-time="0w 2d 0h 23m" style="left: 2064.36px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Feraligatr
2d 0h 23m" style="margin-top: 0px;"></div><div class="event pokesprite raticate pokemon" data-label="Raticate
2d 2h 55m" data-time="0w 2d 2h 55m" style="left: 2172.44px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Raticate
2d 2h 55m" style="margin-top: 0px;"></div><div class="event pokesprite zubat pokemon" data-label="Zubat
2d 3h 54m" data-time="0w 2d 3h 54m" style="left: 2214.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Zubat
2d 3h 54m" style="margin-top: 0px;"></div><div class="event badges" data-label="Fog Badge
2d 14h 30m 3s" data-time="0w 2d 14h 30m 3s" style="left: 2666.7px; display: block; margin-top: 0px;"><img src="img/badges/fog.png" alt="Fog Badge
2d 14h 30m 3s" style="margin-top: 0px;"></div><div class="event badges" data-label="Storm Badge
3d 5h 30m 45s" data-time="0w 3d 5h 30m 45s" style="left: 3307.2px; display: block; margin-top: 0px;"><img src="img/badges/storm.png" alt="Storm Badge
3d 5h 30m 45s" style="margin-top: 0px;"></div><div class="event pokesprite shuckle pokemon" data-label="Shuckle
3d 8h 56m" data-time="0w 3d 8h 56m" style="left: 3453.16px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Shuckle
3d 8h 56m" style="margin-top: 0px;"></div><div class="event badges" data-label="Mineral Badge
3d 16h 3m" data-time="0w 3d 16h 3m" style="left: 3756.8px; display: block; margin-top: 0px;"><img src="img/badges/mineral.png" alt="Mineral Badge
3d 16h 3m" style="margin-top: 0px;"></div><div class="event pokesprite pidgeotto pokemon" data-label="Pidgeotto
3d 22h 53m" data-time="0w 3d 22h 53m" style="left: 4048.36px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgeotto
3d 22h 53m" style="margin-top: 0px;"></div><div class="event pokesprite pidgeot pokemon" data-label="Pidgeot
4d 7h 19m" data-time="0w 4d 7h 19m" style="left: 4408.18px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgeot
4d 7h 19m" style="margin-top: 0px;"></div><div class="event badges" data-label="Glacier Badge
4d 12h 18m 40s" data-time="0w 4d 12h 18m 40s" style="left: 4621.27px; display: block; margin-top: 0px;"><img src="img/badges/glacier.png" alt="Glacier Badge
4d 12h 18m 40s" style="margin-top: 0px;"></div><div class="event pokesprite espeon pokemon" data-label="Espeon
6d 0h 54m" data-time="0w 6d 0h 54m" style="left: 6182.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Espeon
6d 0h 54m" style="margin-top: 0px;"></div><div class="event badges" data-label="Rising Badge
6d 23h 36m" data-time="0w 6d 23h 36m" style="left: 7150.93px; display: block; margin-top: 0px;"><img src="img/badges/rising.png" alt="Rising Badge
6d 23h 36m" style="margin-top: 0px;"></div><div class="event pokesprite dratini pokemon" data-label="Dratini
6d 23h 39m" data-time="0w 6d 23h 39m" style="left: 7153.07px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Dratini
6d 23h 39m" style="margin-top: 0px;"></div><div class="event pokesprite goldeen pokemon" data-label="Goldeen
7d 2h 52m" data-time="1w 0d 2h 52m" style="left: 7290.31px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Goldeen
7d 2h 52m" style="margin-top: 0px;"></div><div class="event pokesprite tentacool pokemon" data-label="Tentacool
7d 16h 30m" data-time="1w 0d 16h 30m" style="left: 7872px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Tentacool
7d 16h 30m" style="margin-top: 0px;"></div><div class="event pokesprite noctowl pokemon" data-label="Noctowl
7d 17h 51m" data-time="1w 0d 17h 51m" style="left: 7929.6px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Noctowl
7d 17h 51m" style="margin-top: 0px;"></div><div class="event pokesprite graveler pokemon" data-label="Graveler
7d 20h 15m" data-time="1w 0d 20h 15m" style="left: 8032px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Graveler
7d 20h 15m" style="margin-top: 0px;"></div><div class="event pokesprite dragonair pokemon" data-label="Dragonair
8d 0h 13m" data-time="1w 1d 0h 13m" style="left: 8201.24px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Dragonair
8d 0h 13m" style="margin-top: 0px;"></div><div class="event pokesprite ponyta pokemon" data-label="Ponyta
8d 1h 58m" data-time="1w 1d 1h 58m" style="left: 8275.91px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Ponyta
8d 1h 58m" style="margin-top: 0px;"></div><div class="event pokesprite doduo pokemon" data-label="Doduo
8d 2h 53m" data-time="1w 1d 2h 53m" style="left: 8315.02px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Doduo
8d 2h 53m" style="margin-top: -4.1px;"></div><div class="event pokesprite onix pokemon" data-label="Onix
8d 3h 14m" data-time="1w 1d 3h 14m" style="left: 8329.96px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Onix
8d 3h 14m" style="margin-top: 4.1px;"></div><div class="event elitefour" data-label="Will
8d 6h 36m
(1 Attempt)" data-time="1w 1d 6h 36m" style="left: 8473.6px; display: block; margin-top: 0px;"><img src="img/trainers/crystal/will.png" alt="Will
8d 6h 36m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Koga
8d 11h 52m
(9 Attempts)" data-time="1w 1d 11h 52m" style="left: 8698.31px; display: block; margin-top: 0px;"><img src="img/trainers/crystal/koga.png" alt="Koga
8d 11h 52m
(9 Attempts)" style="margin-top: 0px;"></div><div class="event pokesprite golbat pokemon" data-label="Golbat
8d 13h 45m" data-time="1w 1d 13h 45m" style="left: 8778.67px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Golbat
8d 13h 45m" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Bruno
8d 22h 31m
(3 Attempts)" data-time="1w 1d 22h 31m" style="left: 9152.71px; display: block; margin-top: 0px;"><img src="img/trainers/crystal/bruno.png" alt="Bruno
8d 22h 31m
(3 Attempts)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Karen
9d 14h 27m
(5 Attempts)" data-time="1w 2d 14h 27m" style="left: 9832.53px; display: block; margin-top: 0px;"><img src="img/trainers/crystal/karen.png" alt="Karen
9d 14h 27m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event pokesprite steelix pokemon" data-label="Steelix
9d 16h 29m" data-time="1w 2d 16h 29m" style="left: 9919.29px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Steelix
9d 16h 29m" style="margin-top: 0px;"></div><div class="event champions" data-label="Lance
9d 21h 24m
(4 Attempts)" data-time="1w 2d 21h 24m" style="left: 10129.1px; display: block; margin-top: 0px;"><img src="img/trainers/crystal/lance.png" alt="Lance
9d 21h 24m
(4 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Thunder Badge
10d 4h 54m" data-time="1w 3d 4h 54m" style="left: 10449.1px; display: block; margin-top: 0px;"><img src="img/badges/thunder.png" alt="Thunder Badge
10d 4h 54m" style="margin-top: 0px;"></div><div class="event badges" data-label="Marsh Badge
10d 6h 19m 43s" data-time="1w 3d 6h 19m 43s" style="left: 10510px; display: block; margin-top: 0px;"><img src="img/badges/marsh.png" alt="Marsh Badge
10d 6h 19m 43s" style="margin-top: 0px;"></div><div class="event badges" data-label="Rainbow Badge
10d 8h 13m 46s" data-time="1w 3d 8h 13m 46s" style="left: 10591.1px; display: block; margin-top: 0px;"><img src="img/badges/rainbow.png" alt="Rainbow Badge
10d 8h 13m 46s" style="margin-top: 0px;"></div><div class="event badges" data-label="Cascade Badge
11d 3h 21m" data-time="1w 4d 3h 21m" style="left: 11406.9px; display: block; margin-top: 0px;"><img src="img/badges/cascade.png" alt="Cascade Badge
11d 3h 21m" style="margin-top: 0px;"></div><div class="event pokesprite dragonite pokemon" data-label="Dragonite
11d 8h 27m" data-time="1w 4d 8h 27m" style="left: 11624.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Dragonite
11d 8h 27m" style="margin-top: 0px;"></div><div class="event badges" data-label="Soul Badge
11d 10h 28m 31s" data-time="1w 4d 10h 28m 31s" style="left: 11710.9px; display: block; margin-top: 0px;"><img src="img/badges/soul.png" alt="Soul Badge
11d 10h 28m 31s" style="margin-top: 0px;"></div><div class="event badges" data-label="Boulder Badge
11d 16h 27m 28s" data-time="1w 4d 16h 27m 28s" style="left: 11966.2px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/boulder.png" alt="Boulder Badge
11d 16h 27m 28s" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Volcano Badge
11d 19h 0m" data-time="1w 4d 19h 0m" style="left: 12074.7px; display: block; margin-top: 0px;"><img src="img/badges/volcano.png" alt="Volcano Badge
11d 19h 0m" style="margin-top: 0px;"></div><div class="event badges" data-label="Earth Badge
11d 22h 24m 42s" data-time="1w 4d 22h 24m 42s" style="left: 12220.2px; display: block; margin-top: 0px;"><img src="img/badges/earth.png" alt="Earth Badge
11d 22h 24m 42s" style="margin-top: 0px;"></div><div class="event pasthosts" data-label="RED
13d 2h 2m
(7 Attempts)" data-time="1w 6d 2h 2m" style="left: 13398.8px; display: block; margin-top: 0px;"><img src="img/hosts/red.png" alt="RED
13d 2h 2m
(7 Attempts)" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run emerald" data-duration="2w 6d 21h 56m" data-endtime="2w 6d 22h 2m" data-start="1395450000" data-label="Emerald: 20d 21h 56m" data-startdate="2014/03/22 01:00 UTC" id="emerald" style="color: rgb(113, 137, 63); border-color: rgb(113, 137, 63); width: 21415.8px; margin-left: 0px; background-color: rgb(155, 187, 89);"><div class="event hosts" data-label="A" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/a.png" alt="A" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Stone Badge
1d 5h 42m
(9 Attempts)" data-time="0w 1d 5h 42m" style="left: 1267.2px; display: block; margin-top: 0px;"><img src="img/badges/stone.png" alt="Stone Badge
1d 5h 42m
(9 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Knuckle Badge
1d 18h 49m
(4 Attempts)" data-time="0w 1d 18h 49m" style="left: 1826.84px; display: block; margin-top: 0px;"><img src="img/badges/knuckle.png" alt="Knuckle Badge
1d 18h 49m
(4 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Dynamo Badge
4d 8h 31m
(23 Attempts)" data-time="0w 4d 8h 31m" style="left: 4459.38px; display: block; margin-top: 0px;"><img src="img/badges/dynamo.png" alt="Dynamo Badge
4d 8h 31m
(23 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Heat Badge
5d 16h 39m
(1 Attempt)" data-time="0w 5d 16h 39m" style="left: 5830.4px; display: block; margin-top: 0px;"><img src="img/badges/heat.png" alt="Heat Badge
5d 16h 39m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Balance Badge
5d 21h 57m
(1 Attempt)" data-time="0w 5d 21h 57m" style="left: 6056.53px; display: block; margin-top: 0px;"><img src="img/badges/balance.png" alt="Balance Badge
5d 21h 57m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Feather Badge
8d 10h 25m
(2 Attempts)" data-time="1w 1d 10h 25m" style="left: 8636.44px; display: block; margin-top: 0px;"><img src="img/badges/feather.png" alt="Feather Badge
8d 10h 25m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Mind Badge
11d 15h 43m
(4 Attempts)" data-time="1w 4d 15h 43m" style="left: 11934.6px; display: block; margin-top: 0px;"><img src="img/badges/mind.png" alt="Mind Badge
11d 15h 43m
(4 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Rain Badge
14d 2h 22m
(1 Attempt)" data-time="2w 0d 2h 22m" style="left: 14437px; display: block; margin-top: 0px;"><img src="img/badges/rain.png" alt="Rain Badge
14d 2h 22m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Sidney
14d 15h 8m
(2 Attempts)" data-time="2w 0d 15h 8m" style="left: 14981.7px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/sidney.png" alt="Sidney
14d 15h 8m
(2 Attempts)" style="margin-top: 14px;"></div><div class="event elitefour" data-label="Phoebe
14d 15h 22m
(1 Attempt)" data-time="2w 0d 15h 22m" style="left: 14991.6px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/phoebe.png" alt="Phoebe
14d 15h 22m
(1 Attempt)" style="margin-top: -14px;"></div><div class="event elitefour" data-label="Glacia
15d 0h 50m
(5 Attempts)" data-time="2w 1d 0h 50m" style="left: 15395.6px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/glacia.png" alt="Glacia
15d 0h 50m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Drake
17d 7h 39m
(19 Attempts)" data-time="2w 3d 7h 39m" style="left: 17734.4px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/drake.png" alt="Drake
17d 7h 39m
(19 Attempts)" style="margin-top: 0px;"></div><div class="event champions" data-label="Wallace
20d 21h 56m
(21 Attempts)" data-time="2w 6d 21h 56m" style="left: 21415.8px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/wallace.png" alt="Wallace
20d 21h 56m
(21 Attempts)" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run randomizedfirered" data-duration="2w 1d 2h 2m" data-endtime="2w 1d 2h 10m" data-start="1397268000" data-label="Randomized FireRed: 15d 2h 2m" data-startdate="2014/04/12 02:00 UTC" id="randomizedfirered" style="color: rgb(139, 83, 37); border-color: rgb(139, 83, 37); width: 15446.8px; margin-left: 0px; background-color: rgb(255, 126, 27);"><div class="event hosts" data-label="A" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/a2.png" alt="A" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Cocoon (Boulder) Badge
0d 19h 44m
(2 Attempts)" data-time="0w 0d 19h 44m" style="left: 841.956px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/2318l8/i_decided_to_try_and_make_custom_badges_to_fit/" target="_blank"><img src="img/firered/cocoon.png" alt="Cocoon (Boulder) Badge
0d 19h 44m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Chemical (Cascade) Badge
1d 16h 1m
(1 Attempt)" data-time="0w 1d 16h 1m" style="left: 1707.38px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/2318l8/i_decided_to_try_and_make_custom_badges_to_fit/" target="_blank"><img src="img/firered/chemical.png" alt="Chemical (Cascade) Badge
1d 16h 1m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Shale (Thunder) Badge
2d 12h 12m
(4 Attempts)" data-time="0w 2d 12h 12m" style="left: 2568.53px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/2318l8/i_decided_to_try_and_make_custom_badges_to_fit/" target="_blank"><img src="img/firered/shale.png" alt="Shale (Thunder) Badge
2d 12h 12m
(4 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Snowflake (Rainbow) Badge
6d 15h 12m
(2 Attempts)" data-time="0w 6d 15h 12m" style="left: 6792.53px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/23d9sj/snow_princess_erica_and_snowflake_badge/" target="_blank"><img src="img/firered/snowflake.png" alt="Snowflake (Rainbow) Badge
6d 15h 12m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Target (Marsh) Badge
8d 12h 37m
(1 Attempt)" data-time="1w 1d 12h 37m" style="left: 8730.31px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/23irff/sabrinas_new_badge_the_target_badge/" target="_blank"><img src="img/firered/target.png" alt="Target (Marsh) Badge
8d 12h 37m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Seraphim (Soul) Badge
10d 4h 50m
(7 Attempts)" data-time="1w 3d 4h 50m" style="left: 10446.2px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/23lect/flying_type_koga_and_seraphim_badge/" target="_blank"><img src="img/firered/seraphim.png" alt="Seraphim (Soul) Badge
10d 4h 50m
(7 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Fossil (Volcano) Badge
11d 4h 1m
(1 Attempt)" data-time="1w 4d 4h 1m" style="left: 11435.4px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/23qqwb/rocktype_blaines_badge_the_fossil_badge_name/?ref=search_posts" target="_blank"><img src="img/firered/fossil.png" alt="Fossil (Volcano) Badge
11d 4h 1m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Discipline (Earth) Badge
11d 13h 39m
(1 Attempt)" data-time="1w 4d 13h 39m" style="left: 11846.4px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/23rzlb/and_heres_a_possible_design_for_giovannis_badge/" target="_blank"><img src="img/firered/impact.png" alt="Discipline (Earth) Badge
11d 13h 39m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event elitefour" data-label="Lorelei
14d 21h 10m
(2 Attempts)" data-time="2w 0d 21h 10m" style="left: 15239.1px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/24321f/elite_four_sprites/" target="_blank"><img src="img/firered/lorelei.png" alt="Lorelei
14d 21h 10m
(2 Attempts)" style="margin-top: 11.4px;"></a></div><div class="event elitefour" data-label="Bruno
14d 21h 15m
(1 Attempt)" data-time="2w 0d 21h 15m" style="left: 15242.7px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/24321f/elite_four_sprites/" target="_blank"><img src="img/firered/bruno.png" alt="Bruno
14d 21h 15m
(1 Attempt)" style="margin-top: -20.95px;"></a></div><div class="event elitefour" data-label="Agatha
14d 21h 21m
(1 Attempt)" data-time="2w 0d 21h 21m" style="left: 15246.9px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/24321f/elite_four_sprites/" target="_blank"><img src="img/firered/agatha.png" alt="Agatha
14d 21h 21m
(1 Attempt)" style="margin-top: 9.95px;"></a></div><div class="event elitefour" data-label="Lance
15d 0h 31m
(4 Attempts)" data-time="2w 1d 0h 31m" style="left: 15382px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/24321f/elite_four_sprites/" target="_blank"><img src="img/firered/lance.png" alt="Lance
15d 0h 31m
(4 Attempts)" style="margin-top: -13.55px;"></a></div><div class="event champions" data-label="Green
15d 2h 1m
(3 Attempts)" data-time="2w 1d 2h 1m" style="left: 15446px; display: block; margin-top: 0px;"><img src="img/trainers/firered/green.png" alt="Green
15d 2h 1m
(3 Attempts)" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run platinum" data-duration="2w 3d 11h 38m 42s" data-endtime="2w 3d 11h 38m 42s" data-start="1399089600" data-label="Platinum: 17d 11h 38m 42s" data-startdate="2014/05/03 04:00 UTC" id="platinum" style="color: rgb(64, 64, 64); border-color: rgb(64, 64, 64); width: 17904.9px; margin-left: 0px; background-color: rgb(166, 166, 166);"><div class="event hosts" data-label="nqpppnl" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/nqpppnl.png" alt="nqpppnl" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Coal Badge
0d 23h 8m
(5 Attempts)" data-time="0w 0d 23h 8m" style="left: 987.022px; display: block; margin-top: 0px;"><img src="img/badges/coal.png" alt="Coal Badge
0d 23h 8m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Forest Badge
1d 22h 44m
(3 Attempts)" data-time="0w 1d 22h 44m" style="left: 1993.96px; display: block; margin-top: 0px;"><img src="img/badges/forest.png" alt="Forest Badge
1d 22h 44m
(3 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Relic Badge
3d 17h 50m
(6 Attempts)" data-time="0w 3d 17h 50m" style="left: 3832.89px; display: block; margin-top: 0px;"><img src="img/badges/relic.png" alt="Relic Badge
3d 17h 50m
(6 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Cobble Badge
5d 16h 15m
(4 Attempts)" data-time="0w 5d 16h 15m" style="left: 5813.33px; display: block; margin-top: 0px;"><img src="img/badges/cobble.png" alt="Cobble Badge
5d 16h 15m
(4 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Fen Badge
7d 6h 34m
(3 Attempts)" data-time="1w 0d 6h 34m" style="left: 7448.18px; display: block; margin-top: 0px;"><img src="img/badges/fen.png" alt="Fen Badge
7d 6h 34m
(3 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Mine Badge
9d 8h 47m
(2 Attempts)" data-time="1w 2d 8h 47m" style="left: 9590.76px; display: block; margin-top: 0px;"><img src="img/badges/mine.png" alt="Mine Badge
9d 8h 47m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Icicle Badge
10d 22h 58m
(2 Attempts)" data-time="1w 3d 22h 58m" style="left: 11219.9px; display: block; margin-top: 0px;"><img src="img/badges/icicle.png" alt="Icicle Badge
10d 22h 58m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Beacon Badge
15d 12h 57m
(2 Attempts)" data-time="2w 1d 12h 57m" style="left: 15912.5px; display: block; margin-top: 0px;"><img src="img/badges/beacon.png" alt="Beacon Badge
15d 12h 57m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Aaron
16d 3h 39m
(1 Attempt)" data-time="2w 2d 3h 39m" style="left: 16539.7px; display: block; margin-top: 0px;"><img src="img/trainers/platinum/aaron.png" alt="Aaron
16d 3h 39m
(1 Attempt)" style="margin-top: 13px;"></div><div class="event elitefour" data-label="Bertha
16d 3h 49m
(1 Attempt)" data-time="2w 2d 3h 49m" style="left: 16546.8px; display: block; margin-top: 0px;"><img src="img/trainers/platinum/bertha.png" alt="Bertha
16d 3h 49m
(1 Attempt)" style="margin-top: -13px;"></div><div class="event elitefour" data-label="Flint
16d 16h 50m
(10 Attempts)" data-time="2w 2d 16h 50m" style="left: 17102.2px; display: block; margin-top: 0px;"><img src="img/trainers/platinum/flint.png" alt="Flint
16d 16h 50m
(10 Attempts)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Lucian
17d 1h 21m
(4 Attempts)" data-time="2w 3d 1h 21m" style="left: 17465.6px; display: block; margin-top: 0px;"><img src="img/trainers/platinum/lucian.png" alt="Lucian
17d 1h 21m
(4 Attempts)" style="margin-top: 0px;"></div><div class="event champions" data-label="Cynthia
17d 11h 38m 42s
(13 Attempts)" data-time="2w 3d 11h 38m 42s" style="left: 17904.9px; display: block; margin-top: 0px;"><img src="img/trainers/platinum/cynthia.png" alt="Cynthia
17d 11h 38m 42s
(13 Attempts)" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run randomizedheartgold" data-duration="2w 4d 20h 33m" data-endtime="2w 4d 20h 33m" data-start="1400904000" data-label="Randomized HeartGold: 18d 20h 33m" data-startdate="2014/05/24 04:00 UTC" id="randomizedheartgold" style="color: rgb(148, 84, 28); border-color: rgb(148, 84, 28); width: 19308.8px; margin-left: 0px; background-color: rgb(255, 188, 27);"><div class="event hosts" data-label="aoooo" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/aoooo.png" alt="aoooo" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Jet (Zephyr) Badge
0d 14h 23m
(2 Attempts)" data-time="0w 0d 14h 23m" style="left: 613.689px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/26e3fo/jet_badge_design_idea/" target="_blank"><img src="img/heartgold/jet.png" alt="Jet (Zephyr) Badge
0d 14h 23m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Powers (Hive) Badge
1d 7h 24m
(3 Attempts)" data-time="0w 1d 7h 24m" style="left: 1339.73px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/26h4hi/the_new_badges_i_made_for_the_side_bar_d/" target="_blank"><img src="img/heartgold/powers.png" alt="Powers (Hive) Badge
1d 7h 24m
(3 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Magnetic (Plain) Badge
1d 16h 34m
(1 Attempt)" data-time="0w 1d 16h 34m" style="left: 1730.84px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/26h4hi/the_new_badges_i_made_for_the_side_bar_d/" target="_blank"><img src="img/heartgold/magnetic.png" alt="Magnetic (Plain) Badge
1d 16h 34m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Rock (Fog) Badge
3d 10h 25m
(1 Attempt)" data-time="0w 3d 10h 25m" style="left: 3516.44px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/26mv9h/the_rock_badge/" target="_blank"><img src="img/heartgold/rock.png" alt="Rock (Fog) Badge
3d 10h 25m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Sabselkrow (Glacier) Badge
4d 9h 45m
(2 Attempts)" data-time="0w 4d 9h 45m" style="left: 4512px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xjd8u/randomized_heartgold_custom_badge_artwork_anyone/cy58xhp" target="_blank"><img src="img/heartgold/glacier.png" alt="Sabselkrow (Glacier) Badge
4d 9h 45m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Hitcross (Storm) Badge
4d 14h 33m
(2 Attempts)" data-time="0w 4d 14h 33m" style="left: 4716.8px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xjd8u/randomized_heartgold_custom_badge_artwork_anyone/cy58xhp" target="_blank"><img src="img/heartgold/storm.png" alt="Hitcross (Storm) Badge
4d 14h 33m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Mythical (Mineral) Badge
5d 4h 9m
(6 Attempts)" data-time="0w 5d 4h 9m" style="left: 5297.07px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/26qu89/mythical_badge/" target="_blank"><img src="img/heartgold/mythical.png" alt="Mythical (Mineral) Badge
5d 4h 9m
(6 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Thief (Rising) Badge
6d 19h 40m
(3 Attempts)" data-time="0w 6d 19h 40m" style="left: 6983.11px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/26wvte/the_thief_badge/" target="_blank"><img src="img/heartgold/thief.png" alt="Thief (Rising) Badge
6d 19h 40m
(3 Attempts)" style="margin-top: 0px;"></a></div><div class="event elitefour" data-label="Will
8d 21h 53m" data-time="1w 1d 21h 53m" style="left: 9125.69px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/272tjl/archeologists_and_diggers_have_already_been_done/" target="_blank"><img src="img/heartgold/will.png" alt="Will
8d 21h 53m" style="margin-top: 0px;"></a></div><div class="event elitefour" data-label="Koga
11d 3h 58m" data-time="1w 4d 3h 58m" style="left: 11433.2px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/272wf0/couldnt_think_of_what_a_psychic_type_koga_would/" target="_blank"><img src="img/heartgold/koga.png" alt="Koga
11d 3h 58m" style="margin-top: -13.45px;"></a></div><div class="event elitefour" data-label="Bruno
11d 4h 2m" data-time="1w 4d 4h 2m" style="left: 11436.1px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/27cgk2/so_before_i_forget_here_are_bruno_and_karens/" target="_blank"><img src="img/heartgold/bruno.png" alt="Bruno
11d 4h 2m" style="margin-top: 13.45px;"></a></div><div class="event elitefour" data-label="Karen
11d 8h 16m" data-time="1w 4d 8h 16m" style="left: 11616.7px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/27cgk2/so_before_i_forget_here_are_bruno_and_karens/" target="_blank"><img src="img/heartgold/karen.png" alt="Karen
11d 8h 16m" style="margin-top: -8.4px;"></a></div><div class="event champions" data-label="Lance
11d 9h 9m" data-time="1w 4d 9h 9m" style="left: 11654.4px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/27iqep/displaying_them_all_in_one_go_all_sprites_for_gym/" target="_blank"><img src="img/heartgold/lance.png" alt="Lance
11d 9h 9m" style="margin-top: 8.4px;"></a></div><div class="event badges" data-label="Collector (Thunder) Badge
12d 2h 3m
(2 Attempts)" data-time="1w 5d 2h 3m" style="left: 12375.5px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/27d3fu/the_collector_badge/" target="_blank"><img src="img/heartgold/collector.png" alt="Collector (Thunder) Badge
12d 2h 3m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Harmony (Marsh) Badge
12d 4h 40m
(1 Attempt)" data-time="1w 5d 4h 40m" style="left: 12487.1px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/23iywq/sabrinas_harmony_badge/" target="_blank"><img src="img/heartgold/harmony.png" alt="Harmony (Marsh) Badge
12d 4h 40m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Spark (Rainbow) Badge
12d 7h 33m
(2 Attempts)" data-time="1w 5d 7h 33m" style="left: 12610.1px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xjd8u/randomized_heartgold_custom_badge_artwork_anyone/cy58xhp" target="_blank"><img src="img/heartgold/rainbow.png" alt="Spark (Rainbow) Badge
12d 7h 33m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Leaf (Soul) Badge
12d 9h 19m
(1 Attempt)" data-time="1w 5d 9h 19m" style="left: 12685.5px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xjd8u/randomized_heartgold_custom_badge_artwork_anyone/cy58xhp" target="_blank"><img src="img/heartgold/soul.png" alt="Leaf (Soul) Badge
12d 9h 19m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Fire (Cascade) Badge
12d 17h 54m
(1 Attempt)" data-time="1w 5d 17h 54m" style="left: 13051.7px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xjd8u/randomized_heartgold_custom_badge_artwork_anyone/cy58xhp" target="_blank"><img src="img/heartgold/cascade.png" alt="Fire (Cascade) Badge
12d 17h 54m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Glacier (Boulder) Badge
13d 0h 2m
(1 Attempt)" data-time="1w 6d 0h 2m" style="left: 13313.4px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xjd8u/randomized_heartgold_custom_badge_artwork_anyone/cy58xhp" target="_blank"><img src="img/heartgold/boulder.png" alt="Glacier (Boulder) Badge
13d 0h 2m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="??? (Volcano) Badge
13d 4h 41m
(1 Attempt)" data-time="1w 6d 4h 41m" style="left: 13511.8px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xjd8u/randomized_heartgold_custom_badge_artwork_anyone/cy58xhp" target="_blank"><img src="img/heartgold/volcano.png" alt="??? (Volcano) Badge
13d 4h 41m
(1 Attempt)" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Multi-Type (Earth) Badge
14d 9h 23m
(2 Attempts)" data-time="2w 0d 9h 23m" style="left: 14736.4px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xjd8u/randomized_heartgold_custom_badge_artwork_anyone/cy58xhp" target="_blank"><img src="img/heartgold/earth.png" alt="Multi-Type (Earth) Badge
14d 9h 23m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event elitefourrematch" data-label="Will
15d 6h 33m
(4 Attempts)" data-time="2w 1d 6h 33m" style="left: 15639.5px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/272tjl/archeologists_and_diggers_have_already_been_done/" target="_blank"><img src="img/heartgold/rematch/will.png" alt="Will
15d 6h 33m
(4 Attempts)" style="margin-top: 0px;"></a></div><div class="event elitefourrematch" data-label="Koga
15d 12h 15m
(4 Attempts)" data-time="2w 1d 12h 15m" style="left: 15882.7px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/272wf0/couldnt_think_of_what_a_psychic_type_koga_would/" target="_blank"><img src="img/heartgold/rematch/koga.png" alt="Koga
15d 12h 15m
(4 Attempts)" style="margin-top: 0px;"></a></div><div class="event elitefourrematch" data-label="Bruno
15d 14h 46m
(2 Attempts)" data-time="2w 1d 14h 46m" style="left: 15990px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/27cgk2/so_before_i_forget_here_are_bruno_and_karens/" target="_blank"><img src="img/heartgold/rematch/bruno.png" alt="Bruno
15d 14h 46m
(2 Attempts)" style="margin-top: 0px;"></a></div><div class="event elitefourrematch" data-label="Karen
15d 18h 56m
(8 Attempts)" data-time="2w 1d 18h 56m" style="left: 16167.8px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/27cgk2/so_before_i_forget_here_are_bruno_and_karens/" target="_blank"><img src="img/heartgold/rematch/karen.png" alt="Karen
15d 18h 56m
(8 Attempts)" style="margin-top: 0px;"></a></div><div class="event elitefourrematch" data-label="Lance
16d 10h 56m
(5 Attempts)" data-time="2w 2d 10h 56m" style="left: 16850.5px; display: block; margin-top: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/27iqep/displaying_them_all_in_one_go_all_sprites_for_gym/" target="_blank"><img src="img/heartgold/rematch/lance.png" alt="Lance
16d 10h 56m
(5 Attempts)" style="margin-top: 0px;"></a></div><div class="event pasthosts" data-label="A
18d 20h 33m
(5 Attempts)" data-time="2w 4d 20h 33m" style="left: 19308.8px; display: block; margin-top: 0px;"><img src="img/hosts/a2.png" alt="A
18d 20h 33m
(5 Attempts)" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run black" data-duration="1w 5d 18h 19m" data-endtime="1w 5d 18h 19m" data-start="1402804800" data-label="Black: 12d 18h 19m" data-startdate="2014/06/15 04:00 UTC" id="black" style="color: black; border-color: black; width: 13069.5px; margin-left: 0px; background-color: rgb(53, 53, 53);"><div class="event hosts" data-label="GMYC" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/gmyc.png" alt="GMYC" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Trio Badge
0d 5h 55m
(5 Attempts)" data-time="0w 0d 5h 55m" style="left: 252.444px; display: block; margin-top: 0px;"><img src="img/badges/trio.png" alt="Trio Badge
0d 5h 55m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Basic Badge
1d 11h 59m
(5 Attempts)" data-time="0w 1d 11h 59m" style="left: 1535.29px; display: block; margin-top: 0px;"><img src="img/badges/basic.png" alt="Basic Badge
1d 11h 59m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Insect Badge
2d 17h 51m
(4 Attempts)" data-time="0w 2d 17h 51m" style="left: 2809.6px; display: block; margin-top: 0px;"><img src="img/badges/insect.png" alt="Insect Badge
2d 17h 51m
(4 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Bolt Badge
4d 9h 8m
(6 Attempts)" data-time="0w 4d 9h 8m" style="left: 4485.69px; display: block; margin-top: 0px;"><img src="img/badges/bolt.png" alt="Bolt Badge
4d 9h 8m
(6 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Quake Badge
4d 13h 46m
(2 Attempts)" data-time="0w 4d 13h 46m" style="left: 4683.38px; display: block; margin-top: 0px;"><img src="img/badges/quake.png" alt="Quake Badge
4d 13h 46m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Jet Badge
6d 2h 27m
(1 Attempt)" data-time="0w 6d 2h 27m" style="left: 6248.53px; display: block; margin-top: 0px;"><img src="img/badges/jet.png" alt="Jet Badge
6d 2h 27m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Freeze Badge
7d 3h 56m
(1 Attempt)" data-time="1w 0d 3h 56m" style="left: 7335.82px; display: block; margin-top: 0px;"><img src="img/badges/freeze.png" alt="Freeze Badge
7d 3h 56m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Legend Badge
9d 1h 27m
(2 Attempts)" data-time="1w 2d 1h 27m" style="left: 9277.87px; display: block; margin-top: 0px;"><img src="img/badges/legend.png" alt="Legend Badge
9d 1h 27m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Grimsley
10d 6h 42m
(1 Attempt)" data-time="1w 3d 6h 42m" style="left: 10525.9px; display: block; margin-top: 0px;"><img src="img/trainers/black/grimsley.png" alt="Grimsley
10d 6h 42m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Shauntal
10d 8h 18m
(3 Attempts)" data-time="1w 3d 8h 18m" style="left: 10594.1px; display: block; margin-top: 0px;"><img src="img/trainers/black/shauntal.png" alt="Shauntal
10d 8h 18m
(3 Attempts)" style="margin-top: -12.5px;"></div><div class="event elitefour" data-label="Marshal
10d 9h 2m
(3 Attempts)" data-time="1w 3d 9h 2m" style="left: 10625.4px; display: block; margin-top: 0px;"><img src="img/trainers/black/marshal.png" alt="Marshal
10d 9h 2m
(3 Attempts)" style="margin-top: 12.5px;"></div><div class="event elitefour" data-label="Caitlin
11d 1h 44m
(9 Attempts)" data-time="1w 4d 1h 44m" style="left: 11338px; display: block; margin-top: 0px;"><img src="img/trainers/black/caitlin.png" alt="Caitlin
11d 1h 44m
(9 Attempts)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="N
12d 18h 9m
(1 Attempt)" data-time="1w 5d 18h 9m" style="left: 13062.4px; display: block; margin-top: 0px;"><img src="img/trainers/black/n.png" alt="N
12d 18h 9m
(1 Attempt)" style="margin-top: 13.35px;"></div><div class="event champions" data-label="Ghetsis
12d 18h 19m
(1 Attempt)" data-time="1w 5d 18h 19m" style="left: 13069.5px; display: block; margin-top: 0px;"><img src="img/trainers/black/ghetsis.png" alt="Ghetsis
12d 18h 19m
(1 Attempt)" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run blazeblack2" data-duration="2w 5d 2h 16m" data-endtime="2w 5d 2h 16m" data-start="1404619200" data-label="Blaze Black 2: 19d 2h 16m" data-startdate="2014/07/06 04:00 UTC" id="blazeblack2" style="color: black; border-color: black; width: 19552.7px; margin-left: 0px; background-color: rgb(185, 215, 226);"><div class="event hosts" data-label="CL Y .," data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/cly.png" alt="CL Y .," style="margin-top: 0px;"></a></div><div class="event badges" data-label="Basic Badge
0d 16h 31m
(4 Attempts)" data-time="0w 0d 16h 31m" style="left: 704.711px; display: block; margin-top: 0px;"><img src="img/badges/basic.png" alt="Basic Badge
0d 16h 31m
(4 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Toxic Badge
1d 16h 39m
(7 Attempts)" data-time="0w 1d 16h 39m" style="left: 1734.4px; display: block; margin-top: 0px;"><img src="img/badges/toxic.png" alt="Toxic Badge
1d 16h 39m
(7 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Insect Badge
2d 20h 15m
(5 Attempts)" data-time="0w 2d 20h 15m" style="left: 2912px; display: block; margin-top: 0px;"><img src="img/badges/insect.png" alt="Insect Badge
2d 20h 15m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Bolt Badge
4d 1h 1m
(10 Attempts)" data-time="0w 4d 1h 1m" style="left: 4139.38px; display: block; margin-top: 0px;"><img src="img/badges/bolt.png" alt="Bolt Badge
4d 1h 1m
(10 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Quake Badge
5d 1h 11m
(9 Attempts)" data-time="0w 5d 1h 11m" style="left: 5170.49px; display: block; margin-top: 0px;"><img src="img/badges/quake.png" alt="Quake Badge
5d 1h 11m
(9 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Jet Badge
8d 22h 53m
(5 Attempts)" data-time="1w 1d 22h 53m" style="left: 9168.36px; display: block; margin-top: 0px;"><img src="img/badges/jet.png" alt="Jet Badge
8d 22h 53m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Legend Badge
9d 23h 24m
(2 Attempts)" data-time="1w 2d 23h 24m" style="left: 10214.4px; display: block; margin-top: 0px;"><img src="img/badges/legend.png" alt="Legend Badge
9d 23h 24m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Wave Badge
10d 7h 42m
(4 Attempts)" data-time="1w 3d 7h 42m" style="left: 10568.5px; display: block; margin-top: 0px;"><img src="img/badges/wave.png" alt="Wave Badge
10d 7h 42m
(4 Attempts)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Shauntal
13d 9h 47m
(1 Attempt)" data-time="1w 6d 9h 47m" style="left: 13729.4px; display: block; margin-top: 0px;"><img src="img/trainers/black/shauntal.png" alt="Shauntal
13d 9h 47m
(1 Attempt)" style="margin-top: 12.75px;"></div><div class="event elitefour" data-label="Grimsley
13d 9h 47m
(1 Attempt)" data-time="1w 6d 9h 47m" style="left: 13729.4px; display: block; margin-top: 0px;"><img src="img/trainers/black/grimsley.png" alt="Grimsley
13d 9h 47m
(1 Attempt)" style="margin-top: -12.75px;"></div><div class="event elitefour" data-label="Caitlin
13d 21h 23m
(6 Attempts)" data-time="1w 6d 21h 23m" style="left: 14224.4px; display: block; margin-top: 0px;"><img src="img/trainers/black/caitlin.png" alt="Caitlin
13d 21h 23m
(6 Attempts)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Marshal
14d 2h 11m
(6 Attempts)" data-time="2w 0d 2h 11m" style="left: 14429.2px; display: block; margin-top: 0px;"><img src="img/trainers/black/marshal.png" alt="Marshal
14d 2h 11m
(6 Attempts)" style="margin-top: 0px;"></div><div class="event champions" data-label="Iris
16d 5h 34m
(9 Attempts)" data-time="2w 2d 5h 34m" style="left: 16621.5px; display: block; margin-top: 0px;"><img src="img/trainers/black/iris.png" alt="Iris
16d 5h 34m
(9 Attempts)" style="margin-top: 0px;"></div><div class="event pasthosts" data-label="GMYC
18d 12h 57m" data-time="2w 4d 12h 57m" style="left: 18984.5px; display: block; margin-top: 0px;"><img src="img/hosts/gmyc.png" alt="GMYC
18d 12h 57m" style="margin-top: -8px;"></div><div class="event pasthosts" data-label="aoooo
18d 13h 2m" data-time="2w 4d 13h 2m" style="left: 18988.1px; display: block; margin-top: 0px;"><img src="img/hosts/aoooo.png" alt="aoooo
18d 13h 2m" style="margin-top: 15.5px;"></div><div class="event pasthosts" data-label="nqpppnl
18d 13h 9m" data-time="2w 4d 13h 9m" style="left: 18993.1px; display: block; margin-top: 0px;"><img src="img/hosts/nqpppnl.png" alt="nqpppnl
18d 13h 9m" style="margin-top: -7.5px;"></div><div class="event pasthosts" data-label="A
18d 22h 8m" data-time="2w 4d 22h 8m" style="left: 19376.4px; display: block; margin-top: 0px;"><img src="img/hosts/a2.png" alt="A
18d 22h 8m" style="margin-top: 7.7px;"></div><div class="event pasthosts" data-label="A
18d 22h 17m" data-time="2w 4d 22h 17m" style="left: 19382.8px; display: block; margin-top: 0px;"><img src="img/hosts/a.png" alt="A
18d 22h 17m" style="margin-top: -7.7px;"></div><div class="event pasthosts" data-label="AJDNNW
19d 1h 41m" data-time="2w 5d 1h 41m" style="left: 19527.8px; display: block; margin-top: 0px;"><img src="img/hosts/ajdnnw.png" alt="AJDNNW
19d 1h 41m" style="margin-top: 7.65px;"></div><div class="event champions" data-label="RED
19d 2h 16m" data-time="2w 5d 2h 16m" style="left: 19552.7px; display: block; margin-top: 0px;"><img src="img/hosts/red.png" alt="RED
19d 2h 16m" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run x" data-duration="0w 5d 4h 51m" data-endtime="0w 5d 4h 51m" data-start="1406433600" data-label="X: 5d 4h 51m" data-startdate="2014/07/27 04:00 UTC" id="x" style="color: black; border-color: black; width: 5326.93px; margin-left: 0px; background-color: rgb(0, 127, 219);"><div class="event hosts" data-label="d " data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="http://haykira.deviantart.com/art/Li-l-d-from-Twitch-Plays-Pokemon-X-Y-471845274" target="_blank"><img src="img/hosts/d.png" alt="d " style="margin-top: 0px;"></a></div><div class="event badges" data-label="Bug Badge
0d 3h 53m
(1 Attempt)" data-time="0w 0d 3h 53m" style="left: 165.689px; display: block; margin-top: 0px;"><img src="img/badges/bug.png" alt="Bug Badge
0d 3h 53m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Cliff Badge
1d 9h 53m
(3 Attempts)" data-time="0w 1d 9h 53m" style="left: 1445.69px; display: block; margin-top: 0px;"><img src="img/badges/cliff.png" alt="Cliff Badge
1d 9h 53m
(3 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Rumble Badge
1d 23h 53m
(1 Attempt)" data-time="0w 1d 23h 53m" style="left: 2043.02px; display: block; margin-top: 0px;"><img src="img/badges/rumble.png" alt="Rumble Badge
1d 23h 53m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Plant Badge
2d 8h 5m
(1 Attempt)" data-time="0w 2d 8h 5m" style="left: 2392.89px; display: block; margin-top: 0px;"><img src="img/badges/plant.png" alt="Plant Badge
2d 8h 5m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Voltage Badge
3d 1h 59m
(3 Attempts)" data-time="0w 3d 1h 59m" style="left: 3156.62px; display: block; margin-top: 0px;"><img src="img/badges/voltage.png" alt="Voltage Badge
3d 1h 59m
(3 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Psychic Badge
3d 10h 54m
(1 Attempt)" data-time="0w 3d 10h 54m" style="left: 3537.07px; display: block; margin-top: 0px;"><img src="img/badges/psychic.png" alt="Psychic Badge
3d 10h 54m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Fairy Badge
3d 20h 57m
(1 Attempt)" data-time="0w 3d 20h 57m" style="left: 3965.87px; display: block; margin-top: 0px;"><img src="img/badges/fairy.png" alt="Fairy Badge
3d 20h 57m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Iceberg Badge
4d 11h 37m
(1 Attempt)" data-time="0w 4d 11h 37m" style="left: 4591.64px; display: block; margin-top: 0px;"><img src="img/badges/iceberg.png" alt="Iceberg Badge
4d 11h 37m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Drasna
4d 16h 20m
(1 Attempt)" data-time="0w 4d 16h 20m" style="left: 4792.89px; display: block; margin-top: 0px;"><img src="img/trainers/x/drasna.png" alt="Drasna
4d 16h 20m
(1 Attempt)" style="margin-top: 6.3px;"></div><div class="event elitefour" data-label="Malva
4d 16h 35m
(1 Attempt)" data-time="0w 4d 16h 35m" style="left: 4803.56px; display: block; margin-top: 0px;"><img src="img/trainers/x/malva.png" alt="Malva
4d 16h 35m
(1 Attempt)" style="margin-top: -12.05px;"></div><div class="event elitefour" data-label="Wikstrom
4d 16h 52m
(2 Attempts)" data-time="0w 4d 16h 52m" style="left: 4815.64px; display: block; margin-top: 0px;"><img src="img/trainers/x/wikstrom.png" alt="Wikstrom
4d 16h 52m
(2 Attempts)" style="margin-top: 6.05px;"></div><div class="event elitefour" data-label="Siebold
4d 21h 9m
(8 Attempts)" data-time="0w 4d 21h 9m" style="left: 4998.4px; display: block; margin-top: 0px;"><img src="img/trainers/x/siebold.png" alt="Siebold
4d 21h 9m
(8 Attempts)" style="margin-top: 0px;"></div><div class="event champions" data-label="Diantha
5d 4h 51m
(4 Attempts)" data-time="0w 5d 4h 51m" style="left: 5326.93px; display: block; margin-top: 0px;"><img src="img/trainers/x/diantha.png" alt="Diantha
5d 4h 51m
(4 Attempts)" style="margin-top: 0px;"></div><div class="videos"></div></div><div class="run omegaruby" data-duration="1w 1d 5h 42m" data-endtime="1w 1d 5h 42m" data-start="1416625200" data-label="Omega Ruby: 8d 5h 42m" data-startdate="2014/11/22 03:00 UTC" id="omegaruby" style="color: rgb(198, 34, 59); border-color: rgb(198, 34, 59); width: 8435.2px; margin-left: 0px; background-color: rgb(198, 34, 59);"><div class="event hosts" data-label="!12rtyhaszs" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/rtyhaszs.png" alt="!12rtyhaszs" style="margin-top: 0px;"></a></div><div class="event badges" data-label="Stone Badge
0d 8h 32m
(3 Attempts)" data-time="0w 0d 8h 32m" style="left: 364.089px; display: block; margin-top: 0px;"><img src="img/badges/stone.png" alt="Stone Badge
0d 8h 32m
(3 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Knuckle Badge
0d 14h 34m
(2 Attempts)" data-time="0w 0d 14h 34m" style="left: 621.511px; display: block; margin-top: 0px;"><img src="img/badges/knuckle.png" alt="Knuckle Badge
0d 14h 34m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Dynamo Badge
1d 0h 57m
(3 Attempts)" data-time="0w 1d 0h 57m" style="left: 1064.53px; display: block; margin-top: 0px;"><img src="img/badges/dynamo.png" alt="Dynamo Badge
1d 0h 57m
(3 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Heat Badge
2d 14h 34m
(2 Attempts)" data-time="0w 2d 14h 34m" style="left: 2669.51px; display: block; margin-top: 0px;"><img src="img/badges/heat.png" alt="Heat Badge
2d 14h 34m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Balance Badge
3d 1h 31m
(2 Attempts)" data-time="0w 3d 1h 31m" style="left: 3136.71px; display: block; margin-top: 0px;"><img src="img/badges/balance.png" alt="Balance Badge
3d 1h 31m
(2 Attempts)" style="margin-top: 0px;"></div><div class="event badges" data-label="Feather Badge
3d 21h 42m
(1 Attempt)" data-time="0w 3d 21h 42m" style="left: 3997.87px; display: block; margin-top: 0px;"><img src="img/badges/feather.png" alt="Feather Badge
3d 21h 42m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Mind Badge
4d 14h 30m
(1 Attempt)" data-time="0w 4d 14h 30m" style="left: 4714.67px; display: block; margin-top: 0px;"><img src="img/badges/mind.png" alt="Mind Badge
4d 14h 30m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event badges" data-label="Rain Badge
4d 23h 36m
(1 Attempt)" data-time="0w 4d 23h 36m" style="left: 5102.93px; display: block; margin-top: 0px;"><img src="img/badges/rain.png" alt="Rain Badge
4d 23h 36m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Sidney
5d 19h 25m" data-time="0w 5d 19h 25m" style="left: 5948.44px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/sidney.png" alt="Sidney
5d 19h 25m" style="margin-top: 0px;"></div><div class="event elitefour" data-label="Phoebe
6d 13h 59m" data-time="0w 6d 13h 59m" style="left: 6740.62px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/phoebe.png" alt="Phoebe
6d 13h 59m" style="margin-top: -13.8px;"></div><div class="event elitefour" data-label="Glacia
6d 15h 12m" data-time="0w 6d 15h 12m" style="left: 6792.53px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/glacia.png" alt="Glacia
6d 15h 12m" style="margin-top: 13.8px;"></div><div class="event elitefour" data-label="Drake
6d 18h 13m" data-time="0w 6d 18h 13m" style="left: 6921.24px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/drake.png" alt="Drake
6d 18h 13m" style="margin-top: 0px;"></div><div class="event champions" data-label="Steven
6d 20h 16m" data-time="0w 6d 20h 16m" style="left: 7008.71px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/steven.png" alt="Steven
6d 20h 16m" style="margin-top: 0px;"></div><div class="event champions" data-label="Zinnia
7d 9h 4m" data-time="1w 0d 9h 4m" style="left: 7554.84px; display: block; margin-top: 0px;"><a href="http://kinectedwires.deviantart.com/art/OR-AS-Zinnia-Sprite-505257562" target="_blank"><img src="img/trainers/emerald/zinnia.png" alt="Zinnia
7d 9h 4m" style="margin-top: 0px;"></a></div><div class="event elitefourrematch" data-label="Sidney
7d 12h 33m
(1 Attempt)" data-time="1w 0d 12h 33m" style="left: 7703.47px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/rematch/sidney.png" alt="Sidney
7d 12h 33m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event elitefourrematch" data-label="Phoebe
7d 14h 48m
(5 Attempts)" data-time="1w 0d 14h 48m" style="left: 7799.47px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/rematch/phoebe.png" alt="Phoebe
7d 14h 48m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event elitefourrematch" data-label="Glacia
7d 19h 13m
(5 Attempts)" data-time="1w 0d 19h 13m" style="left: 7987.91px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/rematch/glacia.png" alt="Glacia
7d 19h 13m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event elitefourrematch" data-label="Drake
8d 5h 30m
(9 Attempts)" data-time="1w 1d 5h 30m" style="left: 8426.67px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/rematch/drake.png" alt="Drake
8d 5h 30m
(9 Attempts)" style="margin-top: -13.1px;"></div><div class="event champions" data-label="Steven
8d 5h 42m
(1 Attempt)" data-time="1w 1d 5h 42m" style="left: 8435.2px; display: block; margin-top: 0px;"><img src="img/trainers/emerald/rematch/steven.png" alt="Steven
8d 5h 42m
(1 Attempt)" style="margin-top: 0px;"></div><div class="videos"></div></div></div><div class="progressChart season2" data-label="Season 2" id="season2" data-scale="Days" style="background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAABCAYAAACouxZ2AAAAIklEQVRIS2NkGAWjITAaAqMhMBoCoyEwGgIjKgRWrlxZDwAWcgJ8Z7VYMAAAAABJRU5ErkJggg==");"><div class="ruler"><div class="stop" data-scale="Days" style="left: 0px;"></div><div class="stop" data-scale="Days" style="left: 1024px;"></div><div class="stop" data-scale="Days" style="left: 2048px;"></div><div class="stop" data-scale="Days" style="left: 3072px;"></div><div class="stop" data-scale="Days" style="left: 4096px;"></div><div class="stop" data-scale="Days" style="left: 5120px;"></div><div class="stop" data-scale="Days" style="left: 6144px;"></div><div class="stop" data-scale="Days" style="left: 7168px;"></div><div class="stop" data-scale="Days" style="left: 8192px;"></div><div class="stop" data-scale="Days" style="left: 9216px;"></div><div class="stop" data-scale="Days" style="left: 10240px;"></div><div class="stop" data-scale="Days" style="left: 11264px;"></div><div class="stop" data-scale="Days" style="left: 12288px;"></div><div class="stop" data-scale="Days" style="left: 13312px;"></div><div class="stop" data-scale="Days" style="left: 14336px;"></div><div class="stop" data-scale="Days" style="left: 15360px;"></div><div class="stop" data-scale="Days" style="left: 16384px;"></div><div class="stop" data-scale="Days" style="left: 17408px;"></div><div class="stop" data-scale="Days" style="left: 18432px;"></div><div class="stop" data-scale="Days" style="left: 19456px;"></div><div class="stop" data-scale="Days" style="left: 20480px;"></div><div class="stop" data-scale="Days" style="left: 21504px;"></div><div class="stop" data-scale="Days" style="left: 22528px;"></div><div class="stop" data-scale="Days" style="left: 23552px;"></div><div class="stop" data-scale="Days" style="left: 24576px;"></div><div class="stop" data-scale="Days" style="left: 25600px;"></div><div class="stop" data-scale="Days" style="left: 26624px;"></div><div class="stop" data-scale="Days" style="left: 27648px;"></div><div class="stop" data-scale="Days" style="left: 28672px;"></div><div class="stop" data-scale="Days" style="left: 29696px;"></div><div class="stop" data-scale="Days" style="left: 30720px;"></div><div class="stop" data-scale="Days" style="left: 31744px;"></div><div class="stop" data-scale="Days" style="left: 32768px;"></div><div class="stop" data-scale="Days" style="left: 33792px;"></div><div class="stop" data-scale="Days" style="left: 34816px;"></div><div class="stop" data-scale="Days" style="left: 35840px;"></div><div class="stop" data-scale="Days" style="left: 36864px;"></div><div class="stop" data-scale="Days" style="left: 37888px;"></div><div class="stop" data-scale="Days" style="left: 38912px;"></div><div class="stop" data-scale="Days" style="left: 39936px;"></div><div class="stop" data-scale="Days" style="left: 40960px;"></div></div><div class="run anniversaryred" data-duration="5w 4d 19h 17m" data-endtime="5w 4d 19h 17m" data-start="1423774800" data-label="Anniversary Red: 39d 19h 17m" data-startdate="2015/02/12 21:00 UTC" id="anniversaryred" style="color: rgb(91, 0, 0); border-color: rgb(91, 0, 0); width: 40758.8px; margin-left: 0px; background-color: rgb(191, 3, 0);"><div class="event hosts" data-label="AIIIAAB" data-time="0w 0d 0h 0m" style="left: 0px; display: block; margin-top: 0px; margin-left: 0px;"><a href="https://www.reddit.com/r/twitchplayspokemon/comments/3xj7tq/the_hosts_of_the_voices/" target="_blank"><img src="img/hosts/aiiiaab.png" alt="AIIIAAB" style="margin-top: 0px;"></a></div><div class="event pokesprite charmander pokemon" data-label="Charmander
0d 0h 4m" data-time="0w 0d 0h 4m" style="left: 2.84444px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Charmander
0d 0h 4m" style="margin-top: 0px;"></div><div class="event pokesprite kakuna pokemon" data-label="Kakuna
0d 2h 33m" data-time="0w 0d 2h 33m" style="left: 108.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Kakuna
0d 2h 33m" style="margin-top: 0px;"></div><div class="event pokesprite charmeleon pokemon" data-label="Charmeleon
0d 8h 47m" data-time="0w 0d 8h 47m" style="left: 374.756px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Charmeleon
0d 8h 47m" style="margin-top: 0px;"></div><div class="event pokesprite poliwag pokemon" data-label="Poliwag
0d 15h 4m" data-time="0w 0d 15h 4m" style="left: 642.844px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Poliwag
0d 15h 4m" style="margin-top: 0px;"></div><div class="event badges" data-label="Boulder Badge
0d 18h 28m
(10 Attempts)" data-time="0w 0d 18h 28m" style="left: 787.911px; display: block; margin-top: 0px;"><a href="http://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League" target="_blank"><img src="img/badges/boulder.png" alt="Boulder Badge
0d 18h 28m
(10 Attempts)" style="margin-top: 0px;"></a></div><div class="event pokesprite magikarp pokemon" data-label="Magikarp
1d 7h 43m" data-time="0w 1d 7h 43m" style="left: 1353.24px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Magikarp
1d 7h 43m" style="margin-top: 4.5px;"></div><div class="event pokesprite onix pokemon" data-label="Onix
1d 7h 58m" data-time="0w 1d 7h 58m" style="left: 1363.91px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Onix
1d 7h 58m" style="margin-top: -4.5px;"></div><div class="event pokesprite mankey pokemon" data-label="Mankey
1d 9h 57m" data-time="0w 1d 9h 57m" style="left: 1448.53px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Mankey
1d 9h 57m" style="margin-top: 0px;"></div><div class="event pokesprite charizard pokemon" data-label="Charizard
1d 11h 10m" data-time="0w 1d 11h 10m" style="left: 1500.44px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Charizard
1d 11h 10m" style="margin-top: 0px;"></div><div class="event pokesprite pidgey pokemon" data-label="Pidgey
1d 21h 14m" data-time="0w 1d 21h 14m" style="left: 1929.96px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgey
1d 21h 14m" style="margin-top: 4.3px;"></div><div class="event pokesprite krabby pokemon" data-label="Krabby
1d 21h 16m" data-time="0w 1d 21h 16m" style="left: 1931.38px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Krabby
1d 21h 16m" style="margin-top: -4.3px;"></div><div class="event badges" data-label="Cascade Badge
2d 20h 8m
(19 Attempts)" data-time="0w 2d 20h 8m" style="left: 2907.02px; display: block; margin-top: 0px;"><img src="img/badges/cascade.png" alt="Cascade Badge
2d 20h 8m
(19 Attempts)" style="margin-top: 0px;"></div><div class="event pokesprite fearow pokemon" data-label="Fearow
2d 21h 15m" data-time="0w 2d 21h 15m" style="left: 2954.67px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Fearow
2d 21h 15m" style="margin-top: 4.3px;"></div><div class="event pokesprite poliwhirl pokemon" data-label="Poliwhirl
2d 21h 18m" data-time="0w 2d 21h 18m" style="left: 2956.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Poliwhirl
2d 21h 18m" style="margin-top: -8.4px;"></div><div class="event pokesprite paras pokemon" data-label="Paras
2d 21h 19m" data-time="0w 2d 21h 19m" style="left: 2957.51px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Paras
2d 21h 19m" style="margin-top: 4.4px;"></div><div class="event pokesprite diglett pokemon" data-label="Diglett
2d 23h 4m" data-time="0w 2d 23h 4m" style="left: 3032.18px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Diglett
2d 23h 4m" style="margin-top: 0px;"></div><div class="event pokesprite venonat pokemon" data-label="Venonat
3d 0h 18m" data-time="0w 3d 0h 18m" style="left: 3084.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Venonat
3d 0h 18m" style="margin-top: 4.2px;"></div><div class="event pokesprite weepinbell pokemon" data-label="Weepinbell
3d 0h 22m" data-time="0w 3d 0h 22m" style="left: 3087.64px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Weepinbell
3d 0h 22m" style="margin-top: -4.2px;"></div><div class="event pokesprite jynx pokemon" data-label="Jynx
3d 2h 58m" data-time="0w 3d 2h 58m" style="left: 3198.58px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Jynx
3d 2h 58m" style="margin-top: 0px;"></div><div class="event pokesprite meowth pokemon" data-label="Meowth
4d 10h 10m" data-time="0w 4d 10h 10m" style="left: 4529.78px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Meowth
4d 10h 10m" style="margin-top: -5px;"></div><div class="event pokesprite exeggcute pokemon" data-label="Exeggcute
4d 10h 16m" data-time="0w 4d 10h 16m" style="left: 4534.04px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Exeggcute
4d 10h 16m" style="margin-top: 5px;"></div><div class="event pokesprite parasect pokemon" data-label="Parasect
4d 16h 48m" data-time="0w 4d 16h 48m" style="left: 4812.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Parasect
4d 16h 48m" style="margin-top: 0px;"></div><div class="event pokesprite doduo pokemon" data-label="Doduo
4d 21h 11m" data-time="0w 4d 21h 11m" style="left: 4999.82px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Doduo
4d 21h 11m" style="margin-top: 4.2px;"></div><div class="event pokesprite horsea pokemon" data-label="Horsea
4d 21h 15m" data-time="0w 4d 21h 15m" style="left: 5002.67px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Horsea
4d 21h 15m" style="margin-top: -9px;"></div><div class="event pokesprite pidgeotto pokemon" data-label="Pidgeotto
4d 21h 36m" data-time="0w 4d 21h 36m" style="left: 5017.6px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgeotto
4d 21h 36m" style="margin-top: 5px;"></div><div class="event pokesprite slowbro pokemon" data-label="Slowbro
4d 23h 26m" data-time="0w 4d 23h 26m" style="left: 5095.82px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Slowbro
4d 23h 26m" style="margin-top: 0px;"></div><div class="event badges" data-label="Thunder Badge
5d 12h 51m
(1 Attempt)" data-time="0w 5d 12h 51m" style="left: 5668.27px; display: block; margin-top: 0px;"><img src="img/badges/thunder.png" alt="Thunder Badge
5d 12h 51m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event pokesprite rhyhorn pokemon" data-label="Rhyhorn
6d 1h 5m" data-time="0w 6d 1h 5m" style="left: 6190.22px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Rhyhorn
6d 1h 5m" style="margin-top: 0px;"></div><div class="event pokesprite magmar pokemon" data-label="Magmar
6d 3h 27m" data-time="0w 6d 3h 27m" style="left: 6291.2px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Magmar
6d 3h 27m" style="margin-top: 0px;"></div><div class="event pokesprite marowak pokemon" data-label="Marowak
6d 8h 38m" data-time="0w 6d 8h 38m" style="left: 6512.36px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Marowak
6d 8h 38m" style="margin-top: 0px;"></div><div class="event pokesprite eevee pokemon" data-label="Eevee
7d 3h 53m" data-time="1w 0d 3h 53m" style="left: 7333.69px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Eevee
7d 3h 53m" style="margin-top: -4.1px;"></div><div class="event pokesprite flareon pokemon" data-label="Flareon
7d 4h 26m" data-time="1w 0d 4h 26m" style="left: 7357.16px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Flareon
7d 4h 26m" style="margin-top: 4.1px;"></div><div class="event pokesprite hitmonchan pokemon" data-label="Hitmonchan
7d 11h 1m" data-time="1w 0d 11h 1m" style="left: 7638.04px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Hitmonchan
7d 11h 1m" style="margin-top: 0px;"></div><div class="event badges" data-label="Rainbow Badge
8d 1h 7m
(1 Attempt)" data-time="1w 1d 1h 7m" style="left: 8239.64px; display: block; margin-top: 0px;"><img src="img/badges/rainbow.png" alt="Rainbow Badge
8d 1h 7m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event pokesprite muk pokemon" data-label="Muk
9d 10h 31m" data-time="1w 2d 10h 31m" style="left: 9664.71px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Muk
9d 10h 31m" style="margin-top: 0px;"></div><div class="event pokesprite persian pokemon" data-label="Persian
10d 17h 56m" data-time="1w 3d 17h 56m" style="left: 11005.2px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Persian
10d 17h 56m" style="margin-top: 0px;"></div><div class="event pokesprite electabuzz pokemon" data-label="Electabuzz
10d 20h 57m" data-time="1w 3d 20h 57m" style="left: 11133.9px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Electabuzz
10d 20h 57m" style="margin-top: 4.9px;"></div><div class="event pokesprite pinsir pokemon" data-label="Pinsir
10d 21h 19m" data-time="1w 3d 21h 19m" style="left: 11149.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pinsir
10d 21h 19m" style="margin-top: -4.9px;"></div><div class="event pokesprite snorlax pokemon" data-label="Snorlax
10d 23h 33m" data-time="1w 3d 23h 33m" style="left: 11244.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Snorlax
10d 23h 33m" style="margin-top: 0px;"></div><div class="event pokesprite weezing pokemon" data-label="Weezing
11d 7h 22m" data-time="1w 4d 7h 22m" style="left: 11578.3px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Weezing
11d 7h 22m" style="margin-top: 0px;"></div><div class="event pokesprite mrmime pokemon" data-label="Mr. Mime
11d 8h 1m" data-time="1w 4d 8h 1m" style="left: 11606px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Mr. Mime
11d 8h 1m" style="margin-top: 4.3px;"></div><div class="event pokesprite gyarados pokemon" data-label="Gyarados
11d 8h 5m" data-time="1w 4d 8h 5m" style="left: 11608.9px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Gyarados
11d 8h 5m" style="margin-top: -4.3px;"></div><div class="event pokesprite victreebel pokemon" data-label="Victreebel
11d 8h 47m" data-time="1w 4d 8h 47m" style="left: 11638.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Victreebel
11d 8h 47m" style="margin-top: 0px;"></div><div class="event badges" data-label="Soul Badge
11d 12h 28m
(1 Attempt)" data-time="1w 4d 12h 28m" style="left: 11795.9px; display: block; margin-top: 0px;"><img src="img/badges/soul.png" alt="Soul Badge
11d 12h 28m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event pokesprite slowpoke pokemon" data-label="Slowpoke
11d 15h 55m" data-time="1w 4d 15h 55m" style="left: 11943.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Slowpoke
11d 15h 55m" style="margin-top: 0px;"></div><div class="event pokesprite lickitung pokemon" data-label="Lickitung
12d 3h 54m" data-time="1w 5d 3h 54m" style="left: 12454.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Lickitung
12d 3h 54m" style="margin-top: 0px;"></div><div class="event pokesprite kadabra pokemon" data-label="Kadabra
12d 16h 12m" data-time="1w 5d 16h 12m" style="left: 12979.2px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Kadabra
12d 16h 12m" style="margin-top: 0px;"></div><div class="event pokesprite nidoranm pokemon" data-label="NidoranM
12d 19h 46m" data-time="1w 5d 19h 46m" style="left: 13131.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="NidoranM
12d 19h 46m" style="margin-top: 0px;"></div><div class="event pokesprite pikachu pokemon" data-label="Pikachu
12d 20h 32m" data-time="1w 5d 20h 32m" style="left: 13164.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pikachu
12d 20h 32m" style="margin-top: -4.4px;"></div><div class="event pokesprite cubone pokemon" data-label="Cubone
12d 20h 34m" data-time="1w 5d 20h 34m" style="left: 13165.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Cubone
12d 20h 34m" style="margin-top: 4.4px;"></div><div class="event pokesprite oddish pokemon" data-label="Oddish
12d 21h 51m" data-time="1w 5d 21h 51m" style="left: 13220.3px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Oddish
12d 21h 51m" style="margin-top: 0px;"></div><div class="event pokesprite jigglypuff pokemon" data-label="Jigglypuff
13d 0h 57m" data-time="1w 6d 0h 57m" style="left: 13352.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Jigglypuff
13d 0h 57m" style="margin-top: 4.3px;"></div><div class="event pokesprite ekans pokemon" data-label="Ekans
13d 1h 0m" data-time="1w 6d 1h 0m" style="left: 13354.7px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Ekans
13d 1h 0m" style="margin-top: -8.7px;"></div><div class="event pokesprite nidoranf pokemon" data-label="NidoranF
13d 1h 11m" data-time="1w 6d 1h 11m" style="left: 13362.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="NidoranF
13d 1h 11m" style="margin-top: 9px;"></div><div class="event pokesprite weedle pokemon" data-label="Weedle
13d 1h 32m" data-time="1w 6d 1h 32m" style="left: 13377.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Weedle
13d 1h 32m" style="margin-top: -5px;"></div><div class="event pokesprite vulpix pokemon" data-label="Vulpix
13d 5h 20m" data-time="1w 6d 5h 20m" style="left: 13539.6px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Vulpix
13d 5h 20m" style="margin-top: 4.1px;"></div><div class="event pokesprite metapod pokemon" data-label="Metapod
13d 5h 26m" data-time="1w 6d 5h 26m" style="left: 13543.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Metapod
13d 5h 26m" style="margin-top: -4.1px;"></div><div class="event pokesprite lapras pokemon" data-label="Lapras
13d 11h 51m" data-time="1w 6d 11h 51m" style="left: 13817.6px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Lapras
13d 11h 51m" style="margin-top: 0px;"></div><div class="event badges" data-label="Marsh Badge
13d 14h 7m
(1 Attempt)" data-time="1w 6d 14h 7m" style="left: 13914.3px; display: block; margin-top: 0px;"><img src="img/badges/marsh.png" alt="Marsh Badge
13d 14h 7m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event pokesprite psyduck pokemon" data-label="Psyduck
14d 2h 10m" data-time="2w 0d 2h 10m" style="left: 14428.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Psyduck
14d 2h 10m" style="margin-top: -4.9px;"></div><div class="event pokesprite seel pokemon" data-label="Seel
14d 2h 32m" data-time="2w 0d 2h 32m" style="left: 14444.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Seel
14d 2h 32m" style="margin-top: 8.3px;"></div><div class="event pokesprite starmie pokemon" data-label="Starmie
14d 2h 49m" data-time="2w 0d 2h 49m" style="left: 14456.2px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Starmie
14d 2h 49m" style="margin-top: -4.3px;"></div><div class="event pokesprite kabuto pokemon" data-label="Kabuto
14d 21h 11m" data-time="2w 0d 21h 11m" style="left: 15239.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Kabuto
14d 21h 11m" style="margin-top: 4.5px;"></div><div class="event pokesprite ponyta pokemon" data-label="Ponyta
14d 21h 38m" data-time="2w 0d 21h 38m" style="left: 15259px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Ponyta
14d 21h 38m" style="margin-top: -8.1px;"></div><div class="event pokesprite grimer pokemon" data-label="Grimer
14d 21h 44m" data-time="2w 0d 21h 44m" style="left: 15263.3px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Grimer
14d 21h 44m" style="margin-top: 4.1px;"></div><div class="event badges" data-label="Volcano Badge
15d 22h 8m
(5 Attempts)" data-time="2w 1d 22h 8m" style="left: 16304.4px; display: block; margin-top: 0px;"><img src="img/badges/volcano.png" alt="Volcano Badge
15d 22h 8m
(5 Attempts)" style="margin-top: 0px;"></div><div class="event pokesprite cloyster pokemon" data-label="Cloyster
15d 23h 18m" data-time="2w 1d 23h 18m" style="left: 16354.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Cloyster
15d 23h 18m" style="margin-top: 0px;"></div><div class="event pokesprite caterpie pokemon" data-label="Caterpie
16d 11h 6m" data-time="2w 2d 11h 6m" style="left: 16857.6px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Caterpie
16d 11h 6m" style="margin-top: 0px;"></div><div class="event pokesprite zapdos pokemon" data-label="Zapdos
17d 0h 17m" data-time="2w 3d 0h 17m" style="left: 17420.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Zapdos
17d 0h 17m" style="margin-top: 0px;"></div><div class="event badges" data-label="Earth Badge
17d 12h 19m
(1 Attempt)" data-time="2w 3d 12h 19m" style="left: 17933.5px; display: block; margin-top: 0px;"><img src="img/badges/earth.png" alt="Earth Badge
17d 12h 19m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event pokesprite scyther pokemon" data-label="Scyther
17d 17h 39m" data-time="2w 3d 17h 39m" style="left: 18161.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Scyther
17d 17h 39m" style="margin-top: 4.8px;"></div><div class="event pokesprite kabutops pokemon" data-label="Kabutops
17d 18h 4m" data-time="2w 3d 18h 4m" style="left: 18178.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Kabutops
17d 18h 4m" style="margin-top: -4.8px;"></div><div class="event pokesprite koffing pokemon" data-label="Koffing
18d 7h 3m" data-time="2w 4d 7h 3m" style="left: 18732.8px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Koffing
18d 7h 3m" style="margin-top: 0px;"></div><div class="event pokesprite dratini pokemon" data-label="Dratini
19d 5h 3m" data-time="2w 5d 5h 3m" style="left: 19671.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Dratini
19d 5h 3m" style="margin-top: -4.4px;"></div><div class="event pokesprite abra pokemon" data-label="Abra
19d 5h 4m" data-time="2w 5d 5h 4m" style="left: 19672.2px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Abra
19d 5h 4m" style="margin-top: 4.4px;"></div><div class="event pokesprite primeape pokemon" data-label="Primeape
19d 7h 47m" data-time="2w 5d 7h 47m" style="left: 19788.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Primeape
19d 7h 47m" style="margin-top: -5px;"></div><div class="event pokesprite porygon pokemon" data-label="Porygon
19d 8h 9m" data-time="2w 5d 8h 9m" style="left: 19803.7px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Porygon
19d 8h 9m" style="margin-top: 5px;"></div><div class="event elitefour" data-label="Lorelei
27d 8h 53m
(1 Attempt)" data-time="3w 6d 8h 53m" style="left: 28027px; display: block; margin-top: 0px;"><img src="img/trainers/red/lorelei.png" alt="Lorelei
27d 8h 53m
(1 Attempt)" style="margin-top: 13.5px;"></div><div class="event elitefour" data-label="Bruno
27d 9h 1m
(1 Attempt)" data-time="3w 6d 9h 1m" style="left: 28032.7px; display: block; margin-top: 0px;"><img src="img/trainers/red/bruno.png" alt="Bruno
27d 9h 1m
(1 Attempt)" style="margin-top: -26.5px;"></div><div class="event elitefour" data-label="Agatha
27d 9h 7m
(1 Attempt)" data-time="3w 6d 9h 7m" style="left: 28037px; display: block; margin-top: 0px;"><img src="img/trainers/red/agatha.png" alt="Agatha
27d 9h 7m
(1 Attempt)" style="margin-top: 26.3px;"></div><div class="event elitefour" data-label="Lance
27d 9h 46m
(2 Attempts)" data-time="3w 6d 9h 46m" style="left: 28064.7px; display: block; margin-top: 0px;"><img src="img/trainers/red/lance.png" alt="Lance
27d 9h 46m
(2 Attempts)" style="margin-top: -13.3px;"></div><div class="event champions" data-label="BLUE
27d 19h 24m
(6 Attempts)" data-time="3w 6d 19h 24m" style="left: 28475.7px; display: block; margin-top: 0px;"><img src="img/trainers/red/blue.png" alt="BLUE
27d 19h 24m
(6 Attempts)" style="margin-top: 11.1px;"></div><div class="event pasthosts" data-label="Dream RED
27d 19h 45m
(1 Attempt)" data-time="3w 6d 19h 45m" style="left: 28490.7px; display: block; margin-top: 0px;"><img src="img/hosts/red.png" alt="Dream RED
27d 19h 45m
(1 Attempt)" style="margin-top: -11.1px;"></div><div class="event rematchbadges" data-label="Volcano Badge
27d 22h 14m
(1 Attempt)" data-time="3w 6d 22h 14m" style="left: 28596.6px; display: block; margin-top: 0px;"><img src="img/badges/rematch/volcano.png" alt="Volcano Badge
27d 22h 14m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event pokesprite seadra pokemon" data-label="Seadra
27d 22h 57m" data-time="3w 6d 22h 57m" style="left: 28627.2px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Seadra
27d 22h 57m" style="margin-top: -4.5px;"></div><div class="event pokesprite shellder pokemon" data-label="Shellder
27d 23h 25m" data-time="3w 6d 23h 25m" style="left: 28647.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Shellder
27d 23h 25m" style="margin-top: 8.5px;"></div><div class="event pokesprite articuno pokemon" data-label="Articuno
27d 23h 53m" data-time="3w 6d 23h 53m" style="left: 28667px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Articuno
27d 23h 53m" style="margin-top: -4.5px;"></div><div class="event pokesprite staryu pokemon" data-label="Staryu
28d 2h 13m" data-time="4w 0d 2h 13m" style="left: 28766.6px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Staryu
28d 2h 13m" style="margin-top: 0px;"></div><div class="event pokesprite golbat pokemon" data-label="Golbat
28d 3h 0m" data-time="4w 0d 3h 0m" style="left: 28800px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Golbat
28d 3h 0m" style="margin-top: 0px;"></div><div class="event rematchbadges" data-label="Soul Badge
28d 5h 1m
(1 Attempt)" data-time="4w 0d 5h 1m" style="left: 28886px; display: block; margin-top: 0px;"><img src="img/badges/rematch/soul.png" alt="Soul Badge
28d 5h 1m
(1 Attempt)" style="margin-top: 0px;"></div><div class="event pokesprite farfetchd pokemon" data-label="Farfetchd
28d 5h 38m" data-time="4w 0d 5h 38m" style="left: 28912.4px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Farfetchd
28d 5h 38m" style="margin-top: 4.4px;"></div><div class="event pokesprite dodrio pokemon" data-label="Dodrio
28d 6h 7m" data-time="4w 0d 6h 7m" style="left: 28933px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Dodrio
28d 6h 7m" style="margin-top: -4.4px;"></div><div class="event pokesprite venomoth pokemon" data-label="Venomoth
28d 6h 57m" data-time="4w 0d 6h 57m" style="left: 28968.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Venomoth
28d 6h 57m" style="margin-top: 4.4px;"></div><div class="event pokesprite pidgeot pokemon" data-label="Pidgeot
28d 7h 26m" data-time="4w 0d 7h 26m" style="left: 28989.2px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Pidgeot
28d 7h 26m" style="margin-top: -4.4px;"></div><div class="event pokesprite beedrill pokemon" data-label="Beedrill
28d 9h 17m" data-time="4w 0d 9h 17m" style="left: 29068.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Beedrill
28d 9h 17m" style="margin-top: 0px;"></div><div class="event pokesprite spearow pokemon" data-label="Spearow
28d 10h 47m" data-time="4w 0d 10h 47m" style="left: 29132.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Spearow
28d 10h 47m" style="margin-top: 0px;"></div><div class="event pokesprite gengar pokemon" data-label="Gengar
28d 12h 24m" data-time="4w 0d 12h 24m" style="left: 29201.1px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Gengar
28d 12h 24m" style="margin-top: 0px;"></div><div class="event pokesprite raticate pokemon" data-label="Raticate
28d 13h 4m" data-time="4w 0d 13h 4m" style="left: 29229.5px; display: block; margin-top: 0px;"><img src="img/missingno.png" alt="Raticate
28d 13h 4m" style="margin-top: 0px;"></div><div class="event rematchbadges" data-label="Thunder Badge
28d 18h 4m
(1 Attempt)" data-time="4w 0d 18h 4m" style="left: 29442.8px; display: block; margin-top: 0px;"><img src="img/badges/rematch/thunder.png" alt="Thunder Badge
28d 18h 4m
(1 Attempt)" style="margin-top: 9.5px;"></div><div class="event rematchbadges" data-label="Marsh Badge
28d 19h 4m
(1 Attempt)" data-time="4w 0d 19h 4m" style="left: 29485.5px; display: block; margin-top: 0px;"><img src="img/badges/rematch/marsh.png" alt="Marsh Badge