-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrite_qual_challenger.csv
We can't make this file beautiful and searchable because it's too large.
3170 lines (3170 loc) · 840 KB
/
write_qual_challenger.csv
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
Mei Tian Kun,Mercury's Treads,Edge of Night,Youmuu's Ghostblade,NaN,Black Cleaver,Lord Dominik's Regards,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,BOTTOM
Mei Tian Kun,Lich Bane,Broken Stopwatch,NaN,Rabadon's Deathcap,NaN,Sorcerer's Shoes,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Ignite,DUO,TOP
Gen G Karis,NaN,NaN,NaN,NaN,NaN,NaN,NaN,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
Gen G Karis,Doran's Blade,Health Potion,NaN,NaN,NaN,NaN,Stealth Ward,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
T1 BurdoI,Youmuu's Ghostblade,Mercury's Treads,Corrupting Potion,Edge of Night,Long Sword,Ruby Crystal,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Pantheon,Heal,Ghost,DUO_SUPPORT,NONE
T1 BurdoI,NaN,Doran's Ring,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,Rylai's Crystal Scepter,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
Gen G Wize,NaN,Mercury's Treads,Abyssal Mask,Spirit Visage,Thornmail,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Mark,Flash,SOLO,MIDDLE
Gen G Wize,NaN,Sorcerer's Shoes,NaN,Blasting Wand,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Zyra,Clarity,Flash,DUO_SUPPORT,NONE
Mei Tian Kun,Mercury's Treads,Edge of Night,Youmuu's Ghostblade,NaN,Black Cleaver,Lord Dominik's Regards,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,BOTTOM
Mei Tian Kun,Lich Bane,Broken Stopwatch,NaN,Rabadon's Deathcap,NaN,Sorcerer's Shoes,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Ignite,DUO,TOP
Gen G Karis,NaN,NaN,NaN,NaN,NaN,NaN,NaN,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
Gen G Karis,Doran's Blade,Health Potion,NaN,NaN,NaN,NaN,Stealth Ward,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
T1 BurdoI,Youmuu's Ghostblade,Mercury's Treads,Corrupting Potion,Edge of Night,Long Sword,Ruby Crystal,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Pantheon,Heal,Ghost,DUO_SUPPORT,NONE
T1 BurdoI,NaN,Doran's Ring,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,Rylai's Crystal Scepter,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
Gen G Wize,NaN,Mercury's Treads,Abyssal Mask,Spirit Visage,Thornmail,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Mark,Flash,SOLO,MIDDLE
Gen G Wize,NaN,Sorcerer's Shoes,NaN,Blasting Wand,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Zyra,Clarity,Flash,DUO_SUPPORT,NONE
Mei Tian Kun,Mercury's Treads,Edge of Night,Youmuu's Ghostblade,NaN,Black Cleaver,Lord Dominik's Regards,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,BOTTOM
Mei Tian Kun,Lich Bane,Broken Stopwatch,NaN,Rabadon's Deathcap,NaN,Sorcerer's Shoes,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Ignite,DUO,TOP
Gen G Karis,NaN,NaN,NaN,NaN,NaN,NaN,NaN,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
Gen G Karis,Doran's Blade,Health Potion,NaN,NaN,NaN,NaN,Stealth Ward,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
T1 BurdoI,Youmuu's Ghostblade,Mercury's Treads,Corrupting Potion,Edge of Night,Long Sword,Ruby Crystal,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Pantheon,Heal,Ghost,DUO_SUPPORT,NONE
T1 BurdoI,NaN,Doran's Ring,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,Rylai's Crystal Scepter,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
Gen G Wize,NaN,Mercury's Treads,Abyssal Mask,Spirit Visage,Thornmail,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Mark,Flash,SOLO,MIDDLE
Gen G Wize,NaN,Sorcerer's Shoes,NaN,Blasting Wand,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Zyra,Clarity,Flash,DUO_SUPPORT,NONE
Axiyo,Berserker's Greaves,Doran's Blade,Noonquiver,Cloak of Agility,NaN,Control Ward,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Vayne,Heal,Flash,DUO,NONE
Axiyo,Bami's Cinder,Refillable Potion,Boots of Swiftness,Cloth Armor,Tear of the Goddess,NaN,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,Waterwalking,NaN,,,RelentlessHunter,NaN,NaN,,CheapShot,NaN,,,NaN,NaN,NaN,NaN,Nunu & Willump,Flash,Smite,DUO_SUPPORT,NONE
Gen G Bonnie,Doran's Blade,Tiamat,Phage,Ruby Crystal,NaN,Plated Steelcaps,Stealth Ward,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Nocturne,Ignite,Flash,DUO_SUPPORT,NONE
Autumn Mid,Imperial Mandate,Banshee's Veil,Staff of Flowing Water,Cosmic Drive,Rabadon's Deathcap,Nashor's Tooth,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,CheapShot,NaN,,,NaN,NaN,NaN,NaN,Janna,Flash,Mark,DUO_SUPPORT,MIDDLE
Autumn Mid,Divine Sunderer,Tiamat,Black Cleaver,Plated Steelcaps,Caulfield's Warhammer,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Lee Sin,Flash,Smite,NONE,JUNGLE
Mei Tian Kun,Mercury's Treads,Edge of Night,Youmuu's Ghostblade,NaN,Black Cleaver,Lord Dominik's Regards,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,BOTTOM
Mei Tian Kun,Lich Bane,Broken Stopwatch,NaN,Rabadon's Deathcap,NaN,Sorcerer's Shoes,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Ignite,DUO,TOP
Mei Tian Kun,Essence Reaver,Dagger,NaN,NaN,Doran's Blade,Ionian Boots of Lucidity,Stealth Ward,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,MagicalFootwear,NaN,,,NaN,NaN,NaN,NaN,Lucian,Flash,Teleport,DUO_SUPPORT,NONE
Mei Tian Kun,Corrupting Potion,Dark Seal,NaN,Morellonomicon,Sorcerer's Shoes,Amplifying Tome,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,LeBlanc,Flash,Ignite,SOLO,MIDDLE
Mei Tian Kun,Doran's Shield,Trinity Force,Refillable Potion,Control Ward,Plated Steelcaps,Kindlegem,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TimeWarpTonic,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Jax,Flash,Teleport,SOLO,TOP
Mei Tian Kun,Doran's Ring,Lich Bane,Sorcerer's Shoes,Control Ward,Banshee's Veil,NaN,Stealth Ward,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Flash,Ignite,SOLO,MIDDLE
Mei Tian Kun,Doran's Ring,Hextech Alternator,Dark Seal,Sorcerer's Shoes,Lich Bane,Needlessly Large Rod,Stealth Ward,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Flash,Ignite,DUO_SUPPORT,NONE
Mei Tian Kun,NaN,Sorcerer's Shoes,Amplifying Tome,NaN,NaN,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Zoe,Flash,Ignite,DUO_SUPPORT,NONE
Mei Tian Kun,NaN,Amplifying Tome,Broken Stopwatch,Rabadon's Deathcap,Fiendish Codex,Sorcerer's Shoes,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Mei Tian Kun,Lich Bane,Mejai's Soulstealer,Sorcerer's Shoes,Needlessly Large Rod,Hextech Alternator,Needlessly Large Rod,Stealth Ward,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Flash,Teleport,SOLO,MIDDLE
Gen G Karis,NaN,NaN,NaN,NaN,NaN,NaN,NaN,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
Gen G Karis,Doran's Blade,Health Potion,NaN,NaN,NaN,NaN,Stealth Ward,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
Gen G Karis,Guardian Angel,Runaan's Hurricane,Infinity Edge,Berserker's Greaves,Zeal,Essence Reaver,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO_CARRY,BOTTOM
Gen G Karis,Runaan's Hurricane,Refillable Potion,NaN,Berserker's Greaves,Essence Reaver,B. F. Sword,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO_CARRY,BOTTOM
T1 BurdoI,Youmuu's Ghostblade,Mercury's Treads,Corrupting Potion,Edge of Night,Long Sword,Ruby Crystal,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Pantheon,Heal,Ghost,DUO_SUPPORT,NONE
T1 BurdoI,NaN,Doran's Ring,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,Rylai's Crystal Scepter,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
T1 BurdoI,NaN,Doran's Ring,NaN,Sorcerer's Shoes,Amplifying Tome,NaN,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
T1 BurdoI,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
Gen G Wize,NaN,Mercury's Treads,Abyssal Mask,Spirit Visage,Thornmail,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Mark,Flash,SOLO,MIDDLE
Gen G Wize,NaN,Sorcerer's Shoes,NaN,Blasting Wand,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Zyra,Clarity,Flash,DUO_SUPPORT,NONE
Gen G Wize,Tiamat,NaN,Mercury's Treads,Sterak's Gage,Spectre's Cowl,Kindlegem,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Renekton,Mark,Flash,DUO_SUPPORT,NONE
Gen G Wize,Rylai's Crystal Scepter,NaN,Sorcerer's Shoes,Morellonomicon,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Mordekaiser,Mark,Flash,DUO_SUPPORT,NONE
Gen G Wize,NaN,NaN,Sorcerer's Shoes,Blasting Wand,NaN,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Shyvana,Mark,Heal,DUO_SUPPORT,NONE
Gen G Wize,Hextech Rocketbelt,Zhonya's Hourglass,Sorcerer's Shoes,NaN,Oblivion Orb,NaN,Poro-Snax,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kennen,Mark,Heal,SOLO,MIDDLE
Gen G Wize,Tiamat,NaN,Sterak's Gage,Mercury's Treads,Ruby Crystal,Long Sword,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Renekton,Mark,Heal,DUO_SUPPORT,NONE
Gen G Wize,Infinity Edge,Berserker's Greaves,Dagger,Dagger,NaN,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Graves,Mark,Heal,DUO,NONE
Gen G Wize,Infinity Edge,Rapid Firecannon,Berserker's Greaves,Phantom Dancer,NaN,NaN,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Caitlyn,Ghost,Heal,DUO_SUPPORT,NONE
Gen G Wize,Infinity Edge,NaN,Berserker's Greaves,Zeal,Dagger,Dagger,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Senna,Ghost,Heal,DUO_SUPPORT,NONE
Axiyo,Berserker's Greaves,Doran's Blade,Noonquiver,Cloak of Agility,NaN,Control Ward,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Vayne,Heal,Flash,DUO,NONE
Axiyo,Bami's Cinder,Refillable Potion,Boots of Swiftness,Cloth Armor,Tear of the Goddess,NaN,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,Waterwalking,NaN,,,RelentlessHunter,NaN,NaN,,CheapShot,NaN,,,NaN,NaN,NaN,NaN,Nunu & Willump,Flash,Smite,DUO_SUPPORT,NONE
Axiyo,Doran's Blade,Kraken Slayer,Berserker's Greaves,Guinsoo's Rageblade,NaN,NaN,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Teleport,NONE,JUNGLE
Axiyo,Doran's Blade,Guinsoo's Rageblade,Berserker's Greaves,Noonquiver,Long Sword,Cloak of Agility,Stealth Ward,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,CoupDeGrace,NaN,,,LegendAlacrity,NaN,,,NaN,NaN,NaN,NaN,Kalista,Flash,Heal,DUO_CARRY,BOTTOM
Axiyo,Doran's Blade,Blade of The Ruined King,Berserker's Greaves,Refillable Potion,Manamune,Long Sword,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Lucian,Flash,Exhaust,SOLO,TOP
Axiyo,NaN,Sanguine Blade,Manamune,Berserker's Greaves,Doran's Blade,Recurve Bow,Stealth Ward,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Lucian,Flash,Teleport,SOLO,TOP
Axiyo,Doran's Blade,Phantom Dancer,Plated Steelcaps,Pickaxe,Cloth Armor,Cloak of Agility,Stealth Ward,Conqueror,NaN,,,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Yasuo,Flash,Teleport,DUO,TOP
Axiyo,Lord Dominik's Regards,Infinity Edge,Berserker's Greaves,Rapid Firecannon,NaN,Doran's Blade,Oracle Lens,FleetFootwork,NaN,,,Overheal,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,GatheringStorm,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Jhin,Flash,Teleport,DUO_CARRY,BOTTOM
Axiyo,Blade of The Ruined King,Control Ward,Infinity Edge,Berserker's Greaves,Zeal,Stormrazor,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,GatheringStorm,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Tristana,Flash,Heal,DUO_CARRY,BOTTOM
Axiyo,NaN,Sterak's Gage,Berserker's Greaves,Guinsoo's Rageblade,NaN,Vampiric Scepter,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Master Yi,Ghost,Smite,NONE,JUNGLE
Gen G Bonnie,Doran's Blade,Tiamat,Phage,Ruby Crystal,NaN,Plated Steelcaps,Stealth Ward,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Nocturne,Ignite,Flash,DUO_SUPPORT,NONE
T1 Gumayusi,Blade of The Ruined King,Refillable Potion,NaN,Pickaxe,Essence Reaver,Berserker's Greaves,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO_SUPPORT,NONE
T1 Gumayusi,Zhonya's Hourglass,Refillable Potion,NaN,Mejai's Soulstealer,NaN,Mobility Boots,Stealth Ward,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Lulu,Ignite,Flash,DUO_SUPPORT,NONE
T1 Gumayusi,Warden's Mail,NaN,NaN,NaN,NaN,Plated Steelcaps,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,,,,BonePlating,NaN,,,Overgrowth,NaN,,,CoupDeGrace,NaN,,,Triumph,NaN,NaN,,NaN,NaN,NaN,NaN,Thresh,Ignite,Flash,DUO_SUPPORT,NONE
T1 Gumayusi,Serrated Dirk,NaN,NaN,NaN,NaN,Mobility Boots,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Talon,Ignite,Flash,DUO_SUPPORT,NONE
T1 Gumayusi,Ravenous Hydra,Guardian Angel,Spirit Visage,Sterak's Gage,Trinity Force,Mercury's Treads,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,DUO,TOP
T1 Gumayusi,Zhonya's Hourglass,Rapid Firecannon,Needlessly Large Rod,Mejai's Soulstealer,Lich Bane,Boots of Swiftness,Stealth Ward,UnsealedSpellbook,NaN,,,PerfectTiming,,,,MinionDematerializer,NaN,,,TimeWarpTonic,NaN,NaN,NaN,BonePlating,NaN,,,Demolish,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Teleport,Flash,DUO_SUPPORT,TOP
T1 Gumayusi,Zeal,Refillable Potion,Infinity Edge,Runaan's Hurricane,Essence Reaver,Berserker's Greaves,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Heal,Flash,DUO,TOP
T1 Gumayusi,Bloodthirster,NaN,Spirit Visage,Muramana,NaN,Mercury's Treads,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,NaN,,CutDown,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Heal,Flash,DUO_SUPPORT,TOP
T1 Gumayusi,Zeal,Dagger,Rapid Firecannon,Infinity Edge,Stormrazor,Berserker's Greaves,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,TOP
T1 Gumayusi,B. F. Sword,Pickaxe,NaN,Muramana,Trinity Force,Mercury's Treads,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Ezreal,Teleport,Flash,DUO_SUPPORT,NONE
Why N0T,Eclipse,Berserker's Greaves,The Collector,Infinity Edge,Bloodthirster,Lord Dominik's Regards,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Miss Fortune,Flash,Heal,DUO,MIDDLE
Why N0T,Luden's Tempest,Zhonya's Hourglass,Nashor's Tooth,Needlessly Large Rod,Needlessly Large Rod,Sorcerer's Shoes,Poro-Snax,LethalTempo,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Azir,Flash,Barrier,DUO_SUPPORT,NONE
Why N0T,Ravenous Hydra,Goredrinker,Doran's Blade,Boots,Executioner's Calling,Kindlegem,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,CoupDeGrace,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,MIDDLE
Why N0T,Duskblade of Draktharr,Refillable Potion,Plated Steelcaps,Serrated Dirk,NaN,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Transcendence,,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,MIDDLE
Why N0T,Sorcerer's Shoes,Zhonya's Hourglass,Luden's Tempest,Tear of the Goddess,Oblivion Orb,Needlessly Large Rod,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Anivia,Flash,Teleport,SOLO,MIDDLE
Why N0T,Black Cleaver,Goredrinker,Ravenous Hydra,Ionian Boots of Lucidity,Serylda's Grudge,NaN,Oracle Lens,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,Transcendence,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,MIDDLE
Why N0T,Kindlegem,Refillable Potion,NaN,Moonstone Renewer,Mobility Boots,Fiendish Codex,Oracle Lens,SummonAery,NaN,NaN,,NimbusCloak,NaN,,,Transcendence,NaN,,,Waterwalking,NaN,NaN,,FuturesMarket,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ivern,Flash,Smite,NONE,JUNGLE
Why N0T,Seraph's Embrace,Zhonya's Hourglass,NaN,Sorcerer's Shoes,Mejai's Soulstealer,Luden's Tempest,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,CutDown,NaN,,,NaN,NaN,NaN,NaN,Anivia,Flash,Ignite,SOLO,MIDDLE
Why N0T,Ravenous Hydra,Ruby Crystal,Divine Sunderer,Plated Steelcaps,Doran's Blade,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,LastStand,NaN,,,SecondWind,NaN,,,Unflinching,NaN,,,NaN,NaN,NaN,NaN,Wukong,Flash,Teleport,SOLO,TOP
Why N0T,Needlessly Large Rod,Doran's Ring,Void Staff,Luden's Tempest,Lich Bane,Sorcerer's Shoes,Farsight Alteration,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Viktor,Flash,Teleport,DUO,TOP
Land of Glory,Boots,Tear of the Goddess,Corrupting Potion,NaN,Dark Seal,NaN,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,NaN,,LegendTenacity,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kassadin,Flash,Teleport,SOLO,MIDDLE
Land of Glory,NaN,Sorcerer's Shoes,Gargoyle Stoneplate,NaN,Warmog's Armor,Dark Seal,Farsight Alteration,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,CosmicInsight,,,,Waterwalking,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Cho'Gath,Flash,Teleport,SOLO,MIDDLE
Land of Glory,NaN,Ardent Censer,NaN,NaN,Dark Seal,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,ZombieWard,,,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Land of Glory,Broken Stopwatch,NaN,Dark Seal,Lich Bane,Sorcerer's Shoes,Seeker's Armguard,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,ZombieWard,NaN,NaN,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Land of Glory,NaN,Refillable Potion,NaN,Plated Steelcaps,Warden's Mail,Ruby Crystal,Stealth Ward,Aftershock,NaN,,,FontOfLife,NaN,,,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ornn,Flash,Smite,NONE,JUNGLE
Land of Glory,Zeke's Convergence,Knight's Vow,Targon's Buckler,Mobility Boots,Control Ward,NaN,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Leona,Flash,Ignite,DUO_SUPPORT,BOTTOM
Land of Glory,NaN,Rabadon's Deathcap,Dark Seal,Lich Bane,Sorcerer's Shoes,NaN,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,ZombieWard,NaN,NaN,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Land of Glory,Refillable Potion,NaN,Plated Steelcaps,Thornmail,Glacial Buckler,Sheen,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,FuturesMarket,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ornn,Flash,Smite,NONE,JUNGLE
Land of Glory,NaN,Refillable Potion,Mobility Boots,NaN,Giant's Belt,Chain Vest,Oracle Lens,DarkHarvest,NaN,NaN,NaN,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Poppy,Flash,Smite,NONE,JUNGLE
Land of Glory,NaN,Refillable Potion,NaN,Boots,Serrated Dirk,Caulfield's Warhammer,Stealth Ward,DarkHarvest,NaN,NaN,NaN,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Kha'Zix,Flash,Smite,NONE,JUNGLE
Nalow,Lich Bane,Zhonya's Hourglass,Hextech Rocketbelt,Sorcerer's Shoes,NaN,Rylai's Crystal Scepter,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Shaco,Flash,Ignite,DUO_CARRY,TOP
Nalow,Long Sword,Phantom Dancer,Mercurial Scimitar,Bloodthirster,Infinity Edge,Mercury's Treads,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Yone,Flash,Ignite,NONE,JUNGLE
Nalow,NaN,Black Cleaver,Ravenous Hydra,Mercury's Treads,Bloodthirster,Sterak's Gage,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Lee Sin,Flash,Ignite,DUO,TOP
Nalow,NaN,Youmuu's Ghostblade,Refillable Potion,Plated Steelcaps,Serrated Dirk,Ruby Crystal,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,DUO_SUPPORT,NONE
Nalow,NaN,NaN,Rabadon's Deathcap,Sorcerer's Shoes,Void Staff,Rylai's Crystal Scepter,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Vel'Koz,Flash,Ghost,DUO_SUPPORT,TOP
Nalow,Lich Bane,Blasting Wand,Broken Stopwatch,Lost Chapter,Boots,NaN,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO_SUPPORT,NONE
Nalow,NaN,Zhonya's Hourglass,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,NaN,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Lux,Flash,Ghost,DUO_SUPPORT,NONE
Nalow,NaN,Phantom Dancer,Berserker's Greaves,Infinity Edge,Bloodthirster,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Yone,Flash,Teleport,SOLO,TOP
Nalow,Lich Bane,Zhonya's Hourglass,Sorcerer's Shoes,Doran's Ring,NaN,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Sylas,Flash,Teleport,SOLO,TOP
Nalow,Broken Stopwatch,Zeke's Convergence,Pauldrons of Whiterock,Mobility Boots,Glacial Buckler,Sapphire Crystal,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Blitzcrank,Flash,Exhaust,DUO_SUPPORT,BOTTOM
7 5,Doran's Shield,Frostfire Gauntlet,Mercury's Treads,Tiamat,Giant's Belt,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Shen,Teleport,Flash,SOLO,TOP
7 5,Refillable Potion,Guardian Angel,Goredrinker,Black Cleaver,Executioner's Calling,Plated Steelcaps,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,CheapShot,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jarvan IV,Smite,Flash,NONE,JUNGLE
7 5,Bramble Vest,Goredrinker,Giant's Belt,Plated Steelcaps,Tiamat,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Trundle,Smite,Flash,NONE,JUNGLE
7 5,Zeke's Convergence,Bulwark of the Mountain,Locket of the Iron Solari,Kindlegem,Plated Steelcaps,Warden's Mail,Oracle Lens,Guardian,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,NaN,NaN,NaN,NaN,Taric,Ignite,Flash,DUO_SUPPORT,BOTTOM
7 5,Knight's Vow,Pauldrons of Whiterock,Goredrinker,Plated Steelcaps,Tiamat,Death's Dance,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Renekton,Ignite,Flash,DUO_SUPPORT,BOTTOM
7 5,Doran's Blade,Vampiric Scepter,Cloak of Agility,Noonquiver,Boots,Dagger,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO,NONE
7 5,Doran's Blade,Bloodthirster,Kraken Slayer,Berserker's Greaves,Infinity Edge,Zeal,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Yasuo,Ignite,Flash,DUO,NONE
7 5,Chempunk Chainsword,Berserker's Greaves,Galeforce,Ruby Crystal,Guinsoo's Rageblade,Blade of The Ruined King,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,SuddenImpact,NaN,,,NaN,NaN,NaN,NaN,Master Yi,Cleanse,Flash,DUO,NONE
7 5,Doran's Blade,Vampiric Scepter,Kraken Slayer,Berserker's Greaves,Navori Quickblades,Essence Reaver,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO_SUPPORT,NONE
7 5,Essence Reaver,Kraken Slayer,Refillable Potion,Berserker's Greaves,Serrated Dirk,Caulfield's Warhammer,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Smite,Flash,DUO_SUPPORT,NONE
ShrimpVicious,Corrupting Potion,Mejai's Soulstealer,Hextech Rocketbelt,Zhonya's Hourglass,Mercury's Treads,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Sylas,Flash,Teleport,DUO,TOP
ShrimpVicious,Tiamat,Phage,Control Ward,NaN,Mercury's Treads,Kindlegem,Stealth Ward,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,CosmicInsight,,,,MagicalFootwear,NaN,,,NaN,NaN,NaN,NaN,Lee Sin,Flash,Smite,NONE,JUNGLE
ShrimpVicious,Zhonya's Hourglass,Ruby Crystal,NaN,Sorcerer's Shoes,Control Ward,Amplifying Tome,Oracle Lens,Predator,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,IngeniousHunter,NaN,NaN,,CosmicInsight,,,,PerfectTiming,,,,NaN,NaN,NaN,NaN,Gragas,Flash,Smite,NONE,JUNGLE
ShrimpVicious,NaN,Black Cleaver,Caulfield's Warhammer,Hexdrinker,Plated Steelcaps,Control Ward,Stealth Ward,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,CosmicInsight,,,,MagicalFootwear,NaN,,,NaN,NaN,NaN,NaN,Lee Sin,Flash,Smite,DUO_SUPPORT,NONE
ShrimpVicious,Hextech Rocketbelt,Dark Seal,Seeker's Armguard,Boots,Corrupting Potion,Control Ward,Stealth Ward,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Sylas,Flash,Teleport,SOLO,TOP
ShrimpVicious,NaN,NaN,NaN,NaN,NaN,NaN,NaN,HailOfBlades,,,,CheapShot,,,,EyeballCollection,,,,RelentlessHunter,NaN,,,Triumph,,,,LegendAlacrity,,,,NaN,NaN,NaN,NaN,Rek'Sai,Flash,Smite,DUO,NONE
ShrimpVicious,Blasting Wand,NaN,Zhonya's Hourglass,Sorcerer's Shoes,Amplifying Tome,Control Ward,Stealth Ward,Predator,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,IngeniousHunter,NaN,NaN,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Gragas,Flash,Smite,NONE,JUNGLE
ShrimpVicious,Chain Vest,NaN,Control Ward,Mercury's Treads,Black Cleaver,Giant's Belt,Stealth Ward,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Lee Sin,Flash,Smite,NONE,JUNGLE
ShrimpVicious,Hextech Rocketbelt,Morellonomicon,Broken Stopwatch,Amplifying Tome,Sorcerer's Shoes,NaN,Stealth Ward,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,MagicalFootwear,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Sylas,Flash,Smite,NONE,JUNGLE
ShrimpVicious,Zhonya's Hourglass,NaN,Blasting Wand,Sorcerer's Shoes,Morellonomicon,Needlessly Large Rod,Oracle Lens,Predator,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,IngeniousHunter,NaN,NaN,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Gragas,Flash,Smite,NONE,JUNGLE
PAKA fans,Umbral Glaive,Goredrinker,Muramana,Black Cleaver,Ionian Boots of Lucidity,Executioner's Calling,Oracle Lens,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Jayce,Flash,Ignite,SOLO,TOP
PAKA fans,Doran's Blade,Eclipse,Plated Steelcaps,Muramana,Black Cleaver,Caulfield's Warhammer,Oracle Lens,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
PAKA fans,Doran's Blade,Health Potion,NaN,NaN,NaN,NaN,Stealth Ward,Conqueror,,,,PresenceOfMind,NaN,,,LegendAlacrity,,,,LastStand,,,,Transcendence,,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,DUO,NONE
PAKA fans,Eclipse,Corrupting Potion,Manamune,Boots,Executioner's Calling,NaN,Oracle Lens,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,,,,NaN,NaN,NaN,NaN,Jayce,Flash,Ignite,SOLO,MIDDLE
PAKA fans,Liandry's Anguish,Rylai's Crystal Scepter,Sorcerer's Shoes,Demonic Embrace,Oblivion Orb,Amplifying Tome,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Brand,Flash,Heal,DUO_SUPPORT,NONE
PAKA fans,Eclipse,Last Whisper,Caulfield's Warhammer,Black Cleaver,Slightly Magical Footwear,Manamune,Oracle Lens,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,MagicalFootwear,NaN,NaN,,NaN,NaN,NaN,NaN,Jayce,Flash,Ignite,DUO,TOP
PAKA fans,Eclipse,Corrupting Potion,Serrated Dirk,Ionian Boots of Lucidity,Chempunk Chainsword,Black Cleaver,Oracle Lens,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Jayce,Flash,Ignite,SOLO,MIDDLE
PAKA fans,Muramana,Refillable Potion,Divine Sunderer,Ionian Boots of Lucidity,Caulfield's Warhammer,Tiamat,Poro-Snax,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO_SUPPORT,NONE
PAKA fans,Moonstone Renewer,Zhonya's Hourglass,Seraph's Embrace,Ionian Boots of Lucidity,Ardent Censer,Staff of Flowing Water,Poro-Snax,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Seraphine,Flash,Barrier,DUO_SUPPORT,MIDDLE
PAKA fans,Eclipse,Serylda's Grudge,NaN,Black Cleaver,Muramana,Mercury's Treads,Oracle Lens,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,MagicalFootwear,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Jayce,Flash,Ignite,SOLO,MIDDLE
T1 Closer,The Collector,Lord Dominik's Regards,Cloth Armor,Boots of Swiftness,Eclipse,Doran's Blade,Farsight Alteration,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Jhin,Flash,Heal,DUO_CARRY,BOTTOM
T1 Closer,Goredrinker,Bramble Vest,Long Sword,Plated Steelcaps,Long Sword,Doran's Shield,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,,,,LastStand,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Garen,Flash,Teleport,SOLO,TOP
T1 Closer,Zhonya's Hourglass,NaN,Morellonomicon,Liandry's Anguish,Demonic Embrace,Mercury's Treads,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Sylas,Flash,Teleport,SOLO,MIDDLE
T1 Closer,Duskblade of Draktharr,Refillable Potion,Mercury's Treads,Edge of Night,Serrated Dirk,Pickaxe,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,MIDDLE
T1 Closer,Berserker's Greaves,Cloak of Agility,NaN,Immortal Shieldbow,Doran's Blade,Long Sword,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Flash,Ignite,DUO_SUPPORT,NONE
T1 Closer,NaN,Giant's Belt,Sorcerer's Shoes,Doran's Ring,Amplifying Tome,Liandry's Anguish,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Sylas,Flash,Teleport,NONE,JUNGLE
T1 Closer,Turbo Chemtank,Randuin's Omen,NaN,Thornmail,Chain Vest,Plated Steelcaps,Stealth Ward,Aftershock,NaN,,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Rammus,Flash,Smite,NONE,JUNGLE
T1 Closer,Serylda's Grudge,Serrated Dirk,Pickaxe,Eclipse,Doran's Blade,Plated Steelcaps,Stealth Ward,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
T1 Closer,Cloak of Agility,Pickaxe,NaN,Noonquiver,Berserker's Greaves,Doran's Blade,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Jhin,Flash,Heal,DUO_SUPPORT,NONE
T1 Closer,Mortal Reminder,Serylda's Grudge,Chain Vest,Berserker's Greaves,Doran's Shield,Immortal Shieldbow,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SecondWind,NaN,,,Unflinching,NaN,,,NaN,NaN,NaN,NaN,Yone,Flash,Ignite,SOLO,MIDDLE
T1 Kuri,Morellonomicon,Rabadon's Deathcap,Zhonya's Hourglass,Sorcerer's Shoes,Riftmaker,Lich Bane,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Akali,Flash,Cleanse,SOLO,MIDDLE
T1 Kuri,Bulwark of the Mountain,Sunfire Aegis,Control Ward,Mercury's Treads,Force of Nature,Winged Moonplate,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Malphite,Flash,Exhaust,DUO_SUPPORT,BOTTOM
T1 Kuri,Dark Seal,Oblivion Orb,Zhonya's Hourglass,Riftmaker,Lich Bane,Sorcerer's Shoes,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Akali,Flash,Ignite,DUO,MIDDLE
T1 Kuri,Blighting Jewel,Liandry's Anguish,Zhonya's Hourglass,Sorcerer's Shoes,Dark Seal,Cosmic Drive,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Sylas,Flash,Ignite,SOLO,MIDDLE
T1 Kuri,Bulwark of the Mountain,Sunfire Aegis,Plated Steelcaps,Dead Man's Plate,NaN,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Malphite,Flash,Exhaust,DUO_SUPPORT,BOTTOM
T1 Kuri,Dark Seal,Refillable Potion,Riftmaker,Sorcerer's Shoes,Control Ward,NaN,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,,,,CoupDeGrace,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Akali,Flash,Ignite,SOLO,MIDDLE
T1 Kuri,Hextech Rocketbelt,Corrupting Potion,Sunfire Aegis,Boots,Cloth Armor,NaN,Stealth Ward,Aftershock,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,Nautilus,Flash,Teleport,SOLO,MIDDLE
T1 Kuri,Blade of The Ruined King,Zeal,Berserker's Greaves,Dagger,Refillable Potion,Doran's Blade,Stealth Ward,LethalTempo,NaN,NaN,,Overheal,NaN,NaN,,LegendAlacrity,NaN,,,CutDown,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ashe,Flash,Heal,DUO_CARRY,BOTTOM
T1 Kuri,Manamune,Doran's Blade,Ionian Boots of Lucidity,Trinity Force,NaN,NaN,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Teleport,SOLO,MIDDLE
T1 Kuri,Gargoyle Stoneplate,NaN,Boots of Swiftness,Pauldrons of Whiterock,Negatron Cloak,NaN,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,PerfectTiming,,,,MinionDematerializer,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Flash,Ignite,DUO_SUPPORT,BOTTOM
1145,NaN,Randuin's Omen,Black Cleaver,Tiamat,Plated Steelcaps,Thornmail,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,CheapShot,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Olaf,Flash,Smite,NONE,JUNGLE
1145,NaN,Plated Steelcaps,Black Cleaver,Refillable Potion,Glacial Buckler,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,Waterwalking,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Olaf,Flash,Smite,NONE,JUNGLE
1145,NaN,Boots,Tiamat,Trinity Force,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Flash,Smite,NONE,JUNGLE
1145,NaN,Boots,Tiamat,Phage,Dagger,Sheen,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Flash,Smite,NONE,JUNGLE
DRX BigShot,Zhonya's Hourglass,NaN,Sorcerer's Shoes,Rylai's Crystal Scepter,NaN,Morellonomicon,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,ZombieWard,,,,RavenousHunter,NaN,NaN,,Celerity,NaN,,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Elise,Smite,Flash,NONE,JUNGLE
DRX BigShot,NaN,Refillable Potion,NaN,NaN,NaN,NaN,Stealth Ward,Electrocute,,,,CheapShot,,,,ZombieWard,,,,RavenousHunter,NaN,,,Celerity,NaN,,,Waterwalking,,NaN,,NaN,NaN,NaN,NaN,Elise,Smite,Flash,DUO,NONE
DRX BigShot,NaN,Plated Steelcaps,Serrated Dirk,NaN,NaN,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,DUO_SUPPORT,NONE
DRX BigShot,Infinity Edge,Doran's Shield,Berserker's Greaves,Essence Reaver,Rapid Firecannon,Zeal,Stealth Ward,LethalTempo,NaN,NaN,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Xayah,Heal,Flash,DUO_CARRY,BOTTOM
DRX BigShot,Refillable Potion,Shard of True Ice,Sorcerer's Shoes,Doran's Ring,Blasting Wand,Lost Chapter,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Brand,Teleport,Flash,DUO_SUPPORT,BOTTOM
DRX BigShot,Corrupting Potion,Trinity Force,Plated Steelcaps,Sterak's Gage,NaN,Guardian Angel,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Illaoi,Teleport,Flash,SOLO,TOP
DRX BigShot,Corrupting Potion,Dark Seal,Plated Steelcaps,Rylai's Crystal Scepter,NaN,Oblivion Orb,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Singed,Ignite,Ghost,NONE,JUNGLE
DRX BigShot,Corrupting Potion,Dark Seal,Plated Steelcaps,Rylai's Crystal Scepter,NaN,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Singed,Ignite,Ghost,DUO_SUPPORT,NONE
DRX BigShot,Hextech Rocketbelt,Corrupting Potion,Sorcerer's Shoes,NaN,Lich Bane,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Sylas,Ignite,Flash,SOLO,MIDDLE
DRX BigShot,NaN,Berserker's Greaves,Guinsoo's Rageblade,Nashor's Tooth,Rylai's Crystal Scepter,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Teemo,Smite,Flash,NONE,JUNGLE
Mizuhara Chizuru,Mejai's Soulstealer,Zhonya's Hourglass,Demonic Embrace,Liandry's Anguish,Seraph's Embrace,Banshee's Veil,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Anivia,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Broken Stopwatch,Corrupting Potion,Liandry's Anguish,Sorcerer's Shoes,NaN,Doran's Ring,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,PerfectTiming,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Heimerdinger,Teleport,Flash,SOLO,TOP
Mizuhara Chizuru,Liandry's Anguish,Seraph's Embrace,Demonic Embrace,Mercury's Treads,Blasting Wand,Amplifying Tome,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,ManaflowBand,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Anivia,Mark,Flash,DUO,NONE
Mizuhara Chizuru,Demonic Embrace,Mejai's Soulstealer,Shard of True Ice,Sorcerer's Shoes,Liandry's Anguish,NaN,Oracle Lens,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Brand,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Executioner's Calling,Navori Quickblades,Black Mist Scythe,Boots of Swiftness,Divine Sunderer,Cloak of Agility,Oracle Lens,GlacialAugment,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,ApproachVelocity,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Senna,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Kindlegem,Zhonya's Hourglass,Bulwark of the Mountain,Ionian Boots of Lucidity,Oblivion Orb,Luden's Tempest,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Lux,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Navori Quickblades,Executioner's Calling,Black Mist Scythe,Boots of Swiftness,Divine Sunderer,Long Sword,Oracle Lens,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,ApproachVelocity,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Senna,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Lost Chapter,Blasting Wand,Shard of True Ice,Sorcerer's Shoes,Dark Seal,Oblivion Orb,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Lux,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,NaN,Sheen,Black Mist Scythe,Boots of Swiftness,Executioner's Calling,Phage,Oracle Lens,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,ApproachVelocity,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Senna,Ignite,Flash,DUO_SUPPORT,NONE
Mizuhara Chizuru,Dark Seal,Zhonya's Hourglass,Shard of True Ice,Ionian Boots of Lucidity,Lost Chapter,Blasting Wand,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Lux,Ignite,Flash,DUO_SUPPORT,BOTTOM
SPG Jaguar,NaN,Rabadon's Deathcap,Sorcerer's Shoes,Dark Seal,Hextech Alternator,Oblivion Orb,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,NaN,NaN,Plated Steelcaps,Black Cleaver,Sterak's Gage,Executioner's Calling,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kayn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,Zhonya's Hourglass,Rabadon's Deathcap,Sorcerer's Shoes,Void Staff,NaN,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,NaN,NaN,Refillable Potion,Mejai's Soulstealer,Sorcerer's Shoes,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,DUO_SUPPORT,NONE
SPG Jaguar,Guardian Angel,Infinity Edge,Boots of Swiftness,Rapid Firecannon,Stormrazor,Vampiric Scepter,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,NaN,Tiamat,NaN,Muramana,Ionian Boots of Lucidity,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Kayn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,Zhonya's Hourglass,NaN,Morellonomicon,Dark Seal,Sorcerer's Shoes,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,ApproachVelocity,NaN,,,MagicalFootwear,NaN,NaN,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,NaN,Refillable Potion,Infinity Edge,Boots of Swiftness,Stormrazor,NaN,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,Doran's Blade,Cloak of Agility,Stormrazor,Boots of Swiftness,Infinity Edge,Rapid Firecannon,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,Doran's Blade,Refillable Potion,Berserker's Greaves,Essence Reaver,Infinity Edge,Cloak of Agility,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO_CARRY,BOTTOM
Sei2e the day,NaN,Mercury's Treads,Lich Bane,Amplifying Tome,NaN,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Mark,Flash,DUO_SUPPORT,NONE
Sei2e the day,Fiendish Codex,NaN,Sorcerer's Shoes,NaN,NaN,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,,,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Katarina,Ignite,Flash,SOLO,MIDDLE
Sei2e the day,Sorcerer's Shoes,Hextech Rocketbelt,Corrupting Potion,Lich Bane,Void Staff,Amplifying Tome,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ekko,Ignite,Flash,SOLO,MIDDLE
Sei2e the day,Corrupting Potion,Hextech Rocketbelt,Sorcerer's Shoes,Lich Bane,Oblivion Orb,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ekko,Ignite,Flash,SOLO,MIDDLE
Sei2e the day,NaN,Spirit Visage,Boots,NaN,NaN,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Vladimir,Mark,Flash,DUO_SUPPORT,NONE
i am lose,Boots,Dark Seal,Frostfang,Luden's Tempest,Amplifying Tome,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,CutDown,NaN,,,NaN,NaN,NaN,NaN,Veigar,Flash,Ignite,DUO_SUPPORT,NONE
i am lose,Blade of The Ruined King,Corrupting Potion,Phage,Cloth Armor,Sheen,Slightly Magical Footwear,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,,,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,NaN,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Jax,Flash,Teleport,SOLO,TOP
i am lose,Doran's Ring,Nashor's Tooth,Dark Seal,Plated Steelcaps,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,,,,LastStand,NaN,,,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,NaN,NaN,NaN,NaN,Kayle,Flash,Teleport,DUO_SUPPORT,NONE
i am lose,Doran's Blade,NaN,NaN,NaN,NaN,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,,,,LegendAlacrity,,,,LastStand,NaN,,,Transcendence,,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Riven,Flash,Teleport,DUO,NONE
i am lose,Tiamat,Kraken Slayer,Plated Steelcaps,Sheen,Long Sword,Blade of The Ruined King,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,SuddenImpact,NaN,,,NaN,NaN,NaN,NaN,Katarina,Teleport,Ignite,SOLO,MIDDLE
i am lose,Kraken Slayer,Dagger,Dagger,Control Ward,Boots,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,,,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,SuddenImpact,NaN,,,NaN,NaN,NaN,NaN,Katarina,Teleport,Ignite,DUO_SUPPORT,NONE
i am lose,Blade of The Ruined King,Doran's Blade,Negatron Cloak,Mercury's Treads,Pickaxe,Recurve Bow,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Master Yi,Ghost,Ignite,DUO,NONE
i am lose,Mortal Reminder,Youmuu's Ghostblade,Edge of Night,Long Sword,Plated Steelcaps,Kindlegem,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Transcendence,,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,MIDDLE
i am lose,Ravenous Hydra,Youmuu's Ghostblade,Edge of Night,Long Sword,Plated Steelcaps,Black Cleaver,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Transcendence,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Smite,NONE,JUNGLE
i am lose,Black Cleaver,Refillable Potion,NaN,Sterak's Gage,Plated Steelcaps,Vampiric Scepter,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Riven,Flash,Teleport,SOLO,TOP
TlGER,Shard of True Ice,Rylai's Crystal Scepter,Liandry's Anguish,NaN,NaN,Sorcerer's Shoes,Oracle Lens,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Exhaust,DUO_SUPPORT,BOTTOM
TlGER,Titanic Hydra,Mercury's Treads,Eclipse,Black Cleaver,Death's Dance,Long Sword,Stealth Ward,LethalTempo,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Nocturne,Flash,Smite,NONE,JUNGLE
TlGER,Runesteel Spaulders,Plated Steelcaps,Control Ward,Dead Man's Plate,Null-Magic Mantle,NaN,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Thresh,Flash,Ignite,DUO_SUPPORT,NONE
TlGER,Rabadon's Deathcap,Morellonomicon,Sorcerer's Shoes,Luden's Tempest,Amplifying Tome,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,LeBlanc,Flash,Ignite,SOLO,MIDDLE
TlGER,Doran's Ring,Seeker's Armguard,NaN,Stopwatch,Sorcerer's Shoes,Amplifying Tome,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Diana,Flash,Ignite,DUO,MIDDLE
TlGER,Titanic Hydra,Black Cleaver,Spirit Visage,Sterak's Gage,Executioner's Calling,Mercury's Treads,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,LastStand,NaN,,,Transcendence,,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Kled,Flash,Ignite,SOLO,TOP
TlGER,NaN,NaN,Control Ward,Amplifying Tome,Doran's Shield,Sorcerer's Shoes,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Akali,Flash,Ignite,SOLO,MIDDLE
TlGER,Rabadon's Deathcap,Amplifying Tome,Ruby Crystal,Sorcerer's Shoes,NaN,Blasting Wand,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Zoe,Flash,Ignite,DUO,TOP
TlGER,Doran's Ring,Morellonomicon,NaN,Void Staff,NaN,Sorcerer's Shoes,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Zoe,Flash,Ignite,DUO,MIDDLE
TlGER,NaN,Sorcerer's Shoes,NaN,Blasting Wand,Doran's Shield,Amplifying Tome,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Akali,Flash,Ignite,SOLO,MIDDLE
Zenit,Mobility Boots,Sunfire Aegis,Demonic Embrace,Shard of True Ice,Thornmail,Oblivion Orb,Oracle Lens,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Mobility Boots,Refillable Potion,Sunfire Aegis,Shard of True Ice,Amplifying Tome,Blasting Wand,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Mobility Boots,Sunfire Aegis,Demonic Embrace,Shard of True Ice,NaN,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Mobility Boots,Sunfire Aegis,Demonic Embrace,Shard of True Ice,Cloth Armor,Cloth Armor,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Slightly Magical Footwear,Luden's Tempest,NaN,Shard of True Ice,NaN,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Xerath,Flash,Ignite,DUO_SUPPORT,NONE
Zenit,Sorcerer's Shoes,Imperial Mandate,Demonic Embrace,Shard of True Ice,Oblivion Orb,Ruby Crystal,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Sorcerer's Shoes,Imperial Mandate,Thornmail,Shard of True Ice,Morellonomicon,Negatron Cloak,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Sorcerer's Shoes,Abyssal Mask,Imperial Mandate,Shard of True Ice,Morellonomicon,Bramble Vest,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Sorcerer's Shoes,Thornmail,Null-Magic Mantle,Shard of True Ice,Imperial Mandate,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Imperial Mandate,Refillable Potion,NaN,Frostfang,NaN,Slightly Magical Footwear,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,NONE
DWG Canyon,NaN,Hextech Rocketbelt,Zhonya's Hourglass,Dark Seal,Sorcerer's Shoes,NaN,Oracle Lens,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,CosmicInsight,,,,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Sylas,Smite,Flash,NONE,JUNGLE
DWG Canyon,Hailblade,Refillable Potion,NaN,NaN,NaN,NaN,Stealth Ward,Conqueror,,,,Triumph,,,,LegendAlacrity,,,,CoupDeGrace,,,,CosmicInsight,,,,FuturesMarket,,,,NaN,NaN,NaN,NaN,Sylas,Smite,Flash,DUO,NONE
DWG Canyon,NaN,Hextech Rocketbelt,Zhonya's Hourglass,Sorcerer's Shoes,NaN,NaN,Oracle Lens,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,CosmicInsight,,,,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Sylas,Smite,Flash,NONE,JUNGLE
Gen G Kellin,Corrupting Potion,Sunfire Aegis,NaN,NaN,NaN,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Ornn,Exhaust,Heal,DUO,NONE
Gen G Kellin,Corrupting Potion,Trinity Force,Ionian Boots of Lucidity,Sterak's Gage,Caulfield's Warhammer,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Gangplank,Ghost,Heal,NONE,JUNGLE
Gen G Kellin,Titanic Hydra,Black Cleaver,Mercury's Treads,NaN,NaN,NaN,Stealth Ward,NaN,Darius,Ghost,Heal,DUO,NONE
Gen G Kellin,Titanic Hydra,Mercury's Treads,Phage,NaN,NaN,NaN,Stealth Ward,NaN,Darius,Ghost,Heal,DUO,NONE
Gen G Kellin,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
Afreeca Spirit,Forbidden Idol,Kindlegem,Knight's Vow,Turbo Chemtank,Plated Steelcaps,Zeke's Convergence,Poro-Snax,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,PerfectTiming,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Alistar,Flash,Mark,SOLO,MIDDLE
Afreeca Spirit,Ravenous Hydra,Refillable Potion,Trinity Force,Vampiric Scepter,Plated Steelcaps,Dagger,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Irelia,Flash,Clarity,DUO_SUPPORT,NONE
Afreeca Spirit,Lost Chapter,Refillable Potion,Morellonomicon,Boots,Blasting Wand,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Gragas,Flash,Clarity,DUO,NONE
Afreeca Spirit,Infinity Edge,Refillable Potion,Stormrazor,Berserker's Greaves,Noonquiver,NaN,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Caitlyn,Flash,Clarity,DUO_SUPPORT,NONE
Afreeca Spirit,Shurelya's Battlesong,Winged Moonplate,Negatron Cloak,Zeke's Convergence,Boots of Swiftness,Knight's Vow,NaN,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,PerfectTiming,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Thresh,Flash,Exhaust,DUO_SUPPORT,MIDDLE
Afreeca Spirit,Rejuvenation Bead,Targon's Buckler,Control Ward,Shurelya's Battlesong,Boots of Swiftness,NaN,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,HextechFlashtraption,,,,NaN,NaN,NaN,NaN,Alistar,Flash,Exhaust,DUO_SUPPORT,NONE
Afreeca Spirit,Bami's Cinder,Bulwark of the Mountain,Control Ward,Zeke's Convergence,Boots of Swiftness,Knight's Vow,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,HextechFlashtraption,NaN,,,NaN,NaN,NaN,NaN,Leona,Flash,Exhaust,DUO_SUPPORT,BOTTOM
Afreeca Spirit,Shurelya's Battlesong,Bulwark of the Mountain,Control Ward,Mikael's Blessing,Boots of Swiftness,NaN,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,HextechFlashtraption,,,,NaN,NaN,NaN,NaN,Bard,Flash,Exhaust,DUO_SUPPORT,BOTTOM
Afreeca Spirit,Zhonya's Hourglass,Giant's Belt,Amplifying Tome,Luden's Tempest,Plated Steelcaps,Morellonomicon,NaN,Aftershock,NaN,,,Demolish,,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,,,,HextechFlashtraption,NaN,,,NaN,NaN,NaN,NaN,Neeko,Flash,Mark,SOLO,BOTTOM
Afreeca Spirit,Kindlegem,Winged Moonplate,Faerie Charm,Knight's Vow,Boots of Swiftness,Zeke's Convergence,Poro-Snax,Aftershock,NaN,,,Demolish,,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,HextechFlashtraption,NaN,,,NaN,NaN,NaN,NaN,Alistar,Flash,Mark,DUO_SUPPORT,NONE
MapleStory275LV,Doran's Ring,Morellonomicon,NaN,Sorcerer's Shoes,NaN,Rylai's Crystal Scepter,Stealth Ward,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Brand,Ignite,Flash,SOLO,MIDDLE
MapleStory275LV,Rabadon's Deathcap,NaN,Ionian Boots of Lucidity,NaN,Rylai's Crystal Scepter,Blasting Wand,Stealth Ward,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Malzahar,Ignite,Flash,DUO_CARRY,MIDDLE
MapleStory275LV,Morellonomicon,NaN,Rylai's Crystal Scepter,NaN,Ionian Boots of Lucidity,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Malzahar,Ignite,Flash,SOLO,MIDDLE
MapleStory275LV,NaN,NaN,Rabadon's Deathcap,Ionian Boots of Lucidity,Oblivion Orb,Void Staff,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Vel'Koz,Teleport,Flash,SOLO,TOP
MapleStory275LV,Zhonya's Hourglass,NaN,Doran's Ring,Plated Steelcaps,NaN,Amplifying Tome,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Malzahar,Exhaust,Flash,SOLO,MIDDLE
MapleStory275LV,NaN,Ionian Boots of Lucidity,Doran's Ring,Rabadon's Deathcap,Aether Wisp,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Vel'Koz,Heal,Flash,SOLO,MIDDLE
MapleStory275LV,NaN,Doran's Ring,Ionian Boots of Lucidity,Rabadon's Deathcap,Needlessly Large Rod,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Vel'Koz,Heal,Flash,SOLO,MIDDLE
MapleStory275LV,Doran's Shield,Trinity Force,Plated Steelcaps,Frozen Heart,Spectre's Cowl,Null-Magic Mantle,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Nasus,Teleport,Flash,SOLO,TOP
MapleStory275LV,Zhonya's Hourglass,Void Staff,Oblivion Orb,Rabadon's Deathcap,NaN,Sorcerer's Shoes,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Malphite,Ignite,Flash,SOLO,TOP
MapleStory275LV,NaN,Sorcerer's Shoes,Needlessly Large Rod,Banshee's Veil,Rabadon's Deathcap,Amplifying Tome,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Ahri,Cleanse,Flash,SOLO,MIDDLE
Mr Humble,Kraken Slayer,Long Sword,Vampiric Scepter,Berserker's Greaves,Tiamat,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Teleport,Flash,SOLO,TOP
Mr Humble,Executioner's Calling,Kraken Slayer,Berserker's Greaves,Runaan's Hurricane,Infinity Edge,Bloodthirster,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Heal,Flash,DUO_CARRY,BOTTOM
Mr Humble,Refillable Potion,Youmuu's Ghostblade,Duskblade of Draktharr,Mercury's Treads,Long Sword,Long Sword,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,NONE,JUNGLE
Mr Humble,Eclipse,Refillable Potion,Mercury's Treads,Maw of Malmortius,Ruby Crystal,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NullifyingOrb,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,Lee Sin,Smite,Flash,NONE,JUNGLE
Mr Humble,Muramana,Ionian Boots of Lucidity,Divine Sunderer,Blade of The Ruined King,Caulfield's Warhammer,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NullifyingOrb,NaN,,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Heal,Flash,DUO_CARRY,BOTTOM
Mr Humble,Doran's Blade,Kraken Slayer,Berserker's Greaves,Dagger,Dagger,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Heal,Flash,DUO_SUPPORT,NONE
Mr Humble,Duskblade of Draktharr,Black Mist Scythe,Umbral Glaive,The Collector,Cloak of Agility,Boots of Swiftness,Oracle Lens,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Senna,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Mr Humble,Luden's Tempest,Refillable Potion,Sorcerer's Shoes,Seeker's Armguard,Amplifying Tome,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,GatheringStorm,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Sylas,Ignite,Flash,SOLO,MIDDLE
Mr Humble,Locket of the Iron Solari,Bulwark of the Mountain,Zeke's Convergence,Knight's Vow,Mobility Boots,NaN,Oracle Lens,Guardian,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Thresh,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mr Humble,Pauldrons of Whiterock,Ruby Crystal,Sunfire Aegis,Boots of Swiftness,Negatron Cloak,Winged Moonplate,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Sett,Ignite,Flash,DUO_SUPPORT,TOP
Gen G HaYoon,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
hhjy,Health Potion,Doran's Blade,Berserker's Greaves,Caulfield's Warhammer,Dagger,B. F. Sword,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,DUO_SUPPORT,BOTTOM
hhjy,Berserker's Greaves,Health Potion,NaN,Caulfield's Warhammer,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,DUO_SUPPORT,NONE
hhjy,Bloodthirster,Bloodthirster,Infinity Edge,NaN,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,SOLO,BOTTOM
hhjy,Health Potion,NaN,Sorcerer's Shoes,Sapphire Crystal,Doran's Ring,Doran's Ring,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Morgana,Ghost,Heal,DUO_SUPPORT,MIDDLE
Aorlf,Ravenous Hydra,Berserker's Greaves,Dagger,Dagger,Dagger,Dagger,Stealth Ward,NaN,Master Yi,Ghost,Heal,DUO,NONE
Aorlf,NaN,NaN,NaN,NaN,NaN,NaN,Stealth Ward,NaN,Master Yi,Ghost,Heal,DUO,NONE
Aorlf,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
DWG Ghost,Corrupting Potion,Trinity Force,Muramana,Sterak's Gage,Plated Steelcaps,Tiamat,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Irelia,Flash,Teleport,SOLO,TOP
DWG Ghost,Guardian's Orb,Night Harvester,Muramana,Sorcerer's Shoes,Horizon Focus,Needlessly Large Rod,Poro-Snax,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Karthus,Flash,Barrier,DUO,TOP
DWG Ghost,Eclipse,Refillable Potion,The Collector,Plated Steelcaps,Sanguine Blade,Serrated Dirk,Oracle Lens,PhaseRush,NaN,,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,NaN,,Waterwalking,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Graves,Ignite,Smite,NONE,JUNGLE
DWG Ghost,Lich Bane,Nashor's Tooth,Riftmaker,Berserker's Greaves,Rabadon's Deathcap,Amplifying Tome,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kayle,Flash,Barrier,DUO,NONE
DWG Ghost,Eclipse,Youmuu's Ghostblade,Plated Steelcaps,Edge of Night,The Collector,B. F. Sword,Oracle Lens,PhaseRush,NaN,,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,,,Waterwalking,NaN,NaN,,LegendAlacrity,NaN,NaN,,Triumph,NaN,NaN,,NaN,NaN,NaN,NaN,Graves,Ignite,Smite,NONE,JUNGLE
DWG Ghost,Eclipse,Youmuu's Ghostblade,Plated Steelcaps,Serylda's Grudge,Edge of Night,Umbral Glaive,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Kha'Zix,Flash,Smite,NONE,JUNGLE
DWG Ghost,Trinity Force,NaN,Mercurial Scimitar,Muramana,NaN,Mortal Reminder,Farsight Alteration,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO,NONE
DWG Ghost,Infinity Edge,Muramana,Mortal Reminder,Essence Reaver,Rapid Firecannon,NaN,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Flash,Heal,DUO_CARRY,BOTTOM
DWG Ghost,Rabadon's Deathcap,NaN,Mejai's Soulstealer,Sorcerer's Shoes,Banshee's Veil,Void Staff,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,LeBlanc,Flash,Ignite,SOLO,MIDDLE
DWG Ghost,Doran's Blade,Blade of The Ruined King,Runaan's Hurricane,Berserker's Greaves,Infinity Edge,NaN,Farsight Alteration,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Ashe,Flash,Exhaust,DUO_CARRY,BOTTOM
GimGoon,Gargoyle Stoneplate,NaN,Corrupting Potion,Plated Steelcaps,Black Cleaver,NaN,Stealth Ward,UnsealedSpellbook,NaN,,,MagicalFootwear,NaN,NaN,,MinionDematerializer,NaN,,,ApproachVelocity,NaN,,,GhostPoro,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Urgot,Flash,Teleport,SOLO,TOP
GimGoon,Commencing Stopwatch,Doran's Shield,Boots,Ruby Crystal,NaN,NaN,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,GatheringStorm,,,,CosmicInsight,,,,PerfectTiming,,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Teleport,DUO,NONE
GimGoon,Sorcerer's Shoes,Hextech Rocketbelt,Zhonya's Hourglass,Blasting Wand,Amplifying Tome,Doran's Shield,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,CosmicInsight,,,,PerfectTiming,,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Teleport,SOLO,TOP
GimGoon,Gargoyle Stoneplate,NaN,NaN,Black Cleaver,Plated Steelcaps,Control Ward,NaN,UnsealedSpellbook,NaN,,,MagicalFootwear,NaN,NaN,,MinionDematerializer,NaN,,,ApproachVelocity,NaN,,,GhostPoro,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Urgot,Flash,Teleport,SOLO,TOP
GimGoon,B. F. Sword,Youmuu's Ghostblade,Mobility Boots,Black Cleaver,Mejai's Soulstealer,Serrated Dirk,Stealth Ward,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,GhostPoro,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
GimGoon,Corrupting Potion,Youmuu's Ghostblade,Plated Steelcaps,Kindlegem,Phage,Faerie Charm,Farsight Alteration,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
GimGoon,Corrupting Potion,Tiamat,Trinity Force,Plated Steelcaps,Sterak's Gage,Vampiric Scepter,Stealth Ward,NaN,NaN,NaN,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
GimGoon,Dark Seal,Hextech Rocketbelt,Zhonya's Hourglass,Sorcerer's Shoes,Aether Wisp,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,GhostPoro,NaN,NaN,,RavenousHunter,NaN,NaN,,NimbusCloak,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Ignite,DUO,TOP
GimGoon,Mercury's Treads,Youmuu's Ghostblade,Broken Stopwatch,Maw of Malmortius,NaN,Black Cleaver,Stealth Ward,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,GhostPoro,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
GimGoon,Doran's Blade,Youmuu's Ghostblade,Boots,Refillable Potion,Phage,Kindlegem,Stealth Ward,SummonAery,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
T1 Cuzz,Phantom Dancer,Berserker's Greaves,Executioner's Calling,Caulfield's Warhammer,Infinity Edge,Immortal Shieldbow,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yone,Smite,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Doran's Blade,Zeal,Berserker's Greaves,Dagger,NaN,Galeforce,Farsight Alteration,LethalTempo,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,,,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Ashe,Heal,Flash,DUO_CARRY,BOTTOM
T1 Cuzz,Pauldrons of Whiterock,Control Ward,Black Cleaver,Long Sword,Mercury's Treads,Divine Sunderer,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,ZombieWard,NaN,NaN,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Pantheon,Ignite,Flash,DUO_SUPPORT,BOTTOM
T1 Cuzz,Bami's Cinder,Plated Steelcaps,Aegis of the Legion,NaN,NaN,Hailblade,Stealth Ward,Aftershock,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,CheapShot,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Rell,Smite,Flash,DUO,NONE
T1 Cuzz,Ravenous Hydra,Maw of Malmortius,NaN,NaN,Mercury's Treads,Goredrinker,Poro-Snax,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,CoupDeGrace,NaN,,,Triumph,NaN,NaN,,NaN,NaN,NaN,NaN,Jarvan IV,Mark,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Sorcerer's Shoes,Liandry's Anguish,Morellonomicon,Rylai's Crystal Scepter,Rabadon's Deathcap,Seraph's Embrace,Poro-Snax,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,GatheringStorm,NaN,,,RavenousHunter,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Ryze,Barrier,Flash,DUO_SUPPORT,MIDDLE
T1 Cuzz,Void Staff,Sorcerer's Shoes,Rabadon's Deathcap,Night Harvester,NaN,Broken Stopwatch,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,LeBlanc,Ignite,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Berserker's Greaves,Kraken Slayer,Essence Reaver,Infinity Edge,Vampiric Scepter,Muramana,Poro-Snax,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO_SUPPORT,TOP
T1 Cuzz,Mercury's Treads,Spirit Visage,Force of Nature,NaN,NaN,Sunfire Aegis,Poro-Snax,Aftershock,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,LegendTenacity,NaN,NaN,,Triumph,NaN,NaN,,NaN,NaN,NaN,NaN,Nautilus,Ignite,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Berserker's Greaves,Immortal Shieldbow,Bloodthirster,Hearthbound Axe,Null-Magic Mantle,Blade of The Ruined King,Poro-Snax,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yone,Ignite,Flash,DUO_SUPPORT,TOP
Enryu0,Doran's Blade,Infinity Edge,Berserker's Greaves,Rapid Firecannon,B. F. Sword,Vampiric Scepter,Farsight Alteration,LethalTempo,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jinx,Heal,Flash,DUO_CARRY,BOTTOM
Enryu0,Doran's Blade,Berserker's Greaves,Dagger,Infinity Edge,Cloak of Agility,NaN,Stealth Ward,LethalTempo,,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jinx,Heal,Flash,DUO_SUPPORT,NONE
Enryu0,Doran's Blade,Runaan's Hurricane,Berserker's Greaves,Infinity Edge,Rapid Firecannon,NaN,Stealth Ward,Conqueror,,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jinx,Exhaust,Flash,DUO_CARRY,BOTTOM
Enryu0,Mobility Boots,Zeke's Convergence,Pauldrons of Whiterock,Knight's Vow,Fiendish Codex,NaN,Farsight Alteration,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Blitzcrank,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Enryu0,NaN,Morellonomicon,Rabadon's Deathcap,Void Staff,Zhonya's Hourglass,Banshee's Veil,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Diana,Ignite,Flash,DUO_CARRY,BOTTOM
Enryu0,Infinity Edge,Berserker's Greaves,Lord Dominik's Regards,Hexdrinker,Caulfield's Warhammer,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Graves,Mark,Flash,DUO_SUPPORT,NONE
Enryu0,Mortal Reminder,Vampiric Scepter,NaN,Bloodthirster,Quicksilver Sash,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Ignite,Flash,SOLO,BOTTOM
Enryu0,Sorcerer's Shoes,NaN,Frostfang,Lost Chapter,NaN,NaN,Stealth Ward,SummonAery,NaN,NaN,,NullifyingOrb,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,NaN,NaN,NaN,NaN,Lux,Exhaust,Flash,DUO_SUPPORT,NONE
Enryu0,Mobility Boots,Zeke's Convergence,Runesteel Spaulders,NaN,NaN,NaN,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Blitzcrank,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Enryu0,Trinity Force,Refillable Potion,Mercury's Treads,Ruby Crystal,Long Sword,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Wukong,Mark,Flash,DUO_SUPPORT,NONE
Untara,Goredrinker,Guardian's Horn,Dead Man's Plate,Mercury's Treads,Caulfield's Warhammer,NaN,NaN,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,Revitalize,NaN,NaN,,Conditioning,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Olaf,Mark,Flash,DUO_SUPPORT,NONE
Untara,Shurelya's Battlesong,Guardian's Horn,Refillable Potion,Boots of Swiftness,Glacial Buckler,Kindlegem,NaN,Aftershock,NaN,,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,HextechFlashtraption,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Blitzcrank,Mark,Flash,DUO_SUPPORT,NONE
Untara,Goredrinker,Death's Dance,Guardian's Blade,Sterak's Gage,Mercury's Treads,Long Sword,NaN,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Jarvan IV,Mark,Flash,DUO_SUPPORT,NONE
Untara,Plated Steelcaps,Guardian's Hammer,Refillable Potion,Sheen,Hearthbound Axe,Kindlegem,NaN,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Mark,Flash,DUO_SUPPORT,NONE
Untara,Turbo Chemtank,Guardian's Horn,Giant's Belt,Mercury's Treads,Abyssal Mask,Bramble Vest,Poro-Snax,Aftershock,NaN,,,Demolish,,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,NaN,NaN,NaN,NaN,Alistar,Mark,Flash,DUO_SUPPORT,NONE
Untara,Zhonya's Hourglass,Riftmaker,Sorcerer's Shoes,Oblivion Orb,Blasting Wand,NaN,Scarecrow Effigy,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Fiddlesticks,Mark,Flash,DUO_SUPPORT,NONE
Untara,Berserker's Greaves,Quicksilver Sash,Phantom Dancer,Immortal Shieldbow,Lord Dominik's Regards,B. F. Sword,NaN,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Quinn,Heal,Flash,DUO_SUPPORT,MIDDLE
Untara,Turbo Chemtank,Guardian's Horn,Mercury's Treads,Dead Man's Plate,Winged Moonplate,Null-Magic Mantle,NaN,Aftershock,NaN,,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,NaN,NaN,NaN,NaN,Volibear,Mark,Flash,DUO_SUPPORT,MIDDLE
Untara,Zhonya's Hourglass,Luden's Tempest,Horizon Focus,Sorcerer's Shoes,Blasting Wand,NaN,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Xerath,Clarity,Flash,DUO_SUPPORT,NONE
Untara,Ionian Boots of Lucidity,Guardian's Orb,Blasting Wand,Imperial Mandate,Forbidden Idol,NaN,NaN,SummonAery,NaN,NaN,,ManaflowBand,NaN,,,Transcendence,,,,Scorch,NaN,,,LegendTenacity,,,,PresenceOfMind,NaN,,,NaN,NaN,NaN,NaN,Ivern,Mark,Flash,DUO_SUPPORT,NONE
T1 Ellim,Runaan's Hurricane,Muramana,Immortal Shieldbow,Berserker's Greaves,Mortal Reminder,Cloak of Agility,Poro-Snax,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Aphelios,Cleanse,Flash,DUO,TOP
T1 Ellim,Guardian's Orb,Seraph's Embrace,Imperial Mandate,Ionian Boots of Lucidity,Mikael's Blessing,Forbidden Idol,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,Scorch,NaN,,,CoupDeGrace,NaN,,,Triumph,NaN,NaN,,NaN,NaN,NaN,NaN,Janna,Mark,Flash,DUO_SUPPORT,NONE
T1 Ellim,The Collector,Duskblade of Draktharr,Sanguine Blade,Berserker's Greaves,Hexdrinker,Mortal Reminder,Farsight Alteration,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,NaN,NaN,NaN,NaN,Draven,Heal,Flash,DUO_CARRY,BOTTOM
T1 Ellim,Corrupting Potion,Control Ward,Bramble Vest,Plated Steelcaps,Sunfire Aegis,Ruby Crystal,Stealth Ward,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Taric,Teleport,Flash,SOLO,TOP
T1 Ellim,Zeke's Convergence,Morellonomicon,Sorcerer's Shoes,Imperial Mandate,Dark Seal,Giant's Belt,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,Unflinching,NaN,,,FontOfLife,NaN,,,NaN,NaN,NaN,NaN,Sejuani,Smite,Flash,NONE,JUNGLE
T1 Ellim,Goredrinker,Mercury's Treads,Hexdrinker,NaN,Ravenous Hydra,NaN,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Xin Zhao,Smite,Flash,NONE,JUNGLE
T1 Ellim,Redemption,Moonstone Renewer,Ionian Boots of Lucidity,Staff of Flowing Water,NaN,NaN,Stealth Ward,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,NaN,NaN,NaN,NaN,Soraka,Teleport,Flash,DUO_SUPPORT,MIDDLE
T1 Ellim,Kraken Slayer,Refillable Potion,Boots,NaN,NaN,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yone,Smite,Flash,DUO,NONE
T1 Ellim,Duskblade of Draktharr,Serylda's Grudge,Maw of Malmortius,Boots,The Collector,Serrated Dirk,Oracle Lens,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Pantheon,Smite,Flash,DUO_SUPPORT,NONE
T1 Ellim,Sunfire Aegis,Titanic Hydra,Mercury's Treads,Phage,Pickaxe,Ruby Crystal,Stealth Ward,HailOfBlades,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,NaN,NaN,NaN,NaN,Shaco,Smite,Ignite,DUO_SUPPORT,NONE
Gen G Ruler,Immortal Shieldbow,Runaan's Hurricane,Control Ward,Vampiric Scepter,Doran's Blade,Berserker's Greaves,Farsight Alteration,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Overheal,NaN,NaN,,LegendAlacrity,NaN,,,NaN,NaN,NaN,NaN,Kalista,Heal,Flash,DUO_CARRY,BOTTOM
Gen G Ruler,Doran's Blade,Caulfield's Warhammer,Sapphire Crystal,Serrated Dirk,Boots,Tear of the Goddess,Stealth Ward,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,LegendBloodline,,,,NaN,NaN,NaN,NaN,Kai'Sa,Cleanse,Flash,DUO_SUPPORT,NONE
Gen G Ruler,Immortal Shieldbow,Runaan's Hurricane,Mercurial Scimitar,Doran's Shield,Berserker's Greaves,NaN,Farsight Alteration,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Kalista,Heal,Flash,DUO_CARRY,BOTTOM
Gen G Ruler,Vampiric Scepter,Refillable Potion,Noonquiver,Doran's Shield,Berserker's Greaves,Cloak of Agility,Stealth Ward,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Overheal,NaN,NaN,,LegendAlacrity,,,,NaN,NaN,NaN,NaN,Kalista,Heal,Flash,DUO_CARRY,BOTTOM
Gen G Ruler,Stopwatch,Duskblade of Draktharr,Doran's Blade,Berserker's Greaves,Nashor's Tooth,Muramana,Farsight Alteration,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,NaN,NaN,NaN,NaN,Kai'Sa,Heal,Flash,DUO_CARRY,BOTTOM
Gen G Ruler,Kircheis Shard,Galeforce,Control Ward,The Collector,Boots of Swiftness,Zeal,Farsight Alteration,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,BOTTOM
Gen G Ruler,Bulwark of the Mountain,Demonic Embrace,Control Ward,Sorcerer's Shoes,Imperial Mandate,NaN,Oracle Lens,ArcaneComet,NaN,,,NimbusCloak,NaN,,,Transcendence,NaN,,,Scorch,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Rumble,Ignite,Flash,DUO_SUPPORT,BOTTOM
Gen G Ruler,Vampiric Scepter,Immortal Shieldbow,B. F. Sword,Navori Quickblades,Berserker's Greaves,Essence Reaver,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Lucian,Ignite,Flash,SOLO,MIDDLE
Gen G Ruler,Broken Stopwatch,Runaan's Hurricane,Infinity Edge,Rapid Firecannon,Berserker's Greaves,Immortal Shieldbow,Farsight Alteration,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Cleanse,Flash,DUO,NONE
Gen G Ruler,Doran's Blade,Immortal Shieldbow,NaN,Berserker's Greaves,Pickaxe,Sanguine Blade,Oracle Lens,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Kalista,Teleport,Flash,SOLO,TOP
Heart,Winged Moonplate,Randuin's Omen,Plated Steelcaps,Sunfire Aegis,Abyssal Mask,Thornmail,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,NaN,NaN,NaN,NaN,Malphite,Flash,Teleport,SOLO,TOP
Heart,Tear of the Goddess,Luden's Tempest,Ionian Boots of Lucidity,Dark Seal,Verdant Barrier,Needlessly Large Rod,Stealth Ward,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ryze,Flash,Teleport,SOLO,MIDDLE
Heart,Doran's Blade,Immortal Shieldbow,Boots,B. F. Sword,Vampiric Scepter,NaN,Stealth Ward,Conqueror,NaN,,,Overheal,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Graves,Flash,Ignite,DUO,NONE
Heart,Nashor's Tooth,Riftmaker,Needlessly Large Rod,Sorcerer's Shoes,Lich Bane,Needlessly Large Rod,Poro-Snax,HailOfBlades,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,LegendAlacrity,NaN,,,PresenceOfMind,NaN,,,NaN,NaN,NaN,NaN,Bard,Flash,Ignite,DUO_SUPPORT,MIDDLE
Heart,Trinity Force,Sterak's Gage,Death's Dance,Mercury's Treads,Executioner's Calling,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,CheapShot,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Hecarim,Flash,Smite,DUO_SUPPORT,NONE
Heart,Boots of Swiftness,Refillable Potion,Imperial Mandate,Rylai's Crystal Scepter,Dead Man's Plate,Demonic Embrace,Stealth Ward,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Celerity,NaN,,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Nunu & Willump,Flash,Smite,DUO_SUPPORT,NONE
Heart,Imperial Mandate,Randuin's Omen,Boots of Swiftness,Rylai's Crystal Scepter,Dead Man's Plate,Thornmail,Stealth Ward,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Celerity,NaN,,,Waterwalking,NaN,,,NaN,NaN,NaN,NaN,Nunu & Willump,Flash,Ignite,DUO_SUPPORT,NONE
Heart,Doran's Ring,Knight's Vow,Imperial Mandate,Dead Man's Plate,Boots of Swiftness,Forbidden Idol,Stealth Ward,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Celerity,NaN,,,Waterwalking,,NaN,,NaN,NaN,NaN,NaN,Nunu & Willump,Flash,Ignite,DUO_SUPPORT,NONE
Heart,Bloodthirster,Berserker's Greaves,Immortal Shieldbow,Infinity Edge,Death's Dance,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Flash,Ignite,DUO,NONE
Heart,Duskblade of Draktharr,Refillable Potion,Muramana,Youmuu's Ghostblade,Mobility Boots,Long Sword,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NimbusCloak,NaN,,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Kayn,Flash,Smite,DUO_SUPPORT,NONE
KT Malrang,Pauldrons of Whiterock,Ionian Boots of Lucidity,Trinity Force,Essence Reaver,NaN,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Gangplank,Flash,Ignite,DUO_SUPPORT,BOTTOM
KT Malrang,Corrupting Potion,Trinity Force,Essence Reaver,Infinity Edge,Ionian Boots of Lucidity,Mortal Reminder,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Gangplank,Flash,Teleport,SOLO,TOP
KT Malrang,Black Cleaver,Guardian Angel,Mercury's Treads,Spectre's Cowl,NaN,Sterak's Gage,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Aatrox,Flash,Teleport,SOLO,TOP
KT Malrang,Tiamat,Doran's Blade,Plated Steelcaps,Trinity Force,Vampiric Scepter,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
KT Malrang,NaN,Refillable Potion,B. F. Sword,Berserker's Greaves,Essence Reaver,Pickaxe,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Quinn,Flash,Heal,DUO_CARRY,BOTTOM
KT Malrang,NaN,NaN,Plated Steelcaps,Trinity Force,Spirit Visage,Caulfield's Warhammer,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,Demolish,,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Hecarim,Ignite,Smite,NONE,JUNGLE
KT Malrang,Corrupting Potion,Trinity Force,Mercury's Treads,Aegis of the Legion,Long Sword,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Yorick,Flash,Teleport,DUO,NONE
KT Malrang,NaN,Trinity Force,Mercury's Treads,Sterak's Gage,Spirit Visage,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,LastStand,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Yorick,Flash,Teleport,SOLO,TOP
KT Malrang,Berserker's Greaves,Dagger,Dagger,Dagger,Dagger,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Jax,Flash,Teleport,SOLO,TOP
KT Malrang,Blade of The Ruined King,Trinity Force,NaN,Mercury's Treads,Sterak's Gage,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Jax,Flash,Teleport,SOLO,TOP
mogubaby,Lost Chapter,Sorcerer's Shoes,Seeker's Armguard,Ruby Crystal,NaN,NaN,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lux,Barrier,Heal,DUO_SUPPORT,NONE
mogubaby,Manamune,Sheen,Ionian Boots of Lucidity,Phage,Dagger,Dagger,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ezreal,Barrier,Heal,DUO_CARRY,BOTTOM
mogubaby,Youmuu's Ghostblade,Last Whisper,Mercury's Treads,Ruby Crystal,NaN,Long Sword,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Heal,Ghost,DUO_CARRY,BOTTOM
mogubaby,Rabadon's Deathcap,Morellonomicon,NaN,Sorcerer's Shoes,NaN,NaN,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
mogubaby,Doran's Ring,Health Potion,Sorcerer's Shoes,NaN,NaN,NaN,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
mogubaby,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
Swordart777,Corrupting Potion,NaN,NaN,Rabadon's Deathcap,Sorcerer's Shoes,NaN,Oracle Lens,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,TimeWarpTonic,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Ignite,DUO,TOP
Swordart777,Corrupting Potion,Mejai's Soulstealer,NaN,Mobility Boots,Blasting Wand,Ruby Crystal,Oracle Lens,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,TimeWarpTonic,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Teleport,SOLO,TOP
Swordart777,Muramana,Guinsoo's Rageblade,B. F. Sword,Dagger,Mercury's Treads,NaN,Stealth Ward,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ashe,Flash,Heal,SOLO,MIDDLE
Swordart777,Corrupting Potion,Sorcerer's Shoes,Dark Seal,NaN,NaN,NaN,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,TimeWarpTonic,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Ignite,SOLO,MIDDLE
Swordart777,Corrupting Potion,NaN,Banshee's Veil,Rylai's Crystal Scepter,NaN,Sorcerer's Shoes,Oracle Lens,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,TimeWarpTonic,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Ignite,SOLO,MIDDLE
Swordart777,Zhonya's Hourglass,NaN,NaN,Rylai's Crystal Scepter,NaN,Sorcerer's Shoes,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,TimeWarpTonic,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Ignite,SOLO,MIDDLE
Swordart777,Corrupting Potion,Blasting Wand,NaN,Sorcerer's Shoes,Dark Seal,Doran's Ring,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,TimeWarpTonic,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Teleport,SOLO,TOP
Swordart777,NaN,Zhonya's Hourglass,Sorcerer's Shoes,Rylai's Crystal Scepter,NaN,NaN,Oracle Lens,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,TimeWarpTonic,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Teleport,SOLO,TOP
Swordart777,Corrupting Potion,NaN,Mejai's Soulstealer,NaN,Sorcerer's Shoes,NaN,Stealth Ward,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,NaN,FuturesMarket,NaN,,,TimeWarpTonic,NaN,NaN,NaN,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Ignite,SOLO,MIDDLE
Swordart777,Corrupting Potion,NaN,Faerie Charm,Slightly Magical Footwear,Dark Seal,Dark Seal,Stealth Ward,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,,FuturesMarket,NaN,,,TimeWarpTonic,NaN,NaN,NaN,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Zyra,Flash,Ignite,DUO_SUPPORT,NONE
happy game fans,Refillable Potion,Doran's Blade,Essence Reaver,Dagger,NaN,Boots,Stealth Ward,LethalTempo,NaN,NaN,,Overheal,NaN,NaN,,LegendBloodline,,,,CutDown,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Xayah,Heal,Flash,DUO,NONE
happy game fans,Infinity Edge,Berserker's Greaves,Essence Reaver,Zeal,Runaan's Hurricane,Dagger,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,,,CutDown,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Heal,Flash,DUO_CARRY,BOTTOM
happy game fans,Lord Dominik's Regards,Phantom Dancer,Essence Reaver,Berserker's Greaves,Infinity Edge,Rapid Firecannon,Farsight Alteration,LethalTempo,NaN,NaN,,Overheal,NaN,NaN,,LegendBloodline,NaN,NaN,,CutDown,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Xayah,Heal,Flash,DUO_CARRY,BOTTOM
happy game fans,Essence Reaver,Doran's Blade,Cloak of Agility,Infinity Edge,Berserker's Greaves,Runaan's Hurricane,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,NaN,,CutDown,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Heal,Flash,DUO_CARRY,BOTTOM
happy game fans,Blade of The Ruined King,Trinity Force,Lord Dominik's Regards,Muramana,Ionian Boots of Lucidity,Maw of Malmortius,Farsight Alteration,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,NaN,,CutDown,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Cleanse,Flash,DUO_CARRY,BOTTOM
happy game fans,Essence Reaver,Phantom Dancer,Infinity Edge,Executioner's Calling,Runaan's Hurricane,Berserker's Greaves,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,,,CutDown,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Heal,Flash,DUO_CARRY,BOTTOM
gtqeti256,Corrupting Potion,Nashor's Tooth,Banshee's Veil,Seeker's Armguard,Dark Seal,Mercury's Treads,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Diana,Ignite,Flash,SOLO,MIDDLE
gtqeti256,Needlessly Large Rod,Zhonya's Hourglass,Nashor's Tooth,Sorcerer's Shoes,Mejai's Soulstealer,Morellonomicon,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Diana,Ignite,Flash,SOLO,MIDDLE
gtqeti256,Corrupting Potion,Dark Seal,Nashor's Tooth,Boots,Oblivion Orb,Control Ward,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Diana,Ignite,Flash,DUO_SUPPORT,NONE
gtqeti256,Hextech Rocketbelt,Zhonya's Hourglass,Randuin's Omen,NaN,Plated Steelcaps,Needlessly Large Rod,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Mordekaiser,Ignite,Flash,DUO,TOP
gtqeti256,Hextech Rocketbelt,Doran's Shield,NaN,Boots,Giant's Belt,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Mordekaiser,Ignite,Flash,NONE,JUNGLE
gtqeti256,Hextech Rocketbelt,Zhonya's Hourglass,NaN,Spectre's Cowl,Sorcerer's Shoes,Doran's Shield,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Mordekaiser,Ignite,Flash,SOLO,TOP
gtqeti256,NaN,Zhonya's Hourglass,Sorcerer's Shoes,Needlessly Large Rod,Void Staff,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Katarina,Ignite,Flash,SOLO,MIDDLE
gtqeti256,Corrupting Potion,Dark Seal,NaN,Boots,Morellonomicon,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Morgana,Heal,Flash,DUO_CARRY,BOTTOM
gtqeti256,Infinity Edge,Berserker's Greaves,NaN,Executioner's Calling,Kircheis Shard,B. F. Sword,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Caitlyn,Heal,Flash,DUO_CARRY,BOTTOM
gtqeti256,Blade of The Ruined King,Runaan's Hurricane,Phantom Dancer,Berserker's Greaves,Vampiric Scepter,Mortal Reminder,Stealth Ward,LethalTempo,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Kalista,Heal,Flash,DUO,MIDDLE
T1 Teddy,NaN,Zhonya's Hourglass,Rabadon's Deathcap,Mercury's Treads,Lich Bane,Rapid Firecannon,Oracle Lens,UnsealedSpellbook,NaN,,,PerfectTiming,,,,MinionDematerializer,NaN,,,TimeWarpTonic,NaN,NaN,NaN,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Teleport,Flash,SOLO,MIDDLE
T1 Teddy,Doran's Blade,Control Ward,Caulfield's Warhammer,Boots,Cloak of Agility,B. F. Sword,Stealth Ward,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Lucian,Teleport,Flash,DUO,NONE
T1 Teddy,Doran's Blade,Health Potion,Caulfield's Warhammer,Berserker's Greaves,Long Sword,NaN,Stealth Ward,LethalTempo,NaN,,,PresenceOfMind,,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Ashe,Cleanse,Flash,DUO_SUPPORT,NONE
T1 Teddy,Runaan's Hurricane,Mercurial Scimitar,Berserker's Greaves,Infinity Edge,Rapid Firecannon,NaN,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendBloodline,NaN,,,CutDown,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Heal,Flash,DUO_CARRY,BOTTOM
T1 Teddy,Doran's Ring,Seraph's Embrace,Zhonya's Hourglass,Sorcerer's Shoes,Amplifying Tome,Amplifying Tome,Stealth Ward,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Orianna,Teleport,Flash,SOLO,MIDDLE
T1 Teddy,Seraph's Embrace,Sorcerer's Shoes,Rabadon's Deathcap,NaN,NaN,NaN,Farsight Alteration,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Orianna,Teleport,Flash,DUO,MIDDLE
T1 Teddy,Doran's Ring,Plated Steelcaps,Seraph's Embrace,NaN,NaN,NaN,Stealth Ward,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Orianna,Teleport,Flash,SOLO,MIDDLE
T1 Teddy,Doran's Blade,Health Potion,Infinity Edge,Rapid Firecannon,Berserker's Greaves,B. F. Sword,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Caitlyn,Heal,Flash,DUO_CARRY,BOTTOM
T1 Teddy,Corrupting Potion,Trinity Force,Doran's Blade,Essence Reaver,Plated Steelcaps,Pickaxe,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Gangplank,Teleport,Flash,NONE,JUNGLE
T1 Teddy,Broken Stopwatch,Boots,Refillable Potion,NaN,NaN,NaN,Stealth Ward,Predator,,,,SuddenImpact,NaN,,,ZombieWard,,,,RelentlessHunter,NaN,NaN,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Gragas,Smite,Flash,DUO_SUPPORT,NONE
Azhy,NaN,Zhonya's Hourglass,Sorcerer's Shoes,Rabadon's Deathcap,Morellonomicon,Blasting Wand,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,GatheringStorm,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,Vel'Koz,Barrier,Flash,DUO,MIDDLE
Azhy,Infinity Edge,Boots of Swiftness,Rapid Firecannon,Stormrazor,Bloodthirster,NaN,Poro-Snax,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Jhin,Barrier,Flash,DUO,NONE
Azhy,NaN,Morellonomicon,Sorcerer's Shoes,Rabadon's Deathcap,Seeker's Armguard,NaN,Poro-Snax,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,GatheringStorm,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,LeBlanc,Ignite,Flash,DUO_SUPPORT,NONE
Azhy,Infinity Edge,Muramana,Berserker's Greaves,Runaan's Hurricane,Hexdrinker,Last Whisper,Stealth Ward,LethalTempo,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Twitch,Cleanse,Flash,DUO_CARRY,BOTTOM
Azhy,Dagger,Muramana,Infinity Edge,Berserker's Greaves,Runaan's Hurricane,Last Whisper,Stealth Ward,LethalTempo,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Twitch,Heal,Flash,DUO_CARRY,BOTTOM
Azhy,NaN,Tiamat,Edge of Night,Lord Dominik's Regards,Ionian Boots of Lucidity,Phage,Poro-Snax,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Rengar,Ignite,Flash,DUO_SUPPORT,TOP
Azhy,Sorcerer's Shoes,Zhonya's Hourglass,Amplifying Tome,NaN,Rabadon's Deathcap,Blasting Wand,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Zoe,Teleport,Flash,SOLO,MIDDLE
Azhy,Mercury's Treads,Blade of The Ruined King,Corrupting Potion,Trinity Force,NaN,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Irelia,Ignite,Flash,SOLO,MIDDLE
Azhy,Mercury's Treads,Hextech Rocketbelt,Zhonya's Hourglass,Rabadon's Deathcap,Morellonomicon,NaN,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Sylas,Teleport,Flash,SOLO,MIDDLE
See u AG,Bloodthirster,Kraken Slayer,Berserker's Greaves,Runaan's Hurricane,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,CutDown,NaN,,,RavenousHunter,NaN,NaN,,EyeballCollection,NaN,,,NaN,NaN,NaN,NaN,Lulu,Flash,Teleport,SOLO,TOP
See u AG,Liandry's Anguish,Demonic Embrace,Mercury's Treads,Giant's Belt,Blasting Wand,Amplifying Tome,Stealth Ward,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Lillia,Flash,Smite,NONE,JUNGLE
See u AG,Corrupting Potion,Liandry's Anguish,Plated Steelcaps,Demonic Embrace,NaN,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Lillia,Flash,Teleport,SOLO,TOP
See u AG,Pauldrons of Whiterock,Essence Reaver,Bloodthirster,NaN,Berserker's Greaves,NaN,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Samira,Flash,Exhaust,DUO_SUPPORT,BOTTOM
See u AG,NaN,Sorcerer's Shoes,Lich Bane,Rabadon's Deathcap,Blasting Wand,Seeker's Armguard,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Diana,Flash,Ignite,DUO_SUPPORT,TOP
See u AG,Void Staff,Zhonya's Hourglass,Morellonomicon,Sorcerer's Shoes,NaN,Rabadon's Deathcap,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Neeko,Flash,Ignite,DUO_CARRY,BOTTOM
Yunqi,NaN,Doran's Blade,Sheen,Doran's Blade,Phage,Slightly Magical Footwear,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
Yunqi,Zeal,Doran's Blade,Blade of The Ruined King,Doran's Blade,Berserker's Greaves,Guinsoo's Rageblade,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CutDown,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Teleport,DUO_SUPPORT,NONE
Yunqi,NaN,NaN,NaN,Doran's Blade,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,,Overheal,,,,LegendAlacrity,,,,CoupDeGrace,,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,,,NaN,NaN,NaN,NaN,Vayne,Flash,Barrier,DUO,NONE
Yunqi,Quicksilver Sash,NaN,Blade of The Ruined King,Guinsoo's Rageblade,Berserker's Greaves,Phantom Dancer,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Barrier,DUO_CARRY,BOTTOM
Yunqi,Mercurial Scimitar,Infinity Edge,Berserker's Greaves,Bloodthirster,Lord Dominik's Regards,Rapid Firecannon,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Draven,Flash,Heal,DUO_CARRY,BOTTOM
Yunqi,Refillable Potion,Phantom Dancer,Cloak of Agility,Doran's Blade,Berserker's Greaves,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,,,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Flash,Exhaust,DUO_CARRY,BOTTOM
Yunqi,Phantom Dancer,Infinity Edge,NaN,Berserker's Greaves,NaN,NaN,Farsight Alteration,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Flash,Exhaust,DUO_CARRY,BOTTOM
Yunqi,Refillable Potion,Recurve Bow,Blade of The Ruined King,Doran's Blade,Berserker's Greaves,NaN,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Heal,DUO_CARRY,BOTTOM
Yunqi,Refillable Potion,Berserker's Greaves,Blade of The Ruined King,Doran's Blade,Guinsoo's Rageblade,Phantom Dancer,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Teleport,SOLO,TOP
Yunqi,Phantom Dancer,NaN,Blade of The Ruined King,Guinsoo's Rageblade,Berserker's Greaves,B. F. Sword,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CutDown,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Teleport,NONE,JUNGLE
so1o bot,Doran's Blade,Berserker's Greaves,Phantom Dancer,Infinity Edge,Bloodthirster,Cloth Armor,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Ignite,Flash,SOLO,MIDDLE
so1o bot,Doran's Blade,Trinity Force,Muramana,Blade of The Ruined King,NaN,Ionian Boots of Lucidity,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Heal,Flash,DUO_CARRY,BOTTOM
so1o bot,Doran's Blade,Muramana,Ionian Boots of Lucidity,NaN,Trinity Force,Dagger,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Heal,Flash,DUO_CARRY,BOTTOM
so1o bot,Doran's Blade,Berserker's Greaves,Phantom Dancer,Infinity Edge,NaN,Null-Magic Mantle,Farsight Alteration,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Ignite,Flash,SOLO,MIDDLE
so1o bot,Doran's Blade,Phantom Dancer,Berserker's Greaves,B. F. Sword,NaN,Vampiric Scepter,Farsight Alteration,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Ignite,Flash,SOLO,MIDDLE
so1o bot,Doran's Blade,Berserker's Greaves,Kircheis Shard,Blade of The Ruined King,Zeal,Dagger,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO_CARRY,BOTTOM
so1o bot,Doran's Blade,Berserker's Greaves,Phantom Dancer,Blade of The Ruined King,Guinsoo's Rageblade,NaN,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Vayne,Heal,Flash,DUO_CARRY,BOTTOM
so1o bot,Caulfield's Warhammer,Black Cleaver,Refillable Potion,Control Ward,Mercury's Treads,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,,,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Riven,Teleport,Flash,SOLO,TOP
so1o bot,Doran's Shield,Health Potion,Phage,Boots,Cloth Armor,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,,,,LegendTenacity,,,,LastStand,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Darius,Teleport,Flash,SOLO,TOP
so1o bot,Black Cleaver,NaN,Boots of Swiftness,Youmuu's Ghostblade,Pickaxe,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,Transcendence,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Riven,Teleport,Flash,SOLO,TOP
feng ji xu chui,Mobility Boots,Runesteel Spaulders,Locket of the Iron Solari,Kindlegem,NaN,NaN,Stealth Ward,Aftershock,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Thresh,Ignite,Flash,DUO_SUPPORT,BOTTOM
feng ji xu chui,Runesteel Spaulders,Mobility Boots,Locket of the Iron Solari,Crystalline Bracer,Rejuvenation Bead,Ruby Crystal,Stealth Ward,Aftershock,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Thresh,Ignite,Flash,DUO_SUPPORT,BOTTOM
feng ji xu chui,Boots of Swiftness,Targon's Buckler,Turbo Chemtank,Ruby Crystal,Glacial Buckler,NaN,Stealth Ward,Aftershock,NaN,,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Blitzcrank,Ignite,Flash,DUO_SUPPORT,BOTTOM
feng ji xu chui,Doran's Blade,NaN,NaN,NaN,NaN,NaN,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yasuo,Ignite,Flash,DUO,NONE
feng ji xu chui,Mobility Boots,Runesteel Spaulders,Redemption,Frostfire Gauntlet,Bramble Vest,NaN,Stealth Ward,Aftershock,NaN,,,Demolish,,,,BonePlating,NaN,,,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Blitzcrank,Ignite,Flash,DUO_SUPPORT,BOTTOM
feng ji xu chui,Pauldrons of Whiterock,Mobility Boots,Frostfire Gauntlet,Forbidden Idol,NaN,NaN,Stealth Ward,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Blitzcrank,Ignite,Flash,DUO_SUPPORT,BOTTOM
feng ji xu chui,Mercury's Treads,Targon's Buckler,Frostfire Gauntlet,Null-Magic Mantle,NaN,NaN,Stealth Ward,Guardian,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,PresenceOfMind,NaN,,,LegendTenacity,,,,NaN,NaN,NaN,NaN,Taric,Ignite,Flash,DUO_SUPPORT,BOTTOM
feng ji xu chui,Night Harvester,Mobility Boots,Lich Bane,Oblivion Orb,Pauldrons of Whiterock,Ruby Crystal,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Blitzcrank,Ignite,Flash,DUO_SUPPORT,BOTTOM
feng ji xu chui,Broken Stopwatch,Runesteel Spaulders,Refillable Potion,Mobility Boots,Zeke's Convergence,NaN,Stealth Ward,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,PerfectTiming,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Thresh,Flash,Exhaust,DUO_SUPPORT,BOTTOM
feng ji xu chui,Knight's Vow,Redemption,Zeke's Convergence,Mobility Boots,Refillable Potion,Runesteel Spaulders,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,PerfectTiming,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Thresh,Flash,Exhaust,DUO_SUPPORT,BOTTOM
krats aira,Mercury's Treads,Sterak's Gage,Executioner's Calling,NaN,Divine Sunderer,Ravenous Hydra,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
krats aira,Plated Steelcaps,Refillable Potion,Doran's Blade,Ravenous Hydra,Trinity Force,Phage,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
krats aira,Slightly Magical Footwear,Divine Sunderer,Refillable Potion,Tiamat,NaN,NaN,Eye of the Herald,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,DUO_SUPPORT,TOP
krats aira,Mercury's Treads,Ravenous Hydra,Divine Sunderer,Doran's Blade,NaN,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
krats aira,Mercury's Treads,Phage,Trinity Force,Control Ward,Pickaxe,Ravenous Hydra,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
krats aira,Plated Steelcaps,Sterak's Gage,Trinity Force,Ravenous Hydra,Control Ward,B. F. Sword,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
krats aira,Berserker's Greaves,Pickaxe,Kraken Slayer,Control Ward,Essence Reaver,Serrated Dirk,Stealth Ward,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Lucian,Flash,Heal,DUO_CARRY,BOTTOM
krats aira,Plated Steelcaps,Refillable Potion,Ravenous Hydra,Phage,Trinity Force,Control Ward,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
krats aira,Plated Steelcaps,Death's Dance,NaN,Control Ward,Trinity Force,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,CheapShot,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Flash,Exhaust,DUO,MIDDLE
lIlIIlIlIIlIlI,Night Harvester,Refillable Potion,Nashor's Tooth,Mercury's Treads,Seeker's Armguard,Amplifying Tome,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ekko,Smite,Flash,NONE,JUNGLE
lIlIIlIlIIlIlI,Nashor's Tooth,Mercury's Treads,Hextech Alternator,NaN,NaN,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ekko,Smite,Flash,DUO_SUPPORT,NONE
lIlIIlIlIIlIlI,Duskblade of Draktharr,Chempunk Chainsword,Mercury's Treads,Maw of Malmortius,Chain Vest,Caulfield's Warhammer,Oracle Lens,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,NONE,JUNGLE
lIlIIlIlIIlIlI,Control Ward,Ruby Crystal,Plated Steelcaps,Serrated Dirk,Long Sword,Duskblade of Draktharr,Oracle Lens,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,NONE,JUNGLE
lIlIIlIlIIlIlI,Slightly Magical Footwear,Serrated Dirk,Duskblade of Draktharr,Long Sword,Cloth Armor,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,DUO_SUPPORT,NONE
lIlIIlIlIIlIlI,Duskblade of Draktharr,Refillable Potion,Plated Steelcaps,Serrated Dirk,Long Sword,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NullifyingOrb,NaN,,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Zed,Ignite,Flash,SOLO,MIDDLE
lIlIIlIlIIlIlI,Duskblade of Draktharr,Refillable Potion,Serrated Dirk,Slightly Magical Footwear,Long Sword,Long Sword,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,DUO_SUPPORT,NONE
lIlIIlIlIIlIlI,Duskblade of Draktharr,Refillable Potion,Plated Steelcaps,Long Sword,NaN,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,DUO_SUPPORT,NONE
lIlIIlIlIIlIlI,Long Sword,Refillable Potion,NaN,NaN,NaN,NaN,Stealth Ward,Electrocute,,,,TasteOfBlood,,,,EyeballCollection,,,,UltimateHunter,,,,Transcendence,,,,Scorch,,,,NaN,NaN,NaN,NaN,Zed,Ignite,Flash,DUO,NONE
lIlIIlIlIIlIlI,Duskblade of Draktharr,Plated Steelcaps,Edge of Night,Caulfield's Warhammer,Control Ward,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,NONE,JUNGLE
Suwa,Control Ward,Seraph's Embrace,Zhonya's Hourglass,Sorcerer's Shoes,Luden's Tempest,NaN,Stealth Ward,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,Scorch,NaN,,,TimeWarpTonic,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Orianna,Flash,Teleport,SOLO,MIDDLE
Suwa,Trinity Force,Thornmail,Caulfield's Warhammer,Blade of The Ruined King,Sterak's Gage,Mercury's Treads,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,LastStand,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jax,Flash,Smite,NONE,JUNGLE
Suwa,Black Cleaver,Giant's Belt,Mercury's Treads,Chain Vest,Trinity Force,Bramble Vest,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Hecarim,Flash,Smite,NONE,JUNGLE
Suwa,Plated Steelcaps,Kindlegem,Randuin's Omen,Goredrinker,Caulfield's Warhammer,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Olaf,Flash,Smite,NONE,JUNGLE
Suwa,Tear of the Goddess,Liandry's Anguish,Lich Bane,Sorcerer's Shoes,Needlessly Large Rod,Sapphire Crystal,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TimeWarpTonic,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Kassadin,Flash,Teleport,DUO,MIDDLE
Suwa,Ravenous Hydra,Trinity Force,Bramble Vest,Chain Vest,Ruby Crystal,Plated Steelcaps,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Trundle,Flash,Teleport,SOLO,TOP
Suwa,Black Cleaver,Stridebreaker,Refillable Potion,Mercury's Treads,NaN,Doran's Blade,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,LastStand,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Darius,Flash,Teleport,SOLO,TOP
Suwa,Luden's Tempest,Horizon Focus,Zhonya's Hourglass,Needlessly Large Rod,Tear of the Goddess,Sorcerer's Shoes,Stealth Ward,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,Scorch,NaN,,,TimeWarpTonic,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Orianna,Flash,Teleport,SOLO,MIDDLE
Suwa,Doran's Ring,Health Potion,Lost Chapter,Sorcerer's Shoes,NaN,NaN,Stealth Ward,SummonAery,NaN,NaN,,ManaflowBand,NaN,,,Celerity,NaN,,,Scorch,NaN,,,LegendAlacrity,,,,CutDown,,,,NaN,NaN,NaN,NaN,Orianna,Flash,Teleport,DUO,NONE
Suwa,Rabadon's Deathcap,Void Staff,Zhonya's Hourglass,Lich Bane,Sorcerer's Shoes,Luden's Tempest,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TimeWarpTonic,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Kassadin,Flash,Teleport,SOLO,MIDDLE
Zeder,Berserker's Greaves,Bloodthirster,Rageknife,Cloak of Agility,Rapid Firecannon,Dagger,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,ZombieWard,,,,UltimateHunter,NaN,,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Quinn,Flash,Ignite,DUO_SUPPORT,MIDDLE
Zeder,Immortal Shieldbow,Guinsoo's Rageblade,Stormrazor,Boots of Swiftness,Ruby Crystal,Cloth Armor,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,Celerity,Triumph,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Sett,Flash,Teleport,NONE,JUNGLE
Zeder,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Conqueror,,,,Triumph,,,,LegendAlacrity,,,,CoupDeGrace,,,,Celerity,,,,Scorch,,,,NaN,NaN,NaN,NaN,Sett,Flash,Teleport,DUO,NONE
Zeder,B. F. Sword,Health Potion,Vampiric Scepter,Berserker's Greaves,Cloak of Agility,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Yone,Flash,Ignite,SOLO,MIDDLE
Zeder,Immortal Shieldbow,Boots of Swiftness,Titanic Hydra,Dead Man's Plate,Bloodthirster,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Sett,Flash,Ghost,SOLO,TOP
Zeder,Titanic Hydra,Dead Man's Plate,Immortal Shieldbow,Zeal,Boots of Swiftness,Dagger,Farsight Alteration,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Sett,Flash,Ignite,NONE,JUNGLE
Zeder,Immortal Shieldbow,Warmog's Armor,Titanic Hydra,Chain Vest,Boots of Swiftness,Ruby Crystal,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Sett,Flash,Ghost,SOLO,TOP
Zeder,Boots of Swiftness,Goredrinker,Chain Vest,Winged Moonplate,Ruby Crystal,NaN,Stealth Ward,Conqueror,,,,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Darius,Flash,Ghost,NONE,JUNGLE
Zeder,Doran's Shield,Chain Vest,Winged Moonplate,Boots of Swiftness,Black Cleaver,Ruby Crystal,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Darius,Flash,Ghost,DUO_SUPPORT,NONE
Zeder,Doran's Shield,Chain Vest,Boots of Swiftness,Black Cleaver,Ruby Crystal,Winged Moonplate,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Darius,Flash,Ghost,SOLO,TOP
VaIhaIIa,Gargoyle Stoneplate,Spirit Visage,Void Staff,Cloth Armor,Mercury's Treads,Giant's Belt,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,Conditioning,NaN,NaN,NaN,Revitalize,NaN,NaN,,NaN,NaN,NaN,NaN,Volibear,Flash,Barrier,DUO_SUPPORT,NONE
VaIhaIIa,Berserker's Greaves,NaN,Youmuu's Ghostblade,Lord Dominik's Regards,Umbral Glaive,Sanguine Blade,Stealth Ward,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Jinx,Flash,Barrier,DUO_SUPPORT,NONE
VaIhaIIa,Sorcerer's Shoes,Morellonomicon,NaN,Needlessly Large Rod,Needlessly Large Rod,NaN,Scarecrow Effigy,Predator,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Fiddlesticks,Flash,Barrier,DUO_SUPPORT,NONE
VaIhaIIa,Bloodthirster,Phantom Dancer,Mercury's Treads,Infinity Edge,Dagger,Dagger,Stealth Ward,Conqueror,NaN,,,Overheal,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Yone,Flash,Barrier,NONE,JUNGLE
VaIhaIIa,Guardian Angel,Mercurial Scimitar,Infinity Edge,Long Sword,Berserker's Greaves,NaN,Stealth Ward,Conqueror,NaN,,,Overheal,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Samira,Flash,Heal,DUO_SUPPORT,NONE
VaIhaIIa,Morellonomicon,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,Banshee's Veil,NaN,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,Overheal,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Lillia,Flash,Heal,DUO_SUPPORT,NONE
VaIhaIIa,NaN,Boots,Lost Chapter,NaN,NaN,NaN,Poro-Snax,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Brand,Flash,Clarity,DUO,NONE
VaIhaIIa,Mercury's Treads,Sunfire Aegis,Abyssal Mask,Doran's Shield,Wit's End,Dead Man's Plate,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,NaN,NaN,NaN,NaN,Volibear,Flash,Teleport,SOLO,TOP
VaIhaIIa,Doran's Shield,Trinity Force,Mercury's Treads,Cloth Armor,Ruby Crystal,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,LegendAlacrity,,,,LastStand,NaN,,,NaN,NaN,NaN,NaN,Volibear,Flash,Teleport,SOLO,TOP
VaIhaIIa,NaN,Mercury's Treads,Seeker's Armguard,NaN,Fiendish Codex,NaN,Stealth Ward,SummonAery,NaN,,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,GatheringStorm,NaN,,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Lillia,Flash,Teleport,SOLO,TOP
Tsllep,NaN,NaN,NaN,NaN,NaN,NaN,NaN,GraspOfTheUndying,,,,Demolish,,,,SecondWind,,,,Overgrowth,,,,NullifyingOrb,NaN,,,Scorch,,,,NaN,NaN,NaN,NaN,Irelia,Exhaust,Heal,DUO_SUPPORT,TOP
Tsllep,Plated Steelcaps,Blade of The Ruined King,Corrupting Potion,Dagger,Recurve Bow,Negatron Cloak,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Irelia,Exhaust,Heal,NONE,JUNGLE
Tsllep,Mobility Boots,Umbral Glaive,Edge of Night,NaN,Long Sword,Long Sword,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Kayn,Barrier,Heal,DUO_SUPPORT,NONE
Tsllep,Plated Steelcaps,NaN,Umbral Glaive,Doran's Shield,Caulfield's Warhammer,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Kayn,Ghost,Heal,DUO,NONE
Tsllep,Doran's Shield,Vampiric Scepter,Caulfield's Warhammer,Boots,Null-Magic Mantle,Cloth Armor,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Kayn,Ghost,Heal,DUO_SUPPORT,NONE
Tsllep,Doran's Blade,Health Potion,Stormrazor,Berserker's Greaves,B. F. Sword,NaN,Stealth Ward,NaN,Miss Fortune,Ghost,Heal,DUO,NONE
Tsllep,Plated Steelcaps,Black Cleaver,Titanic Hydra,Tiamat,Pickaxe,Long Sword,Oracle Lens,NaN,Darius,Ghost,Heal,DUO,NONE
Tsllep,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
Atm0sphere,Wit's End,Berserker's Greaves,NaN,Infinity Edge,Phantom Dancer,NaN,Poro-Snax,Electrocute,NaN,,,CheapShot,NaN,,,GhostPoro,NaN,NaN,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Fizz,Mark,Flash,DUO_SUPPORT,TOP
Atm0sphere,NaN,Faerie Charm,Hextech Rocketbelt,NaN,Sorcerer's Shoes,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Swain,Mark,Flash,DUO_SUPPORT,NONE
Atm0sphere,NaN,Void Staff,Rabadon's Deathcap,Sorcerer's Shoes,Blasting Wand,Amplifying Tome,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Miss Fortune,Mark,Flash,DUO_SUPPORT,NONE
Atm0sphere,Sterak's Gage,Rejuvenation Bead,Black Cleaver,Mercury's Treads,NaN,NaN,Poro-Snax,Electrocute,NaN,,,CheapShot,NaN,,,GhostPoro,NaN,NaN,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Olaf,Mark,Flash,DUO_SUPPORT,NONE
Atm0sphere,Sunfire Aegis,Bramble Vest,Mercury's Treads,Spectre's Cowl,Dead Man's Plate,Ruby Crystal,Poro-Snax,Guardian,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Warwick,Mark,Flash,DUO_SUPPORT,NONE
Atm0sphere,Void Staff,Rabadon's Deathcap,Seraph's Embrace,NaN,Sorcerer's Shoes,Amplifying Tome,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ziggs,Mark,Flash,DUO_SUPPORT,TOP
Atm0sphere,NaN,Sorcerer's Shoes,Hextech Rocketbelt,NaN,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Rumble,Mark,Flash,DUO_SUPPORT,NONE
Atm0sphere,NaN,Lich Bane,Rabadon's Deathcap,Sorcerer's Shoes,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Fizz,Mark,Flash,DUO_SUPPORT,NONE
Atm0sphere,Berserker's Greaves,Rapid Firecannon,Blade of The Ruined King,NaN,Infinity Edge,Bloodthirster,Poro-Snax,Electrocute,NaN,,,CheapShot,NaN,,,GhostPoro,NaN,NaN,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Vayne,Mark,Flash,DUO_SUPPORT,TOP
Atm0sphere,Lich Bane,Sorcerer's Shoes,Amplifying Tome,NaN,Blasting Wand,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Fizz,Mark,Flash,DUO_SUPPORT,NONE
juhan1,Serrated Dirk,Serrated Dirk,Serrated Dirk,Serrated Dirk,Serrated Dirk,Serrated Dirk,Farsight Alteration,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,LastStand,NaN,,,NaN,NaN,NaN,NaN,Karthus,Flash,Exhaust,DUO,MIDDLE
juhan1,Bulwark of the Mountain,Mobility Boots,Locket of the Iron Solari,NaN,Kindlegem,NaN,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,HextechFlashtraption,NaN,,,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Ignite,Flash,DUO_SUPPORT,BOTTOM
juhan1,Pauldrons of Whiterock,Zeke's Convergence,Locket of the Iron Solari,Crystalline Bracer,Kindlegem,Mobility Boots,Oracle Lens,Guardian,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,ApproachVelocity,NaN,,,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Braum,Ignite,Flash,DUO_SUPPORT,BOTTOM
juhan1,Doran's Blade,Refillable Potion,Eclipse,Serrated Dirk,NaN,Berserker's Greaves,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendBloodline,,,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Lucian,Flash,Exhaust,DUO_SUPPORT,NONE
juhan1,Doran's Blade,Eclipse,Berserker's Greaves,Serrated Dirk,Long Sword,Control Ward,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendBloodline,,,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Lucian,Flash,Heal,DUO,NONE
juhan1,Doran's Blade,Kraken Slayer,Health Potion,NaN,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Heal,DUO,NONE
juhan1,Blade of The Ruined King,NaN,NaN,Guinsoo's Rageblade,Wit's End,Berserker's Greaves,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Exhaust,DUO_CARRY,BOTTOM
juhan1,Blade of The Ruined King,Pickaxe,Berserker's Greaves,Dagger,Doran's Blade,Dagger,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Exhaust,DUO_SUPPORT,NONE
juhan1,NaN,Sorcerer's Shoes,NaN,Banshee's Veil,Rabadon's Deathcap,Amplifying Tome,Farsight Alteration,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Brand,Flash,Ignite,DUO_CARRY,BOTTOM
juhan1,Quicksilver Sash,Guinsoo's Rageblade,Phantom Dancer,Berserker's Greaves,Blade of The Ruined King,Doran's Blade,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Cleanse,DUO_CARRY,BOTTOM
Oct0ber,Shard of True Ice,Refillable Potion,Imperial Mandate,Staff of Flowing Water,NaN,Mobility Boots,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Janna,Ignite,Flash,DUO_SUPPORT,BOTTOM
Oct0ber,Shard of True Ice,Forbidden Idol,Imperial Mandate,Dark Seal,Staff of Flowing Water,Mobility Boots,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Janna,Ignite,Flash,DUO_SUPPORT,BOTTOM
Oct0ber,Shard of True Ice,Imperial Mandate,NaN,NaN,NaN,Mobility Boots,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Nami,Ignite,Flash,DUO_SUPPORT,BOTTOM
Oct0ber,Shard of True Ice,Staff of Flowing Water,Forbidden Idol,NaN,Mobility Boots,Imperial Mandate,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Nami,Ignite,Flash,DUO_SUPPORT,BOTTOM
Oct0ber,Shard of True Ice,Imperial Mandate,Ardent Censer,NaN,Mobility Boots,Staff of Flowing Water,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Nami,Ignite,Flash,DUO_SUPPORT,BOTTOM
Oct0ber,Shard of True Ice,Refillable Potion,Imperial Mandate,Forbidden Idol,Dark Seal,Mobility Boots,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,CosmicInsight,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Nami,Ignite,Flash,DUO_SUPPORT,BOTTOM
Oct0ber,Sunfire Aegis,Thornmail,Control Ward,Dead Man's Plate,Spirit Visage,Mercury's Treads,Oracle Lens,PhaseRush,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,Waterwalking,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Nunu & Willump,Smite,Flash,NONE,JUNGLE
Oct0ber,Shard of True Ice,Mobility Boots,Staff of Flowing Water,Imperial Mandate,Ardent Censer,Kindlegem,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Janna,Ignite,Flash,DUO_SUPPORT,BOTTOM
Oct0ber,Sunfire Aegis,Aegis of the Legion,Thornmail,Cloth Armor,Demonic Embrace,Plated Steelcaps,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,LastStand,NaN,,,CheapShot,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Amumu,Smite,Flash,NONE,JUNGLE
Oct0ber,Eclipse,Pickaxe,Blade of The Ruined King,Phage,Mercury's Treads,Ruby Crystal,Oracle Lens,HailOfBlades,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,NaN,NaN,NaN,NaN,Xin Zhao,Smite,Flash,NONE,JUNGLE
xu tian,Infinity Edge,Trinity Force,Rapid Firecannon,Sorcerer's Shoes,Vampiric Scepter,B. F. Sword,Poro-Snax,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Corki,Flash,Exhaust,DUO,MIDDLE
xu tian,Guardian's Hammer,Mercury's Treads,Tiamat,Trinity Force,Vampiric Scepter,Long Sword,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Fiora,Flash,Exhaust,DUO_SUPPORT,NONE
xu tian,NaN,Sorcerer's Shoes,Rylai's Crystal Scepter,Amplifying Tome,Blasting Wand,Ruby Crystal,Poro-Snax,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Aurelion Sol,Flash,Exhaust,DUO_SUPPORT,NONE
xu tian,Plated Steelcaps,Quicksilver Sash,Trinity Force,Sanguine Blade,Executioner's Calling,Caulfield's Warhammer,Poro-Snax,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Pantheon,Flash,Ignite,DUO_SUPPORT,NONE
xu tian,Guardian's Hammer,Trinity Force,Sorcerer's Shoes,Kircheis Shard,B. F. Sword,NaN,Poro-Snax,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Corki,Flash,Cleanse,DUO_SUPPORT,NONE
xu tian,Rylai's Crystal Scepter,Zhonya's Hourglass,Sorcerer's Shoes,NaN,Morellonomicon,Needlessly Large Rod,Poro-Snax,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Amumu,Flash,Mark,DUO_SUPPORT,MIDDLE
xu tian,NaN,NaN,Mikael's Blessing,Ardent Censer,Sorcerer's Shoes,Needlessly Large Rod,Poro-Snax,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Lulu,Flash,Cleanse,DUO_SUPPORT,MIDDLE
xu tian,Guardian's Hammer,Berserker's Greaves,Essence Reaver,Runaan's Hurricane,Cloak of Agility,NaN,Poro-Snax,LethalTempo,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Ashe,Flash,Cleanse,DUO_SUPPORT,NONE
xu tian,Warmog's Armor,Mercury's Treads,Spirit Visage,Sunfire Aegis,Giant's Belt,Bramble Vest,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,NaN,NaN,NaN,NaN,Dr. Mundo,Flash,Mark,DUO_SUPPORT,MIDDLE
xu tian,NaN,NaN,Sorcerer's Shoes,Amplifying Tome,NaN,NaN,Poro-Snax,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Lulu,Flash,Mark,DUO_SUPPORT,NONE
Ezrea,Rabadon's Deathcap,NaN,Sorcerer's Shoes,Fiendish Codex,Seeker's Armguard,NaN,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Veigar,Barrier,Heal,DUO_SUPPORT,NONE
Ezrea,Rabadon's Deathcap,Muramana,Boots,Lich Bane,NaN,Fiendish Codex,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ezreal,Barrier,Heal,DUO_SUPPORT,NONE
Ezrea,Bloodthirster,Muramana,Trinity Force,Sanguine Blade,NaN,Vampiric Scepter,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ezreal,Ghost,Heal,DUO,NONE
Ezrea,NaN,Sorcerer's Shoes,Rabadon's Deathcap,Rabadon's Deathcap,Blasting Wand,NaN,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
Ezrea,Dagger,NaN,Health Potion,NaN,NaN,NaN,Stealth Ward,NaN,Miss Fortune,Ghost,Heal,DUO,NONE
Ezrea,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
Mei Tian Kun,Mercury's Treads,Edge of Night,Youmuu's Ghostblade,NaN,Black Cleaver,Lord Dominik's Regards,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,BOTTOM
Mei Tian Kun,Lich Bane,Broken Stopwatch,NaN,Rabadon's Deathcap,NaN,Sorcerer's Shoes,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Ignite,DUO,TOP
Mei Tian Kun,Essence Reaver,Dagger,NaN,NaN,Doran's Blade,Ionian Boots of Lucidity,Stealth Ward,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,MagicalFootwear,NaN,,,NaN,NaN,NaN,NaN,Lucian,Flash,Teleport,DUO_SUPPORT,NONE
Mei Tian Kun,Corrupting Potion,Dark Seal,NaN,Morellonomicon,Sorcerer's Shoes,Amplifying Tome,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,LeBlanc,Flash,Ignite,SOLO,MIDDLE
Mei Tian Kun,Doran's Shield,Trinity Force,Refillable Potion,Control Ward,Plated Steelcaps,Kindlegem,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TimeWarpTonic,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Jax,Flash,Teleport,SOLO,TOP
Mei Tian Kun,Doran's Ring,Lich Bane,Sorcerer's Shoes,Control Ward,Banshee's Veil,NaN,Stealth Ward,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Flash,Ignite,SOLO,MIDDLE
Mei Tian Kun,Doran's Ring,Hextech Alternator,Dark Seal,Sorcerer's Shoes,Lich Bane,Needlessly Large Rod,Stealth Ward,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Flash,Ignite,DUO_SUPPORT,NONE
Mei Tian Kun,NaN,Sorcerer's Shoes,Amplifying Tome,NaN,NaN,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Zoe,Flash,Ignite,DUO_SUPPORT,NONE
Mei Tian Kun,NaN,Amplifying Tome,Broken Stopwatch,Rabadon's Deathcap,Fiendish Codex,Sorcerer's Shoes,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Mei Tian Kun,Lich Bane,Mejai's Soulstealer,Sorcerer's Shoes,Needlessly Large Rod,Hextech Alternator,Needlessly Large Rod,Stealth Ward,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Flash,Teleport,SOLO,MIDDLE
Mei Tian Kun,Blade of The Ruined King,Berserker's Greaves,Guinsoo's Rageblade,Wit's End,NaN,Infinity Edge,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Vayne,Flash,Teleport,SOLO,TOP
Mei Tian Kun,Needlessly Large Rod,Sorcerer's Shoes,Mejai's Soulstealer,Lich Bane,Needlessly Large Rod,Hextech Alternator,Stealth Ward,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Flash,Ignite,SOLO,MIDDLE
Mei Tian Kun,Rabadon's Deathcap,Mejai's Soulstealer,Hextech Alternator,Sorcerer's Shoes,Lich Bane,NaN,Stealth Ward,DarkHarvest,NaN,NaN,NaN,CheapShot,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Flash,Ignite,SOLO,MIDDLE
Mei Tian Kun,NaN,Refillable Potion,Dagger,NaN,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Twitch,Flash,Smite,DUO,NONE
Mei Tian Kun,Void Staff,Sorcerer's Shoes,NaN,NaN,NaN,Dark Seal,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Lux,Flash,Teleport,SOLO,MIDDLE
Gen G Karis,NaN,NaN,NaN,NaN,NaN,NaN,NaN,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
Gen G Karis,Doran's Blade,Health Potion,NaN,NaN,NaN,NaN,Stealth Ward,PressTheAttack,,,,Triumph,,,,LegendBloodline,,,,CoupDeGrace,,,,NimbusCloak,,,,GatheringStorm,,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO,NONE
Gen G Karis,Guardian Angel,Runaan's Hurricane,Infinity Edge,Berserker's Greaves,Zeal,Essence Reaver,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO_CARRY,BOTTOM
Gen G Karis,Runaan's Hurricane,Refillable Potion,NaN,Berserker's Greaves,Essence Reaver,B. F. Sword,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Aphelios,Flash,Heal,DUO_CARRY,BOTTOM
T1 BurdoI,Youmuu's Ghostblade,Mercury's Treads,Corrupting Potion,Edge of Night,Long Sword,Ruby Crystal,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Pantheon,Heal,Ghost,DUO_SUPPORT,NONE
T1 BurdoI,NaN,Doran's Ring,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,Rylai's Crystal Scepter,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
T1 BurdoI,NaN,Doran's Ring,NaN,Sorcerer's Shoes,Amplifying Tome,NaN,Stealth Ward,NaN,Ahri,Ghost,Heal,DUO,NONE
T1 BurdoI,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
Gen G Wize,NaN,Mercury's Treads,Abyssal Mask,Spirit Visage,Thornmail,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Mark,Flash,SOLO,MIDDLE
Gen G Wize,NaN,Sorcerer's Shoes,NaN,Blasting Wand,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Zyra,Clarity,Flash,DUO_SUPPORT,NONE
Gen G Wize,Tiamat,NaN,Mercury's Treads,Sterak's Gage,Spectre's Cowl,Kindlegem,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Renekton,Mark,Flash,DUO_SUPPORT,NONE
Gen G Wize,Rylai's Crystal Scepter,NaN,Sorcerer's Shoes,Morellonomicon,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Mordekaiser,Mark,Flash,DUO_SUPPORT,NONE
Gen G Wize,NaN,NaN,Sorcerer's Shoes,Blasting Wand,NaN,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Shyvana,Mark,Heal,DUO_SUPPORT,NONE
Gen G Wize,Hextech Rocketbelt,Zhonya's Hourglass,Sorcerer's Shoes,NaN,Oblivion Orb,NaN,Poro-Snax,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kennen,Mark,Heal,SOLO,MIDDLE
Gen G Wize,Tiamat,NaN,Sterak's Gage,Mercury's Treads,Ruby Crystal,Long Sword,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Renekton,Mark,Heal,DUO_SUPPORT,NONE
Gen G Wize,Infinity Edge,Berserker's Greaves,Dagger,Dagger,NaN,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Graves,Mark,Heal,DUO,NONE
Gen G Wize,Infinity Edge,Rapid Firecannon,Berserker's Greaves,Phantom Dancer,NaN,NaN,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Caitlyn,Ghost,Heal,DUO_SUPPORT,NONE
Gen G Wize,Infinity Edge,NaN,Berserker's Greaves,Zeal,Dagger,Dagger,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Senna,Ghost,Heal,DUO_SUPPORT,NONE
Gen G Wize,Infinity Edge,NaN,Boots,Runaan's Hurricane,NaN,NaN,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Senna,Ghost,Heal,DUO_SUPPORT,NONE
Gen G Wize,NaN,Sorcerer's Shoes,Morellonomicon,Rabadon's Deathcap,Blasting Wand,Amplifying Tome,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Veigar,Ghost,Heal,DUO_SUPPORT,NONE
Gen G Wize,NaN,Morellonomicon,Amplifying Tome,Sorcerer's Shoes,Needlessly Large Rod,Needlessly Large Rod,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lux,Ghost,Heal,DUO_SUPPORT,NONE
Gen G Wize,NaN,Rabadon's Deathcap,Rylai's Crystal Scepter,Void Staff,Morellonomicon,Lich Bane,Stealth Ward,NaN,Lux,Ghost,Heal,DUO,NONE
Gen G Wize,Bloodthirster,NaN,Infinity Edge,Essence Reaver,Runaan's Hurricane,Lord Dominik's Regards,Stealth Ward,NaN,Miss Fortune,Ghost,Heal,DUO,NONE
SANDBOX Natalie,NaN,Dark Seal,Corrupting Potion,Sorcerer's Shoes,Blasting Wand,Amplifying Tome,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Taliyah,Flash,Ignite,DUO_CARRY,BOTTOM
SANDBOX Natalie,Mejai's Soulstealer,NaN,Corrupting Potion,NaN,Sorcerer's Shoes,NaN,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Taliyah,Flash,Ignite,DUO_SUPPORT,NONE
SANDBOX Natalie,Mejai's Soulstealer,NaN,Needlessly Large Rod,NaN,Mercury's Treads,Morellonomicon,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,,,NaN,NaN,NaN,NaN,Taliyah,Flash,Ignite,SOLO,MIDDLE
SANDBOX Natalie,Infinity Edge,Essence Reaver,Rapid Firecannon,Boots of Swiftness,Stormrazor,Serrated Dirk,Poro-Snax,DarkHarvest,NaN,NaN,NaN,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Jhin,Flash,Heal,DUO,TOP
SANDBOX Natalie,NaN,Rabadon's Deathcap,NaN,Oblivion Orb,Blasting Wand,NaN,Poro-Snax,DarkHarvest,NaN,NaN,NaN,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Karthus,Flash,Clarity,DUO,NONE
SANDBOX Natalie,NaN,Rabadon's Deathcap,Seraph's Embrace,Sorcerer's Shoes,Amplifying Tome,NaN,Poro-Snax,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ryze,Flash,Clarity,DUO_SUPPORT,NONE
SANDBOX Natalie,Infinity Edge,Stormrazor,Kircheis Shard,Boots,Zeal,NaN,Poro-Snax,DarkHarvest,NaN,NaN,NaN,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Jhin,Flash,Clarity,DUO_SUPPORT,NONE
SANDBOX Natalie,Infinity Edge,Runaan's Hurricane,Boots,Wit's End,Essence Reaver,Cloak of Agility,Poro-Snax,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Twitch,Flash,Heal,DUO,NONE
SANDBOX Natalie,Stormrazor,Kircheis Shard,Dagger,Dagger,Infinity Edge,NaN,Poro-Snax,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Tristana,Flash,Heal,DUO_SUPPORT,NONE
SANDBOX Natalie,Rylai's Crystal Scepter,Quicksilver Sash,NaN,Mercury's Treads,Rabadon's Deathcap,Needlessly Large Rod,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Katarina,Flash,Ignite,DUO,NONE
SANDBOX Natalie,Boots,NaN,Hextech Rocketbelt,Rabadon's Deathcap,Spirit Visage,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Mark,DUO_SUPPORT,NONE
SANDBOX Natalie,Infinity Edge,Stormrazor,Essence Reaver,Recurve Bow,Vampiric Scepter,Dagger,Poro-Snax,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Tristana,Flash,Heal,DUO,NONE
SANDBOX Natalie,Berserker's Greaves,Quicksilver Sash,NaN,Runaan's Hurricane,NaN,Long Sword,Poro-Snax,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kalista,Flash,Heal,DUO,NONE
SANDBOX Natalie,Infinity Edge,Essence Reaver,Berserker's Greaves,Vampiric Scepter,Dagger,NaN,Poro-Snax,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Flash,Heal,DUO,NONE
SANDBOX Natalie,Infinity Edge,Runaan's Hurricane,Blade of The Ruined King,Kircheis Shard,Cloak of Agility,Dagger,Poro-Snax,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Twitch,Flash,Heal,DUO,NONE
SANDBOX Ten10,Rabadon's Deathcap,Nashor's Tooth,Riftmaker,Zhonya's Hourglass,Mejai's Soulstealer,Sorcerer's Shoes,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Elise,Smite,Exhaust,DUO,BOTTOM
SANDBOX Ten10,Seraph's Embrace,Rylai's Crystal Scepter,Needlessly Large Rod,NaN,NaN,NaN,Oracle Lens,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendTenacity,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Cassiopeia,Exhaust,Flash,SOLO,MIDDLE
SANDBOX Ten10,NaN,Spirit Visage,Plated Steelcaps,Randuin's Omen,Guardian Angel,Black Cleaver,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,NimbusCloak,NaN,,,Waterwalking,NaN,,,NaN,NaN,NaN,NaN,Olaf,Smite,Flash,NONE,JUNGLE
SANDBOX Ten10,Hextech Rocketbelt,Mercury's Treads,Amplifying Tome,Zhonya's Hourglass,NaN,Morellonomicon,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,SecondWind,NaN,,,Revitalize,NaN,NaN,,NaN,NaN,NaN,NaN,Mordekaiser,Exhaust,Flash,SOLO,MIDDLE
SANDBOX Ten10,Youmuu's Ghostblade,Serrated Dirk,NaN,Tiamat,Mobility Boots,Black Cleaver,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Scorch,NaN,,,NullifyingOrb,NaN,,,NaN,NaN,NaN,NaN,Talon,Ignite,Flash,NONE,JUNGLE
SANDBOX Ten10,Youmuu's Ghostblade,Mortal Reminder,NaN,Edge of Night,Mobility Boots,Black Cleaver,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Scorch,NaN,,,NullifyingOrb,NaN,,,NaN,NaN,NaN,NaN,Talon,Ignite,Flash,DUO,TOP
SANDBOX Ten10,Youmuu's Ghostblade,Pickaxe,Serrated Dirk,Tiamat,Mobility Boots,NaN,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Scorch,NaN,,,NullifyingOrb,NaN,,,NaN,NaN,NaN,NaN,Talon,Ignite,Flash,DUO,TOP
SANDBOX Ten10,Seraph's Embrace,Rylai's Crystal Scepter,Fiendish Codex,Stopwatch,Needlessly Large Rod,Amplifying Tome,Stealth Ward,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Cassiopeia,Barrier,Flash,SOLO,MIDDLE
SANDBOX Ten10,Dark Seal,Rabadon's Deathcap,Hextech Rocketbelt,Sorcerer's Shoes,Amplifying Tome,Sheen,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,ZombieWard,NaN,NaN,,RavenousHunter,NaN,NaN,,LegendTenacity,NaN,NaN,,PresenceOfMind,NaN,NaN,,NaN,NaN,NaN,NaN,Fizz,Ignite,Flash,SOLO,MIDDLE
SANDBOX Ten10,Youmuu's Ghostblade,Serrated Dirk,Mobility Boots,Tiamat,Black Cleaver,NaN,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Talon,Ignite,Flash,SOLO,MIDDLE
SANDBOX Ten10,Tiamat,Refillable Potion,NaN,NaN,Mobility Boots,NaN,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Talon,Ignite,Flash,DUO_SUPPORT,NONE
Destiny,Doran's Ring,Sorcerer's Shoes,NaN,Fiendish Codex,NaN,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Veigar,Heal,Flash,DUO_SUPPORT,BOTTOM
Destiny,NaN,NaN,Black Cleaver,Guardian Angel,Plated Steelcaps,NaN,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Wukong,Smite,Flash,NONE,JUNGLE
Destiny,Wit's End,Blade of The Ruined King,Guinsoo's Rageblade,Berserker's Greaves,NaN,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Master Yi,Exhaust,Flash,SOLO,TOP
Destiny,Doran's Blade,Umbral Glaive,Black Cleaver,Plated Steelcaps,Phantom Dancer,B. F. Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,Waterwalking,,NaN,,NaN,NaN,NaN,NaN,Graves,Exhaust,Flash,DUO_SUPPORT,NONE
Destiny,NaN,Zhonya's Hourglass,Sorcerer's Shoes,Blasting Wand,NaN,NaN,Stealth Ward,PhaseRush,NaN,,,NullifyingOrb,NaN,,,Celerity,NaN,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Blitzcrank,Ignite,Flash,DUO_SUPPORT,NONE
Destiny,NaN,Rabadon's Deathcap,Rylai's Crystal Scepter,Void Staff,Morellonomicon,NaN,Stealth Ward,PhaseRush,NaN,,,NullifyingOrb,NaN,,,Celerity,NaN,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Cassiopeia,Ignite,Flash,DUO,TOP
Destiny,Lost Chapter,Health Potion,NaN,Blasting Wand,NaN,NaN,Stealth Ward,Electrocute,,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Veigar,Ignite,Flash,DUO,NONE
Destiny,Hextech Rocketbelt,Lich Bane,Sorcerer's Shoes,Fiendish Codex,Seeker's Armguard,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Fizz,Ignite,Flash,SOLO,BOTTOM
Destiny,Rylai's Crystal Scepter,Sorcerer's Shoes,NaN,Needlessly Large Rod,NaN,NaN,Stealth Ward,SummonAery,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Malzahar,Ignite,Flash,DUO_SUPPORT,NONE
Destiny,Hextech Alternator,Amplifying Tome,NaN,NaN,NaN,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,GatheringStorm,NaN,,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Akali,Ignite,Flash,DUO_SUPPORT,NONE
Destiny,Hextech Rocketbelt,Sorcerer's Shoes,Rabadon's Deathcap,Oblivion Orb,Blasting Wand,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,GatheringStorm,NaN,,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Malphite,Ignite,Flash,DUO_SUPPORT,NONE
Destiny,Hextech Rocketbelt,Health Potion,Stopwatch,Amplifying Tome,NaN,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Vladimir,Ignite,Flash,DUO_SUPPORT,NONE
Destiny,Boots of Swiftness,NaN,Rylai's Crystal Scepter,Kindlegem,NaN,NaN,Stealth Ward,SummonAery,NaN,,,NullifyingOrb,NaN,,,Celerity,NaN,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Singed,Ghost,Flash,DUO_SUPPORT,NONE
Destiny,NaN,Boots of Swiftness,Youmuu's Ghostblade,Trinity Force,B. F. Sword,NaN,Stealth Ward,Predator,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,GatheringStorm,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Hecarim,Ghost,Flash,SOLO,BOTTOM
Destiny,NaN,Rabadon's Deathcap,Sorcerer's Shoes,Amplifying Tome,Blasting Wand,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,LeBlanc,Ignite,Flash,DUO,BOTTOM
Kiss Me Plz,Imperial Mandate,Shard of True Ice,Ardent Censer,Boots of Swiftness,Faerie Charm,Dark Seal,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Janna,Flash,Ignite,DUO_SUPPORT,BOTTOM
Kiss Me Plz,Hextech Rocketbelt,Seeker's Armguard,Corrupting Potion,Boots,Fiendish Codex,NaN,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,,,,LastStand,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Sylas,Flash,Teleport,SOLO,TOP
Kiss Me Plz,Goredrinker,Caulfield's Warhammer,Tiamat,Boots,Doran's Shield,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,NimbusCloak,NaN,,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Riven,Flash,Teleport,DUO,TOP
Kiss Me Plz,Trinity Force,Ravenous Hydra,Phage,Ionian Boots of Lucidity,Doran's Shield,NaN,Oracle Lens,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
Kiss Me Plz,Corrupting Potion,Trinity Force,Blade of The Ruined King,Plated Steelcaps,NaN,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Irelia,Flash,Teleport,SOLO,TOP
Kiss Me Plz,The Collector,Refillable Potion,Trinity Force,Berserker's Greaves,B. F. Sword,Cloak of Agility,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Kindred,Flash,Smite,NONE,JUNGLE
Kiss Me Plz,Night Harvester,Oblivion Orb,Dark Seal,Sorcerer's Shoes,Lich Bane,NaN,Oracle Lens,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Katarina,Flash,Ignite,SOLO,MIDDLE
Kiss Me Plz,Trinity Force,Corrupting Potion,Blade of The Ruined King,Plated Steelcaps,Long Sword,Long Sword,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Irelia,Flash,Teleport,SOLO,TOP
Kiss Me Plz,Doran's Shield,Vampiric Scepter,Refillable Potion,Boots,Long Sword,Long Sword,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,,,,CutDown,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Vayne,Flash,Heal,DUO_CARRY,BOTTOM
Kiss Me Plz,Youmuu's Ghostblade,Hexdrinker,Duskblade of Draktharr,Mercury's Treads,The Collector,Edge of Night,Farsight Alteration,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Draven,Flash,Heal,DUO_CARRY,BOTTOM
Kiss Me Plz,Shard of True Ice,Ardent Censer,Bandleglass Mirror,Boots of Swiftness,Dark Seal,Kindlegem,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Janna,Flash,Ignite,DUO_SUPPORT,MIDDLE
Kiss Me Plz,Everfrost,Shard of True Ice,Dark Seal,Sorcerer's Shoes,Amplifying Tome,Blasting Wand,Oracle Lens,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Taliyah,Flash,Exhaust,DUO_SUPPORT,NONE
Kiss Me Plz,Corrupting Potion,Night Harvester,Zhonya's Hourglass,Sorcerer's Shoes,Lich Bane,NaN,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Fizz,Flash,Ignite,SOLO,MIDDLE
Kiss Me Plz,Immortal Shieldbow,Infinity Edge,The Collector,Boots of Swiftness,Bloodthirster,NaN,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Samira,Flash,Heal,DUO,MIDDLE
Kiss Me Plz,Caulfield's Warhammer,Trinity Force,Blade of The Ruined King,Ionian Boots of Lucidity,Muramana,Chain Vest,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO_CARRY,BOTTOM
asdcqwfs,Doran's Blade,Sheen,Ruby Crystal,Manamune,Ionian Boots of Lucidity,Long Sword,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO_SUPPORT,NONE
asdcqwfs,Doran's Blade,Doran's Blade,Dagger,Manamune,Berserker's Greaves,Guinsoo's Rageblade,Farsight Alteration,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendBloodline,NaN,NaN,,NaN,NaN,NaN,NaN,Kai'Sa,Flash,Heal,DUO_SUPPORT,NONE
asdcqwfs,Doran's Blade,Manamune,Berserker's Greaves,Pickaxe,Recurve Bow,Amplifying Tome,Stealth Ward,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,NaN,NaN,NaN,NaN,Kai'Sa,Flash,Heal,DUO_CARRY,BOTTOM
asdcqwfs,Doran's Blade,Muramana,Nashor's Tooth,Berserker's Greaves,Guinsoo's Rageblade,Phantom Dancer,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Flash,Heal,SOLO,BOTTOM
asdcqwfs,Doran's Blade,Muramana,Nashor's Tooth,Berserker's Greaves,Guinsoo's Rageblade,Phantom Dancer,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Flash,Heal,DUO_CARRY,BOTTOM
asdcqwfs,Doran's Blade,Muramana,Guinsoo's Rageblade,Berserker's Greaves,Nashor's Tooth,Dagger,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Flash,Heal,DUO_CARRY,BOTTOM
asdcqwfs,Doran's Blade,Stormrazor,Refillable Potion,Berserker's Greaves,Pickaxe,Long Sword,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Flash,Heal,DUO_SUPPORT,NONE
asdcqwfs,Doran's Blade,Stormrazor,Refillable Potion,Boots of Swiftness,Pickaxe,B. F. Sword,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jhin,Flash,Heal,DUO_SUPPORT,NONE
asdcqwfs,Doran's Blade,Vampiric Scepter,Refillable Potion,Boots,Long Sword,B. F. Sword,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Draven,Flash,Heal,SOLO,BOTTOM
asdcqwfs,NaN,NaN,NaN,NaN,NaN,NaN,NaN,PressTheAttack,,,,Triumph,,,,LegendAlacrity,,,,CoupDeGrace,,,,AbsoluteFocus,,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Draven,Flash,Heal,DUO_SUPPORT,BOTTOM
asdcqwfs,Doran's Blade,Vampiric Scepter,Refillable Potion,Boots,NaN,NaN,Stealth Ward,PressTheAttack,,,,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Draven,Flash,Heal,DUO_CARRY,BOTTOM
asdcqwfs,Youmuu's Ghostblade,NaN,Black Mist Scythe,Ionian Boots of Lucidity,Umbral Glaive,Executioner's Calling,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Miss Fortune,Flash,Exhaust,DUO_SUPPORT,MIDDLE
asdcqwfs,Doran's Blade,Bloodthirster,Plated Steelcaps,Infinity Edge,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Draven,Flash,Heal,DUO_CARRY,BOTTOM
asdcqwfs,B. F. Sword,Bloodthirster,Infinity Edge,Rapid Firecannon,Plated Steelcaps,NaN,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Draven,Ghost,Heal,DUO_SUPPORT,NONE
Doinb,Infinity Edge,Rapid Firecannon,Mortal Reminder,Berserker's Greaves,Immortal Shieldbow,Stormrazor,Farsight Alteration,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Caitlyn,Heal,Flash,DUO_CARRY,BOTTOM
Doinb,Trinity Force,Ravenous Hydra,Death's Dance,Executioner's Calling,Plated Steelcaps,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,SOLO,TOP
Doinb,Muramana,Divine Sunderer,Ionian Boots of Lucidity,Frozen Heart,Maw of Malmortius,Serylda's Grudge,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Heal,Flash,DUO_CARRY,BOTTOM
Doinb,Muramana,Divine Sunderer,Ionian Boots of Lucidity,Frozen Heart,NaN,NaN,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Heal,Flash,DUO_SUPPORT,NONE
Doinb,Divine Sunderer,Ravenous Hydra,Doran's Shield,Plated Steelcaps,Long Sword,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,SOLO,TOP
Doinb,Divine Sunderer,Tiamat,Caulfield's Warhammer,Doran's Blade,NaN,Mercury's Treads,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,SOLO,TOP
Doinb,Divine Sunderer,Ravenous Hydra,Plated Steelcaps,Death's Dance,Executioner's Calling,Guardian Angel,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,SOLO,TOP
Doinb,Trinity Force,Ravenous Hydra,Control Ward,Plated Steelcaps,Guardian Angel,Death's Dance,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,SOLO,TOP
Doinb,Nashor's Tooth,Riftmaker,Berserker's Greaves,Needlessly Large Rod,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kayle,Teleport,Flash,SOLO,TOP
Doinb,Goredrinker,Death's Dance,NaN,Plated Steelcaps,Doran's Blade,Ravenous Hydra,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Fiora,Teleport,Flash,SOLO,TOP
Doinb,Riftmaker,Rabadon's Deathcap,Zhonya's Hourglass,Nashor's Tooth,Guinsoo's Rageblade,Berserker's Greaves,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kayle,Teleport,Flash,SOLO,TOP
Doinb,Trinity Force,Ravenous Hydra,Muramana,Plated Steelcaps,Death's Dance,Chempunk Chainsword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,SOLO,TOP
Doinb,NaN,Sorcerer's Shoes,Doran's Ring,Oblivion Orb,Nashor's Tooth,Lich Bane,Stealth Ward,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ahri,Teleport,Ghost,DUO,NONE
Doinb,Berserker's Greaves,Infinity Edge,Runaan's Hurricane,Guinsoo's Rageblade,Rapid Firecannon,NaN,Stealth Ward,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,LegendAlacrity,NaN,,,PresenceOfMind,NaN,NaN,,NaN,NaN,NaN,NaN,Kai'Sa,Teleport,Ghost,DUO_CARRY,NONE
Doinb,Berserker's Greaves,Serrated Dirk,Essence Reaver,Doran's Blade,NaN,NaN,Stealth Ward,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,LegendAlacrity,NaN,NaN,,PresenceOfMind,NaN,NaN,,NaN,NaN,NaN,NaN,Kai'Sa,Teleport,Ghost,DUO_SUPPORT,NONE
Gen G Rascal,Phantom Dancer,Infinity Edge,Blade of The Ruined King,Berserker's Greaves,Guinsoo's Rageblade,Doran's Blade,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Vayne,Flash,Heal,DUO_CARRY,BOTTOM
Gen G Rascal,NaN,Broken Stopwatch,Seraph's Embrace,Mercury's Treads,Seeker's Armguard,Lich Bane,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Kassadin,Flash,Teleport,SOLO,MIDDLE
Gen G Rascal,Control Ward,NaN,NaN,Void Staff,Blasting Wand,Sorcerer's Shoes,Stealth Ward,UnsealedSpellbook,NaN,,,PerfectTiming,,,,MinionDematerializer,NaN,,,CosmicInsight,,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Brand,Flash,Ignite,SOLO,MIDDLE
Gen G Rascal,Rabadon's Deathcap,Lich Bane,NaN,Ionian Boots of Lucidity,Void Staff,NaN,Oracle Lens,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,DUO_SUPPORT,TOP
Gen G Rascal,Umbral Glaive,Youmuu's Ghostblade,Tiamat,NaN,Edge of Night,Mobility Boots,Oracle Lens,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Talon,Flash,Ignite,SOLO,MIDDLE
Gen G Rascal,Blasting Wand,Archangel's Staff,NaN,NaN,Plated Steelcaps,Seeker's Armguard,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Kassadin,Flash,Teleport,SOLO,MIDDLE
Gen G Rascal,Control Ward,Blasting Wand,NaN,Sorcerer's Shoes,Amplifying Tome,Rabadon's Deathcap,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Veigar,Flash,Teleport,SOLO,MIDDLE
Gen G Rascal,Dark Seal,Stopwatch,Seraph's Embrace,Void Staff,NaN,Mercury's Treads,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kassadin,Flash,Teleport,DUO,TOP
Gen G Rascal,Dark Seal,Seraph's Embrace,Mercury's Treads,NaN,Needlessly Large Rod,Needlessly Large Rod,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,NaN,,LegendTenacity,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kassadin,Flash,Teleport,SOLO,MIDDLE
Gen G Rascal,Control Ward,Runaan's Hurricane,Blade of The Ruined King,Berserker's Greaves,Doran's Blade,Infinity Edge,Farsight Alteration,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Ashe,Flash,Heal,DUO_CARRY,BOTTOM
Gen G Rascal,Blasting Wand,Zhonya's Hourglass,Lich Bane,Ionian Boots of Lucidity,Rabadon's Deathcap,NaN,Oracle Lens,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NimbusCloak,NaN,,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Gen G Rascal,Berserker's Greaves,Corrupting Potion,NaN,Nashor's Tooth,Pickaxe,Dagger,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Kayle,Flash,Teleport,SOLO,TOP
Gen G Rascal,Rabadon's Deathcap,Morellonomicon,Sorcerer's Shoes,Nashor's Tooth,Blasting Wand,NaN,Oracle Lens,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,ZombieWard,NaN,NaN,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Shyvana,Flash,Smite,NONE,JUNGLE
Gen G Rascal,NaN,Mercury's Treads,Hextech Rocketbelt,Chain Vest,NaN,Giant's Belt,Oracle Lens,Predator,NaN,,,CheapShot,NaN,,,ZombieWard,NaN,NaN,,RelentlessHunter,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Nunu & Willump,Flash,Smite,NONE,JUNGLE
Gen G Rascal,Void Staff,Rabadon's Deathcap,Sorcerer's Shoes,Lich Bane,NaN,NaN,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Evelynn,Flash,Smite,NONE,JUNGLE
Clever7,Trinity Force,Sterak's Gage,Black Cleaver,Thornmail,Long Sword,Plated Steelcaps,NaN,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Hecarim,Flash,Mark,DUO_CARRY,MIDDLE
Clever7,Sunfire Aegis,Warmog's Armor,Randuin's Omen,Plated Steelcaps,Negatron Cloak,Ruby Crystal,NaN,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Revitalize,NaN,NaN,,Transcendence,NaN,,,NullifyingOrb,NaN,,,NaN,NaN,NaN,NaN,Sejuani,Flash,Mark,DUO_SUPPORT,NONE
Clever7,Trinity Force,Ravenous Hydra,Death's Dance,Blade of The Ruined King,NaN,Mercury's Treads,NaN,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,CheapShot,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Fiora,Flash,Mark,DUO_SUPPORT,TOP
Clever7,Berserker's Greaves,Immortal Shieldbow,Quicksilver Sash,Infinity Edge,Rapid Firecannon,Ruby Crystal,NaN,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,NullifyingOrb,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Vayne,Flash,Heal,DUO_SUPPORT,TOP
Clever7,Rylai's Crystal Scepter,Seraph's Embrace,Zhonya's Hourglass,Riftmaker,Demonic Embrace,Needlessly Large Rod,NaN,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,PresenceOfMind,NaN,,,CutDown,NaN,,,NaN,NaN,NaN,NaN,Cassiopeia,Flash,Heal,DUO_SUPPORT,TOP
Clever7,Immortal Shieldbow,Berserker's Greaves,Stormrazor,Doran's Blade,NaN,Dagger,Stealth Ward,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Kai'Sa,Flash,Heal,DUO_CARRY,BOTTOM
Clever7,Doran's Blade,Trinity Force,Berserker's Greaves,Manamune,Caulfield's Warhammer,Last Whisper,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO_CARRY,BOTTOM
Clever7,Mortal Reminder,Blade of The Ruined King,Guinsoo's Rageblade,Hexdrinker,Berserker's Greaves,Caulfield's Warhammer,Farsight Alteration,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yone,Flash,Ignite,DUO_CARRY,BOTTOM
Clever7,Chain Vest,Immortal Shieldbow,Ruby Crystal,Infinity Edge,Blade of The Ruined King,Plated Steelcaps,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,Celerity,NaN,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Vayne,Flash,Heal,DUO_CARRY,BOTTOM
Clever7,Divine Sunderer,Last Whisper,Muramana,Caulfield's Warhammer,Ionian Boots of Lucidity,NaN,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,SOLO,BOTTOM
Clever7,Blade of The Ruined King,Lord Dominik's Regards,Kraken Slayer,Guinsoo's Rageblade,Guardian Angel,Berserker's Greaves,Farsight Alteration,LethalTempo,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,Celerity,NaN,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Varus,Flash,Heal,DUO_CARRY,BOTTOM
Clever7,Berserker's Greaves,Infinity Edge,The Collector,Doran's Blade,B. F. Sword,Kraken Slayer,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,CutDown,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Lucian,Flash,Heal,DUO_CARRY,BOTTOM
Clever7,Kraken Slayer,Berserker's Greaves,Mercurial Scimitar,Guinsoo's Rageblade,Runaan's Hurricane,Cloak of Agility,Farsight Alteration,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Flash,Heal,DUO_CARRY,BOTTOM
Clever7,Berserker's Greaves,Blade of The Ruined King,Broken Stopwatch,Guinsoo's Rageblade,Lord Dominik's Regards,Immortal Shieldbow,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CutDown,NaN,,,Celerity,NaN,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Vayne,Flash,Heal,DUO_CARRY,BOTTOM
Clever7,Divine Sunderer,Muramana,Mercurial Scimitar,Ionian Boots of Lucidity,Serylda's Grudge,Vampiric Scepter,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,,,CoupDeGrace,NaN,,,Transcendence,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO_CARRY,BOTTOM
DRX Pyosik,NaN,Fiendish Codex,Hextech Rocketbelt,Dark Seal,Plated Steelcaps,NaN,Oracle Lens,MasterKey,NaN,NaN,NaN,MagicalFootwear,NaN,NaN,,FuturesMarket,NaN,,,CosmicInsight,,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ekko,Flash,Smite,NONE,JUNGLE
DRX Pyosik,Banshee's Veil,NaN,Zhonya's Hourglass,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,Scarecrow Effigy,UnsealedSpellbook,NaN,,,PerfectTiming,,,,FuturesMarket,NaN,,,CosmicInsight,,,,NimbusCloak,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,Fiddlesticks,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Black Cleaver,Mercury's Treads,NaN,Edge of Night,Maw of Malmortius,Farsight Alteration,LethalTempo,NaN,NaN,,PresenceOfMind,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,UltimateHunter,NaN,,,EyeballCollection,NaN,,,NaN,NaN,NaN,NaN,Nocturne,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Sorcerer's Shoes,NaN,Nashor's Tooth,Dark Seal,Blasting Wand,Oracle Lens,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,CosmicInsight,,,,NaN,NaN,NaN,NaN,Shyvana,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Warmog's Armor,NaN,Spectre's Cowl,Mercury's Treads,Knight's Vow,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,Waterwalking,NaN,,,NaN,NaN,NaN,NaN,Trundle,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Lich Bane,Zhonya's Hourglass,Sorcerer's Shoes,Dark Seal,Fiendish Codex,Oracle Lens,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Control Ward,NaN,Kindlegem,Giant's Belt,Plated Steelcaps,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendTenacity,NaN,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Volibear,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Control Ward,NaN,Warmog's Armor,Spirit Visage,Mercury's Treads,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendTenacity,NaN,,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Volibear,Flash,Smite,NONE,JUNGLE
DRX Pyosik,Plated Steelcaps,Tiamat,NaN,Black Cleaver,Serrated Dirk,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lee Sin,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Umbral Glaive,Boots,NaN,NaN,NaN,Oracle Lens,PhaseRush,NaN,,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,NaN,,Waterwalking,NaN,NaN,,LegendAlacrity,NaN,NaN,,CutDown,NaN,,,NaN,NaN,NaN,NaN,Graves,Flash,Smite,DUO_SUPPORT,NONE
DRX Pyosik,NaN,Lich Bane,Hextech Rocketbelt,Sorcerer's Shoes,NaN,NaN,Oracle Lens,MasterKey,NaN,NaN,NaN,MagicalFootwear,NaN,NaN,NaN,FuturesMarket,,,,CosmicInsight,,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ekko,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Lich Bane,Nashor's Tooth,Sorcerer's Shoes,Void Staff,Needlessly Large Rod,Farsight Alteration,MasterKey,NaN,NaN,NaN,MagicalFootwear,NaN,,,FuturesMarket,NaN,,,CosmicInsight,,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ekko,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,NaN,Phantom Dancer,Executioner's Calling,Black Cleaver,Plated Steelcaps,Oracle Lens,PhaseRush,NaN,,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,,,Waterwalking,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Graves,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Void Staff,Lich Bane,Sorcerer's Shoes,NaN,Control Ward,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
DRX Pyosik,NaN,Refillable Potion,Sorcerer's Shoes,Nashor's Tooth,Oblivion Orb,NaN,Oracle Lens,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,RelentlessHunter,NaN,,MagicalFootwear,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Shyvana,Flash,Smite,NONE,JUNGLE
Why N0T,Eclipse,Berserker's Greaves,The Collector,Infinity Edge,Bloodthirster,Lord Dominik's Regards,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Miss Fortune,Flash,Heal,DUO,MIDDLE
Why N0T,Luden's Tempest,Zhonya's Hourglass,Nashor's Tooth,Needlessly Large Rod,Needlessly Large Rod,Sorcerer's Shoes,Poro-Snax,LethalTempo,NaN,,,PresenceOfMind,NaN,,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Azir,Flash,Barrier,DUO_SUPPORT,NONE
Why N0T,Ravenous Hydra,Goredrinker,Doran's Blade,Boots,Executioner's Calling,Kindlegem,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,CoupDeGrace,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,MIDDLE
Why N0T,Duskblade of Draktharr,Refillable Potion,Plated Steelcaps,Serrated Dirk,NaN,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Transcendence,,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,SOLO,MIDDLE
Why N0T,Sorcerer's Shoes,Zhonya's Hourglass,Luden's Tempest,Tear of the Goddess,Oblivion Orb,Needlessly Large Rod,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Anivia,Flash,Teleport,SOLO,MIDDLE
Why N0T,Kindlegem,Refillable Potion,NaN,Moonstone Renewer,Mobility Boots,Fiendish Codex,Oracle Lens,SummonAery,NaN,NaN,,NimbusCloak,NaN,,,Transcendence,NaN,,,Waterwalking,NaN,NaN,,FuturesMarket,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ivern,Flash,Smite,NONE,JUNGLE
Why N0T,Seraph's Embrace,Zhonya's Hourglass,NaN,Sorcerer's Shoes,Mejai's Soulstealer,Luden's Tempest,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,CutDown,NaN,,,NaN,NaN,NaN,NaN,Anivia,Flash,Ignite,SOLO,MIDDLE
Why N0T,Ravenous Hydra,Ruby Crystal,Divine Sunderer,Plated Steelcaps,Doran's Blade,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,LastStand,NaN,,,SecondWind,NaN,,,Unflinching,NaN,,,NaN,NaN,NaN,NaN,Wukong,Flash,Teleport,SOLO,TOP
Why N0T,Oblivion Orb,Seraph's Embrace,Sorcerer's Shoes,Blighting Jewel,Luden's Tempest,Banshee's Veil,Oracle Lens,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Anivia,Flash,Ignite,SOLO,MIDDLE
Why N0T,Eclipse,Refillable Potion,Edge of Night,Kindlegem,Boots,Long Sword,Oracle Lens,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Transcendence,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,NONE,JUNGLE
Why N0T,Seraph's Embrace,Zhonya's Hourglass,Liandry's Anguish,Banshee's Veil,Demonic Embrace,Sorcerer's Shoes,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Anivia,Flash,Ignite,SOLO,MIDDLE
Why N0T,Doran's Ring,Refillable Potion,Needlessly Large Rod,Tear of the Goddess,Boots,Liandry's Anguish,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Anivia,Flash,Ignite,DUO_SUPPORT,NONE
Why N0T,Seraph's Embrace,Needlessly Large Rod,Plated Steelcaps,Demonic Embrace,Liandry's Anguish,Seeker's Armguard,Farsight Alteration,Electrocute,NaN,,,CheapShot,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Anivia,Flash,Ignite,SOLO,MIDDLE
Land of Glory,Boots,Tear of the Goddess,Corrupting Potion,NaN,Dark Seal,NaN,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,NaN,,LegendTenacity,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kassadin,Flash,Teleport,SOLO,MIDDLE
Land of Glory,NaN,Sorcerer's Shoes,Gargoyle Stoneplate,NaN,Warmog's Armor,Dark Seal,Farsight Alteration,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,CosmicInsight,,,,Waterwalking,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Cho'Gath,Flash,Teleport,SOLO,MIDDLE
Land of Glory,NaN,Ardent Censer,NaN,NaN,Dark Seal,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,ZombieWard,,,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Land of Glory,Broken Stopwatch,NaN,Dark Seal,Lich Bane,Sorcerer's Shoes,Seeker's Armguard,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,ZombieWard,NaN,NaN,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Land of Glory,NaN,Refillable Potion,NaN,Plated Steelcaps,Warden's Mail,Ruby Crystal,Stealth Ward,Aftershock,NaN,,,FontOfLife,NaN,,,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ornn,Flash,Smite,NONE,JUNGLE
Land of Glory,Zeke's Convergence,Knight's Vow,Targon's Buckler,Mobility Boots,Control Ward,NaN,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,Conditioning,NaN,NaN,NaN,Overgrowth,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Leona,Flash,Ignite,DUO_SUPPORT,BOTTOM
Land of Glory,NaN,Rabadon's Deathcap,Dark Seal,Lich Bane,Sorcerer's Shoes,NaN,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,ZombieWard,NaN,NaN,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Land of Glory,Refillable Potion,NaN,Plated Steelcaps,Thornmail,Glacial Buckler,Sheen,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,FuturesMarket,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ornn,Flash,Smite,NONE,JUNGLE
Land of Glory,NaN,Refillable Potion,Mobility Boots,NaN,Giant's Belt,Chain Vest,Oracle Lens,DarkHarvest,NaN,NaN,NaN,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Poppy,Flash,Smite,NONE,JUNGLE
Land of Glory,NaN,Refillable Potion,NaN,Boots,Serrated Dirk,Caulfield's Warhammer,Stealth Ward,DarkHarvest,NaN,NaN,NaN,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Kha'Zix,Flash,Smite,NONE,JUNGLE
Land of Glory,Needlessly Large Rod,NaN,Lich Bane,Ionian Boots of Lucidity,Needlessly Large Rod,Dark Seal,Farsight Alteration,DarkHarvest,NaN,NaN,NaN,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Waterwalking,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Nidalee,Flash,Smite,NONE,JUNGLE
Land of Glory,Doran's Blade,Tear of the Goddess,Ionian Boots of Lucidity,Long Sword,Long Sword,Pickaxe,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO,BOTTOM
Land of Glory,Seraph's Embrace,Refillable Potion,NaN,Sorcerer's Shoes,Dark Seal,Oblivion Orb,Farsight Alteration,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ryze,Flash,Teleport,SOLO,MIDDLE
Land of Glory,NaN,Doran's Ring,Warmog's Armor,Boots,Chain Vest,Null-Magic Mantle,Farsight Alteration,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,,,NaN,NaN,NaN,NaN,Cho'Gath,Flash,Teleport,SOLO,TOP
Land of Glory,NaN,Doran's Shield,Plated Steelcaps,Chain Vest,NaN,NaN,Oracle Lens,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,MagicalFootwear,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ornn,Flash,Teleport,SOLO,TOP
Nalow,Lich Bane,Zhonya's Hourglass,Hextech Rocketbelt,Sorcerer's Shoes,NaN,Rylai's Crystal Scepter,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Shaco,Flash,Ignite,DUO_CARRY,TOP
Nalow,Long Sword,Phantom Dancer,Mercurial Scimitar,Bloodthirster,Infinity Edge,Mercury's Treads,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Yone,Flash,Ignite,NONE,JUNGLE
Nalow,NaN,Black Cleaver,Ravenous Hydra,Mercury's Treads,Bloodthirster,Sterak's Gage,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Lee Sin,Flash,Ignite,DUO,TOP
Nalow,NaN,Youmuu's Ghostblade,Refillable Potion,Plated Steelcaps,Serrated Dirk,Ruby Crystal,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Zed,Flash,Ignite,DUO_SUPPORT,NONE
Nalow,NaN,NaN,Rabadon's Deathcap,Sorcerer's Shoes,Void Staff,Rylai's Crystal Scepter,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Vel'Koz,Flash,Ghost,DUO_SUPPORT,TOP
Nalow,Lich Bane,Blasting Wand,Broken Stopwatch,Lost Chapter,Boots,NaN,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Heal,DUO_SUPPORT,NONE
Nalow,NaN,Zhonya's Hourglass,Sorcerer's Shoes,Void Staff,Rabadon's Deathcap,NaN,Stealth Ward,ArcaneComet,NaN,,,NullifyingOrb,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Lux,Flash,Ghost,DUO_SUPPORT,NONE
Nalow,NaN,Phantom Dancer,Berserker's Greaves,Infinity Edge,Bloodthirster,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Yone,Flash,Teleport,SOLO,TOP
Nalow,Lich Bane,Zhonya's Hourglass,Sorcerer's Shoes,Doran's Ring,NaN,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Sylas,Flash,Teleport,SOLO,TOP
Nalow,Broken Stopwatch,Zeke's Convergence,Pauldrons of Whiterock,Mobility Boots,Glacial Buckler,Sapphire Crystal,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Blitzcrank,Flash,Exhaust,DUO_SUPPORT,BOTTOM
Nalow,NaN,Targon's Buckler,Perfectly Timed Stopwatch,NaN,Boots,Needlessly Large Rod,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Lux,Flash,Exhaust,DUO_SUPPORT,BOTTOM
Nalow,Infinity Edge,Berserker's Greaves,Rapid Firecannon,Bloodthirster,NaN,NaN,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Caitlyn,Flash,Mark,DUO,MIDDLE
Nalow,NaN,Zhonya's Hourglass,Rabadon's Deathcap,Sorcerer's Shoes,Rylai's Crystal Scepter,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Zyra,Flash,Mark,DUO_SUPPORT,TOP
Nalow,NaN,Zhonya's Hourglass,Rylai's Crystal Scepter,Sorcerer's Shoes,NaN,NaN,Scarecrow Effigy,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Fiddlesticks,Flash,Mark,DUO_SUPPORT,NONE
Nalow,NaN,Lich Bane,Rabadon's Deathcap,Sorcerer's Shoes,NaN,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,PerfectTiming,,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Janna,Flash,Mark,DUO_SUPPORT,MIDDLE
7 5,Doran's Shield,Frostfire Gauntlet,Mercury's Treads,Tiamat,Giant's Belt,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Shen,Teleport,Flash,SOLO,TOP
7 5,Refillable Potion,Guardian Angel,Goredrinker,Black Cleaver,Executioner's Calling,Plated Steelcaps,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,CheapShot,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jarvan IV,Smite,Flash,NONE,JUNGLE
7 5,Bramble Vest,Goredrinker,Giant's Belt,Plated Steelcaps,Tiamat,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Trundle,Smite,Flash,NONE,JUNGLE
7 5,Zeke's Convergence,Bulwark of the Mountain,Locket of the Iron Solari,Kindlegem,Plated Steelcaps,Warden's Mail,Oracle Lens,Guardian,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,NaN,NaN,NaN,NaN,Taric,Ignite,Flash,DUO_SUPPORT,BOTTOM
7 5,Knight's Vow,Pauldrons of Whiterock,Goredrinker,Plated Steelcaps,Tiamat,Death's Dance,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Renekton,Ignite,Flash,DUO_SUPPORT,BOTTOM
7 5,Doran's Blade,Vampiric Scepter,Cloak of Agility,Noonquiver,Boots,Dagger,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO,NONE
7 5,Doran's Blade,Bloodthirster,Kraken Slayer,Berserker's Greaves,Infinity Edge,Zeal,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Yasuo,Ignite,Flash,DUO,NONE
7 5,Chempunk Chainsword,Berserker's Greaves,Galeforce,Ruby Crystal,Guinsoo's Rageblade,Blade of The Ruined King,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,RavenousHunter,NaN,NaN,,SuddenImpact,NaN,,,NaN,NaN,NaN,NaN,Master Yi,Cleanse,Flash,DUO,NONE
7 5,Doran's Blade,Vampiric Scepter,Kraken Slayer,Berserker's Greaves,Navori Quickblades,Essence Reaver,Oracle Lens,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO_SUPPORT,NONE
7 5,Essence Reaver,Kraken Slayer,Refillable Potion,Berserker's Greaves,Serrated Dirk,Caulfield's Warhammer,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Smite,Flash,DUO_SUPPORT,NONE
7 5,Doran's Blade,Kraken Slayer,Berserker's Greaves,NaN,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO,NONE
7 5,Plated Steelcaps,Black Cleaver,Goredrinker,Death's Dance,Executioner's Calling,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Lee Sin,Smite,Flash,DUO_SUPPORT,NONE
7 5,Plated Steelcaps,Ravenous Hydra,Goredrinker,Death's Dance,Negatron Cloak,Giant's Belt,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,NimbusCloak,NaN,,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Lee Sin,Smite,Flash,DUO_SUPPORT,NONE
7 5,Doran's Blade,Kraken Slayer,Berserker's Greaves,Infinity Edge,Vampiric Scepter,B. F. Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yone,Ignite,Flash,DUO,NONE
7 5,Death's Dance,Tiamat,Goredrinker,Mercury's Treads,Hexdrinker,Executioner's Calling,Poro-Snax,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jax,Clarity,Flash,DUO,TOP
T1 Kuri,Morellonomicon,Rabadon's Deathcap,Zhonya's Hourglass,Sorcerer's Shoes,Riftmaker,Lich Bane,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Akali,Flash,Cleanse,SOLO,MIDDLE
T1 Kuri,Bulwark of the Mountain,Sunfire Aegis,Control Ward,Mercury's Treads,Force of Nature,Winged Moonplate,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Malphite,Flash,Exhaust,DUO_SUPPORT,BOTTOM
T1 Kuri,Dark Seal,Oblivion Orb,Zhonya's Hourglass,Riftmaker,Lich Bane,Sorcerer's Shoes,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Akali,Flash,Ignite,DUO,MIDDLE
T1 Kuri,Blighting Jewel,Liandry's Anguish,Zhonya's Hourglass,Sorcerer's Shoes,Dark Seal,Cosmic Drive,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Sylas,Flash,Ignite,SOLO,MIDDLE
T1 Kuri,Bulwark of the Mountain,Sunfire Aegis,Plated Steelcaps,Dead Man's Plate,NaN,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Malphite,Flash,Exhaust,DUO_SUPPORT,BOTTOM
T1 Kuri,Dark Seal,Refillable Potion,Riftmaker,Sorcerer's Shoes,Control Ward,NaN,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,,,,CoupDeGrace,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Akali,Flash,Ignite,SOLO,MIDDLE
T1 Kuri,Hextech Rocketbelt,Corrupting Potion,Sunfire Aegis,Boots,Cloth Armor,NaN,Stealth Ward,Aftershock,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,Nautilus,Flash,Teleport,SOLO,MIDDLE
T1 Kuri,Blade of The Ruined King,Zeal,Berserker's Greaves,Dagger,Refillable Potion,Doran's Blade,Stealth Ward,LethalTempo,NaN,NaN,,Overheal,NaN,NaN,,LegendAlacrity,NaN,,,CutDown,NaN,,,NimbusCloak,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ashe,Flash,Heal,DUO_CARRY,BOTTOM
T1 Kuri,Manamune,Doran's Blade,Ionian Boots of Lucidity,Trinity Force,NaN,NaN,Stealth Ward,Conqueror,NaN,,,PresenceOfMind,NaN,NaN,,LegendBloodline,,,,LastStand,NaN,,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Flash,Teleport,SOLO,MIDDLE
T1 Kuri,Gargoyle Stoneplate,NaN,Boots of Swiftness,Pauldrons of Whiterock,Negatron Cloak,NaN,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,PerfectTiming,,,,MinionDematerializer,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Flash,Ignite,DUO_SUPPORT,BOTTOM
T1 Kuri,Gargoyle Stoneplate,Boots of Swiftness,Pauldrons of Whiterock,Abyssal Mask,Glacial Buckler,Crystalline Bracer,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,PerfectTiming,,,,MinionDematerializer,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Flash,Teleport,DUO_SUPPORT,BOTTOM
T1 Kuri,Hextech Rocketbelt,Doran's Ring,Mercury's Treads,NaN,Void Staff,NaN,Stealth Ward,Aftershock,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,Transcendence,,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Galio,Flash,Teleport,SOLO,MIDDLE
T1 Kuri,Hextech Rocketbelt,NaN,Zhonya's Hourglass,Void Staff,Mercury's Treads,NaN,Stealth Ward,Aftershock,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,Transcendence,NaN,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Galio,Flash,Teleport,SOLO,MIDDLE
T1 Kuri,Doran's Ring,NaN,NaN,NaN,NaN,NaN,Stealth Ward,Aftershock,,,,ShieldBash,NaN,,,BonePlating,NaN,,,Unflinching,,,,Transcendence,,,,NimbusCloak,,,,NaN,NaN,NaN,NaN,Galio,Flash,Teleport,DUO,NONE
T1 Kuri,Hextech Rocketbelt,NaN,Broken Stopwatch,Void Staff,Seeker's Armguard,Plated Steelcaps,Stealth Ward,Aftershock,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,Transcendence,,,,NimbusCloak,NaN,,,NaN,NaN,NaN,NaN,Galio,Flash,Teleport,DUO,MIDDLE
1145,NaN,Randuin's Omen,Black Cleaver,Tiamat,Plated Steelcaps,Thornmail,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,CheapShot,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Olaf,Flash,Smite,NONE,JUNGLE
1145,NaN,Plated Steelcaps,Black Cleaver,Refillable Potion,Glacial Buckler,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,Waterwalking,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Olaf,Flash,Smite,NONE,JUNGLE
1145,NaN,Boots,Tiamat,Trinity Force,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Flash,Smite,NONE,JUNGLE
1145,NaN,Boots,Tiamat,Phage,Dagger,Sheen,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Flash,Smite,NONE,JUNGLE
DRX BigShot,Zhonya's Hourglass,NaN,Sorcerer's Shoes,Rylai's Crystal Scepter,NaN,Morellonomicon,Stealth Ward,Electrocute,NaN,,,CheapShot,NaN,,,ZombieWard,,,,RavenousHunter,NaN,NaN,,Celerity,NaN,,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Elise,Smite,Flash,NONE,JUNGLE
DRX BigShot,NaN,Refillable Potion,NaN,NaN,NaN,NaN,Stealth Ward,Electrocute,,,,CheapShot,,,,ZombieWard,,,,RavenousHunter,NaN,,,Celerity,NaN,,,Waterwalking,,NaN,,NaN,NaN,NaN,NaN,Elise,Smite,Flash,DUO,NONE
DRX BigShot,NaN,Plated Steelcaps,Serrated Dirk,NaN,NaN,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,DUO_SUPPORT,NONE
DRX BigShot,Infinity Edge,Doran's Shield,Berserker's Greaves,Essence Reaver,Rapid Firecannon,Zeal,Stealth Ward,LethalTempo,NaN,NaN,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Xayah,Heal,Flash,DUO_CARRY,BOTTOM
DRX BigShot,Refillable Potion,Shard of True Ice,Sorcerer's Shoes,Doran's Ring,Blasting Wand,Lost Chapter,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Brand,Teleport,Flash,DUO_SUPPORT,BOTTOM
DRX BigShot,Corrupting Potion,Trinity Force,Plated Steelcaps,Sterak's Gage,NaN,Guardian Angel,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Illaoi,Teleport,Flash,SOLO,TOP
DRX BigShot,Corrupting Potion,Dark Seal,Plated Steelcaps,Rylai's Crystal Scepter,NaN,Oblivion Orb,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Singed,Ignite,Ghost,NONE,JUNGLE
DRX BigShot,Corrupting Potion,Dark Seal,Plated Steelcaps,Rylai's Crystal Scepter,NaN,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Singed,Ignite,Ghost,DUO_SUPPORT,NONE
DRX BigShot,Hextech Rocketbelt,Corrupting Potion,Sorcerer's Shoes,NaN,Lich Bane,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Sylas,Ignite,Flash,SOLO,MIDDLE
DRX BigShot,NaN,Berserker's Greaves,Guinsoo's Rageblade,Nashor's Tooth,Rylai's Crystal Scepter,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Teemo,Smite,Flash,NONE,JUNGLE
DRX BigShot,Blade of The Ruined King,Stopwatch,Mobility Boots,Infinity Edge,NaN,Runaan's Hurricane,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Twitch,Smite,Flash,NONE,JUNGLE
DRX BigShot,Doran's Blade,Manamune,Refillable Potion,Ionian Boots of Lucidity,NaN,Phage,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Teleport,Flash,DUO_SUPPORT,NONE
DRX BigShot,Refillable Potion,NaN,Sorcerer's Shoes,NaN,NaN,Doran's Ring,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Brand,Teleport,Flash,SOLO,MIDDLE
DRX BigShot,Hextech Rocketbelt,Corrupting Potion,Doran's Ring,Sorcerer's Shoes,Lich Bane,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ekko,Exhaust,Flash,SOLO,TOP
DRX BigShot,Hextech Rocketbelt,Corrupting Potion,Stopwatch,Lich Bane,Seeker's Armguard,Sorcerer's Shoes,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Ekko,Heal,Ghost,SOLO,MIDDLE
Mizuhara Chizuru,Mejai's Soulstealer,Zhonya's Hourglass,Demonic Embrace,Liandry's Anguish,Seraph's Embrace,Banshee's Veil,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Anivia,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Broken Stopwatch,Corrupting Potion,Liandry's Anguish,Sorcerer's Shoes,NaN,Doran's Ring,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,PerfectTiming,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Heimerdinger,Teleport,Flash,SOLO,TOP
Mizuhara Chizuru,Liandry's Anguish,Seraph's Embrace,Demonic Embrace,Mercury's Treads,Blasting Wand,Amplifying Tome,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,ManaflowBand,NaN,NaN,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Anivia,Mark,Flash,DUO,NONE
Mizuhara Chizuru,Demonic Embrace,Mejai's Soulstealer,Shard of True Ice,Sorcerer's Shoes,Liandry's Anguish,NaN,Oracle Lens,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Brand,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Executioner's Calling,Navori Quickblades,Black Mist Scythe,Boots of Swiftness,Divine Sunderer,Cloak of Agility,Oracle Lens,GlacialAugment,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,ApproachVelocity,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Senna,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Kindlegem,Zhonya's Hourglass,Bulwark of the Mountain,Ionian Boots of Lucidity,Oblivion Orb,Luden's Tempest,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Lux,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Navori Quickblades,Executioner's Calling,Black Mist Scythe,Boots of Swiftness,Divine Sunderer,Long Sword,Oracle Lens,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,ApproachVelocity,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Senna,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Lost Chapter,Blasting Wand,Shard of True Ice,Sorcerer's Shoes,Dark Seal,Oblivion Orb,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Lux,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,NaN,Sheen,Black Mist Scythe,Boots of Swiftness,Executioner's Calling,Phage,Oracle Lens,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,ApproachVelocity,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Senna,Ignite,Flash,DUO_SUPPORT,NONE
Mizuhara Chizuru,Dark Seal,Zhonya's Hourglass,Shard of True Ice,Ionian Boots of Lucidity,Lost Chapter,Blasting Wand,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Lux,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Fiendish Codex,Dark Seal,Shard of True Ice,Ionian Boots of Lucidity,Oblivion Orb,Liandry's Anguish,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Lux,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Blasting Wand,Zhonya's Hourglass,Shard of True Ice,Sorcerer's Shoes,Mejai's Soulstealer,Lost Chapter,Oracle Lens,Guardian,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Lux,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Executioner's Calling,Divine Sunderer,Black Mist Scythe,Boots of Swiftness,Caulfield's Warhammer,NaN,Oracle Lens,GlacialAugment,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,ApproachVelocity,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Senna,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mizuhara Chizuru,Rapid Firecannon,Galeforce,Bloodthirster,Boots of Swiftness,NaN,NaN,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Jhin,Mark,Flash,DUO_SUPPORT,NONE
SPG Jaguar,NaN,Rabadon's Deathcap,Sorcerer's Shoes,Dark Seal,Hextech Alternator,Oblivion Orb,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,NaN,NaN,Plated Steelcaps,Black Cleaver,Sterak's Gage,Executioner's Calling,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kayn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,Zhonya's Hourglass,Rabadon's Deathcap,Sorcerer's Shoes,Void Staff,NaN,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,NaN,NaN,Refillable Potion,Mejai's Soulstealer,Sorcerer's Shoes,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,DUO_SUPPORT,NONE
SPG Jaguar,Guardian Angel,Infinity Edge,Boots of Swiftness,Rapid Firecannon,Stormrazor,Vampiric Scepter,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,NaN,Tiamat,NaN,Muramana,Ionian Boots of Lucidity,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Kayn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,Zhonya's Hourglass,NaN,Morellonomicon,Dark Seal,Sorcerer's Shoes,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,ApproachVelocity,NaN,,,MagicalFootwear,NaN,NaN,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,NaN,Refillable Potion,Infinity Edge,Boots of Swiftness,Stormrazor,NaN,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendBloodline,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,Doran's Blade,Cloak of Agility,Stormrazor,Boots of Swiftness,Infinity Edge,Rapid Firecannon,Stealth Ward,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,Doran's Blade,Refillable Potion,Berserker's Greaves,Essence Reaver,Infinity Edge,Cloak of Agility,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,Phantom Dancer,Stormrazor,Boots of Swiftness,Muramana,Infinity Edge,Rapid Firecannon,Stealth Ward,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,Doran's Blade,Nashor's Tooth,Guinsoo's Rageblade,Muramana,Berserker's Greaves,NaN,Stealth Ward,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Heal,Flash,DUO_CARRY,BOTTOM
SPG Jaguar,Zeke's Convergence,Null-Magic Mantle,NaN,Mobility Boots,Ardent Censer,Hailblade,Stealth Ward,SummonAery,NaN,NaN,,NimbusCloak,NaN,,,Transcendence,NaN,,,Waterwalking,NaN,NaN,,FuturesMarket,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Ivern,Smite,Flash,NONE,JUNGLE
SPG Jaguar,NaN,NaN,Plated Steelcaps,Black Cleaver,Muramana,Spirit Visage,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Kayn,Smite,Flash,NONE,JUNGLE
SPG Jaguar,NaN,NaN,Refillable Potion,Dark Seal,Sorcerer's Shoes,NaN,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,GhostPoro,NaN,NaN,NaN,RelentlessHunter,NaN,NaN,,MagicalFootwear,NaN,NaN,NaN,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Evelynn,Smite,Flash,NONE,JUNGLE
Sei2e the day,NaN,Mercury's Treads,Lich Bane,Amplifying Tome,NaN,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Nautilus,Mark,Flash,DUO_SUPPORT,NONE
Sei2e the day,Fiendish Codex,NaN,Sorcerer's Shoes,NaN,NaN,NaN,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,,,,CoupDeGrace,NaN,,,SuddenImpact,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Katarina,Ignite,Flash,SOLO,MIDDLE
Sei2e the day,Sorcerer's Shoes,Hextech Rocketbelt,Corrupting Potion,Lich Bane,Void Staff,Amplifying Tome,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ekko,Ignite,Flash,SOLO,MIDDLE
Sei2e the day,Corrupting Potion,Hextech Rocketbelt,Sorcerer's Shoes,Lich Bane,Oblivion Orb,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Ekko,Ignite,Flash,SOLO,MIDDLE
Sei2e the day,NaN,Spirit Visage,Boots,NaN,NaN,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Vladimir,Mark,Flash,DUO_SUPPORT,NONE
MapleStory275LV,Doran's Ring,Morellonomicon,NaN,Sorcerer's Shoes,NaN,Rylai's Crystal Scepter,Stealth Ward,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Brand,Ignite,Flash,SOLO,MIDDLE
MapleStory275LV,Rabadon's Deathcap,NaN,Ionian Boots of Lucidity,NaN,Rylai's Crystal Scepter,Blasting Wand,Stealth Ward,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Malzahar,Ignite,Flash,DUO_CARRY,MIDDLE
MapleStory275LV,Morellonomicon,NaN,Rylai's Crystal Scepter,NaN,Ionian Boots of Lucidity,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Malzahar,Ignite,Flash,SOLO,MIDDLE
MapleStory275LV,NaN,NaN,Rabadon's Deathcap,Ionian Boots of Lucidity,Oblivion Orb,Void Staff,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Vel'Koz,Teleport,Flash,SOLO,TOP
MapleStory275LV,Zhonya's Hourglass,NaN,Doran's Ring,Plated Steelcaps,NaN,Amplifying Tome,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Malzahar,Exhaust,Flash,SOLO,MIDDLE
MapleStory275LV,NaN,Ionian Boots of Lucidity,Doran's Ring,Rabadon's Deathcap,Aether Wisp,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Vel'Koz,Heal,Flash,SOLO,MIDDLE
MapleStory275LV,NaN,Doran's Ring,Ionian Boots of Lucidity,Rabadon's Deathcap,Needlessly Large Rod,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Vel'Koz,Heal,Flash,SOLO,MIDDLE
MapleStory275LV,Doran's Shield,Trinity Force,Plated Steelcaps,Frozen Heart,Spectre's Cowl,Null-Magic Mantle,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Nasus,Teleport,Flash,SOLO,TOP
MapleStory275LV,Zhonya's Hourglass,Void Staff,Oblivion Orb,Rabadon's Deathcap,NaN,Sorcerer's Shoes,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Malphite,Ignite,Flash,SOLO,TOP
MapleStory275LV,NaN,Sorcerer's Shoes,Needlessly Large Rod,Banshee's Veil,Rabadon's Deathcap,Amplifying Tome,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Ahri,Cleanse,Flash,SOLO,MIDDLE
MapleStory275LV,Youmuu's Ghostblade,Edge of Night,Maw of Malmortius,Boots of Swiftness,NaN,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NimbusCloak,NaN,,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Talon,Ignite,Flash,SOLO,MIDDLE
MapleStory275LV,Hextech Rocketbelt,Mercury's Treads,Abyssal Mask,NaN,Doran's Ring,Cloth Armor,Stealth Ward,Predator,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Galio,Ignite,Flash,DUO_CARRY,MIDDLE
MapleStory275LV,Seraph's Embrace,Sorcerer's Shoes,NaN,NaN,Needlessly Large Rod,Needlessly Large Rod,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,NaN,NaN,NaN,NaN,Anivia,Clarity,Flash,DUO,TOP
MapleStory275LV,Doran's Shield,Sunfire Aegis,Boots,Bramble Vest,Ruby Crystal,Cloth Armor,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Tahm Kench,Ignite,Flash,DUO,NONE
MapleStory275LV,Sterak's Gage,Trinity Force,Mercury's Treads,Frozen Heart,NaN,NaN,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Nasus,Teleport,Flash,SOLO,TOP
Zenit,Mobility Boots,Sunfire Aegis,Demonic Embrace,Shard of True Ice,Thornmail,Oblivion Orb,Oracle Lens,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Mobility Boots,Refillable Potion,Sunfire Aegis,Shard of True Ice,Amplifying Tome,Blasting Wand,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Mobility Boots,Sunfire Aegis,Demonic Embrace,Shard of True Ice,NaN,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Mobility Boots,Sunfire Aegis,Demonic Embrace,Shard of True Ice,Cloth Armor,Cloth Armor,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Slightly Magical Footwear,Luden's Tempest,NaN,Shard of True Ice,NaN,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Xerath,Flash,Ignite,DUO_SUPPORT,NONE
Zenit,Sorcerer's Shoes,Imperial Mandate,Demonic Embrace,Shard of True Ice,Oblivion Orb,Ruby Crystal,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,CheapShot,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Sorcerer's Shoes,Imperial Mandate,Thornmail,Shard of True Ice,Morellonomicon,Negatron Cloak,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Sorcerer's Shoes,Abyssal Mask,Imperial Mandate,Shard of True Ice,Morellonomicon,Bramble Vest,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Sorcerer's Shoes,Thornmail,Null-Magic Mantle,Shard of True Ice,Imperial Mandate,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Imperial Mandate,Refillable Potion,NaN,Frostfang,NaN,Slightly Magical Footwear,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,NONE
Zenit,Sorcerer's Shoes,Imperial Mandate,Giant's Belt,Shard of True Ice,Morellonomicon,Bramble Vest,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Sorcerer's Shoes,Imperial Mandate,Refillable Potion,Shard of True Ice,NaN,NaN,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,NONE
Zenit,Spellthief's Edge,Health Potion,NaN,NaN,NaN,NaN,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,,,Transcendence,,,,Scorch,NaN,,,MagicalFootwear,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO,NONE
Zenit,Sorcerer's Shoes,Morellonomicon,Imperial Mandate,Shard of True Ice,NaN,Control Ward,Oracle Lens,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
Zenit,Sorcerer's Shoes,Imperial Mandate,Morellonomicon,Shard of True Ice,Abyssal Mask,Glacial Buckler,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Maokai,Flash,Ignite,DUO_SUPPORT,BOTTOM
DWG Canyon,NaN,Hextech Rocketbelt,Zhonya's Hourglass,Dark Seal,Sorcerer's Shoes,NaN,Oracle Lens,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,CosmicInsight,,,,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Sylas,Smite,Flash,NONE,JUNGLE
DWG Canyon,Hailblade,Refillable Potion,NaN,NaN,NaN,NaN,Stealth Ward,Conqueror,,,,Triumph,,,,LegendAlacrity,,,,CoupDeGrace,,,,CosmicInsight,,,,FuturesMarket,,,,NaN,NaN,NaN,NaN,Sylas,Smite,Flash,DUO,NONE
DWG Canyon,NaN,Hextech Rocketbelt,Zhonya's Hourglass,Sorcerer's Shoes,NaN,NaN,Oracle Lens,Conqueror,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,CosmicInsight,,,,FuturesMarket,NaN,,,NaN,NaN,NaN,NaN,Sylas,Smite,Flash,NONE,JUNGLE
Gen G Kellin,Corrupting Potion,Sunfire Aegis,NaN,NaN,NaN,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Ornn,Exhaust,Heal,DUO,NONE
Gen G Kellin,Corrupting Potion,Trinity Force,Ionian Boots of Lucidity,Sterak's Gage,Caulfield's Warhammer,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Gangplank,Ghost,Heal,NONE,JUNGLE
Gen G Kellin,Titanic Hydra,Black Cleaver,Mercury's Treads,NaN,NaN,NaN,Stealth Ward,NaN,Darius,Ghost,Heal,DUO,NONE
Gen G Kellin,Titanic Hydra,Mercury's Treads,Phage,NaN,NaN,NaN,Stealth Ward,NaN,Darius,Ghost,Heal,DUO,NONE
Gen G Kellin,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
Afreeca Spirit,Forbidden Idol,Kindlegem,Knight's Vow,Turbo Chemtank,Plated Steelcaps,Zeke's Convergence,Poro-Snax,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,PerfectTiming,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Alistar,Flash,Mark,SOLO,MIDDLE
Afreeca Spirit,Ravenous Hydra,Refillable Potion,Trinity Force,Vampiric Scepter,Plated Steelcaps,Dagger,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Irelia,Flash,Clarity,DUO_SUPPORT,NONE
Afreeca Spirit,Lost Chapter,Refillable Potion,Morellonomicon,Boots,Blasting Wand,NaN,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Gragas,Flash,Clarity,DUO,NONE
Afreeca Spirit,Infinity Edge,Refillable Potion,Stormrazor,Berserker's Greaves,Noonquiver,NaN,Poro-Snax,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Caitlyn,Flash,Clarity,DUO_SUPPORT,NONE
Afreeca Spirit,Shurelya's Battlesong,Winged Moonplate,Negatron Cloak,Zeke's Convergence,Boots of Swiftness,Knight's Vow,NaN,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,PerfectTiming,,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Thresh,Flash,Exhaust,DUO_SUPPORT,MIDDLE
Afreeca Spirit,Rejuvenation Bead,Targon's Buckler,Control Ward,Shurelya's Battlesong,Boots of Swiftness,NaN,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,HextechFlashtraption,,,,NaN,NaN,NaN,NaN,Alistar,Flash,Exhaust,DUO_SUPPORT,NONE
Afreeca Spirit,Bami's Cinder,Bulwark of the Mountain,Control Ward,Zeke's Convergence,Boots of Swiftness,Knight's Vow,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,HextechFlashtraption,NaN,,,NaN,NaN,NaN,NaN,Leona,Flash,Exhaust,DUO_SUPPORT,BOTTOM
Afreeca Spirit,Shurelya's Battlesong,Bulwark of the Mountain,Control Ward,Mikael's Blessing,Boots of Swiftness,NaN,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,HextechFlashtraption,,,,NaN,NaN,NaN,NaN,Bard,Flash,Exhaust,DUO_SUPPORT,BOTTOM
Afreeca Spirit,Zhonya's Hourglass,Giant's Belt,Amplifying Tome,Luden's Tempest,Plated Steelcaps,Morellonomicon,NaN,Aftershock,NaN,,,Demolish,,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,,,,HextechFlashtraption,NaN,,,NaN,NaN,NaN,NaN,Neeko,Flash,Mark,SOLO,BOTTOM
Afreeca Spirit,Kindlegem,Winged Moonplate,Faerie Charm,Knight's Vow,Boots of Swiftness,Zeke's Convergence,Poro-Snax,Aftershock,NaN,,,Demolish,,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,HextechFlashtraption,NaN,,,NaN,NaN,NaN,NaN,Alistar,Flash,Mark,DUO_SUPPORT,NONE
Afreeca Spirit,Imperial Mandate,Shard of True Ice,NaN,Mikael's Blessing,Boots of Swiftness,Kindlegem,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Yuumi,Ignite,Exhaust,DUO_SUPPORT,BOTTOM
Afreeca Spirit,Stormrazor,Berserker's Greaves,Infinity Edge,Phantom Dancer,Pickaxe,Zeal,NaN,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Tristana,Flash,Mark,SOLO,MIDDLE
Afreeca Spirit,Amplifying Tome,Boots of Swiftness,Lich Bane,Rylai's Crystal Scepter,Void Staff,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Viktor,Flash,Mark,DUO_CARRY,BOTTOM
Afreeca Spirit,Redemption,Mikael's Blessing,Zeke's Convergence,Knight's Vow,Boots,Cloth Armor,Poro-Snax,Guardian,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,PerfectTiming,,,,MinionDematerializer,NaN,,,NaN,NaN,NaN,NaN,Rakan,Flash,Mark,DUO_SUPPORT,NONE
Afreeca Spirit,Mobility Boots,Bulwark of the Mountain,Control Ward,Knight's Vow,Zeke's Convergence,NaN,Oracle Lens,Guardian,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,RelentlessHunter,NaN,NaN,,ZombieWard,NaN,NaN,,NaN,NaN,NaN,NaN,Bard,Flash,Exhaust,DUO_SUPPORT,BOTTOM
Mr Humble,Executioner's Calling,Kraken Slayer,Berserker's Greaves,Runaan's Hurricane,Infinity Edge,Bloodthirster,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Heal,Flash,DUO_CARRY,BOTTOM
Mr Humble,Refillable Potion,Youmuu's Ghostblade,Duskblade of Draktharr,Mercury's Treads,Long Sword,Long Sword,Stealth Ward,DarkHarvest,NaN,NaN,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,Waterwalking,NaN,NaN,,NaN,NaN,NaN,NaN,Kha'Zix,Smite,Flash,NONE,JUNGLE
Mr Humble,Eclipse,Refillable Potion,Mercury's Treads,Maw of Malmortius,Ruby Crystal,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,NullifyingOrb,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,Lee Sin,Smite,Flash,NONE,JUNGLE
Mr Humble,Muramana,Ionian Boots of Lucidity,Divine Sunderer,Blade of The Ruined King,Caulfield's Warhammer,Long Sword,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,NullifyingOrb,NaN,,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Heal,Flash,DUO_CARRY,BOTTOM
Mr Humble,Doran's Blade,Kraken Slayer,Berserker's Greaves,Dagger,Dagger,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Kai'Sa,Heal,Flash,DUO_SUPPORT,NONE
Mr Humble,Duskblade of Draktharr,Black Mist Scythe,Umbral Glaive,The Collector,Cloak of Agility,Boots of Swiftness,Oracle Lens,DarkHarvest,NaN,NaN,,CheapShot,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Senna,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Mr Humble,Luden's Tempest,Refillable Potion,Sorcerer's Shoes,Seeker's Armguard,Amplifying Tome,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,GatheringStorm,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Sylas,Ignite,Flash,SOLO,MIDDLE
Mr Humble,Locket of the Iron Solari,Bulwark of the Mountain,Zeke's Convergence,Knight's Vow,Mobility Boots,NaN,Oracle Lens,Guardian,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Thresh,Ignite,Flash,DUO_SUPPORT,BOTTOM
Mr Humble,Pauldrons of Whiterock,Ruby Crystal,Sunfire Aegis,Boots of Swiftness,Negatron Cloak,Winged Moonplate,Oracle Lens,Aftershock,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,Revitalize,NaN,NaN,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Sett,Ignite,Flash,DUO_SUPPORT,TOP
Mr Humble,Sunfire Aegis,Demonic Embrace,Tear of the Goddess,Sorcerer's Shoes,Needlessly Large Rod,Sapphire Crystal,Stealth Ward,Conqueror,NaN,,,Overheal,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,NaN,NaN,NaN,NaN,Kassadin,Teleport,Flash,SOLO,TOP
Mr Humble,Morellonomicon,Zhonya's Hourglass,Sorcerer's Shoes,Night Harvester,Blasting Wand,Blighting Jewel,Oracle Lens,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,GatheringStorm,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Diana,Smite,Flash,NONE,JUNGLE
Mr Humble,Eclipse,Refillable Potion,NaN,NaN,Boots,NaN,Stealth Ward,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,UltimateHunter,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Lee Sin,Smite,Flash,DUO_SUPPORT,NONE
Mr Humble,Lich Bane,Zhonya's Hourglass,Luden's Tempest,Seraph's Embrace,Sorcerer's Shoes,Needlessly Large Rod,Oracle Lens,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Kassadin,Ignite,Flash,SOLO,MIDDLE
Mr Humble,Moonstone Renewer,Shard of True Ice,Ardent Censer,Zeke's Convergence,Amplifying Tome,Faerie Charm,Oracle Lens,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,Revitalize,NaN,NaN,,FontOfLife,NaN,,,NaN,NaN,NaN,NaN,Yuumi,Ignite,Exhaust,DUO_SUPPORT,BOTTOM
Gen G HaYoon,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
hhjy,Health Potion,Doran's Blade,Berserker's Greaves,Caulfield's Warhammer,Dagger,B. F. Sword,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,DUO_SUPPORT,BOTTOM
hhjy,Berserker's Greaves,Health Potion,NaN,Caulfield's Warhammer,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,DUO_SUPPORT,NONE
hhjy,Bloodthirster,Bloodthirster,Infinity Edge,NaN,NaN,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,SOLO,BOTTOM
hhjy,Health Potion,NaN,Sorcerer's Shoes,Sapphire Crystal,Doran's Ring,Doran's Ring,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,GatheringStorm,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Morgana,Ghost,Heal,DUO_SUPPORT,MIDDLE
Aorlf,Ravenous Hydra,Berserker's Greaves,Dagger,Dagger,Dagger,Dagger,Stealth Ward,NaN,Master Yi,Ghost,Heal,DUO,NONE
Aorlf,NaN,NaN,NaN,NaN,NaN,NaN,Stealth Ward,NaN,Master Yi,Ghost,Heal,DUO,NONE
Aorlf,NaN,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Miss Fortune,Ghost,Heal,NONE,NONE
T1 Canna,Control Ward,Nashor's Tooth,Riftmaker,Doran's Ring,Boots,Dagger,Farsight Alteration,PressTheAttack,NaN,NaN,NaN,Overheal,NaN,NaN,,LegendAlacrity,,,,CoupDeGrace,NaN,,,BonePlating,NaN,,,Demolish,NaN,,,NaN,NaN,NaN,NaN,Kayle,Teleport,Flash,DUO_SUPPORT,NONE
T1 Canna,Corrupting Potion,Thornmail,Dark Seal,Sunfire Aegis,Plated Steelcaps,Ruby Crystal,Stealth Ward,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Malphite,Teleport,Flash,SOLO,TOP
T1 Canna,Corrupting Potion,Plated Steelcaps,Trinity Force,Caulfield's Warhammer,Chain Vest,Blade of The Ruined King,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Irelia,Teleport,Flash,SOLO,TOP
T1 Canna,Corrupting Potion,Eclipse,Chempunk Chainsword,Plated Steelcaps,Caulfield's Warhammer,Kindlegem,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,BiscuitDelivery,NaN,,,TimeWarpTonic,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Pantheon,Teleport,Flash,SOLO,TOP
T1 Canna,Executioner's Calling,Black Cleaver,Goredrinker,Plated Steelcaps,Doran's Blade,Caulfield's Warhammer,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,Demolish,NaN,,,BonePlating,NaN,,,NaN,NaN,NaN,NaN,Renekton,Teleport,Flash,SOLO,TOP
T1 Canna,Dead Man's Plate,Frozen Heart,Mercury's Treads,Divine Sunderer,Spirit Visage,Phage,Farsight Alteration,GraspOfTheUndying,NaN,NaN,,Demolish,NaN,,,BonePlating,NaN,,,Unflinching,NaN,,,MinionDematerializer,NaN,,,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Nasus,Teleport,Flash,SOLO,TOP
T1 Canna,Ravenous Hydra,Caulfield's Warhammer,Goredrinker,Mercury's Treads,Long Sword,Kindlegem,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Aatrox,Teleport,Flash,SOLO,TOP
T1 Canna,Doran's Shield,Sheen,Control Ward,Boots,Kindlegem,Phage,Stealth Ward,GraspOfTheUndying,NaN,NaN,,Demolish,,,,BonePlating,NaN,,,Unflinching,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,,,,NaN,NaN,NaN,NaN,Nasus,Teleport,Flash,DUO_SUPPORT,NONE
T1 Canna,Divine Sunderer,Mercury's Treads,Glacial Buckler,NaN,Doran's Ring,Warden's Mail,Eye of the Herald,SummonAery,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,TimeWarpTonic,NaN,NaN,NaN,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Nasus,Teleport,Flash,SOLO,TOP
T1 Canna,Frozen Heart,Mercury's Treads,Spirit Visage,NaN,Divine Sunderer,NaN,Farsight Alteration,Conqueror,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,NimbusCloak,NaN,,,Transcendence,NaN,,,NaN,NaN,NaN,NaN,Nasus,Teleport,Flash,SOLO,TOP
T1 Canna,Doran's Blade,Trinity Force,Plated Steelcaps,Long Sword,Tiamat,Long Sword,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,DUO,NONE
T1 Canna,Doran's Shield,Riftmaker,Broken Stopwatch,Amplifying Tome,Sorcerer's Shoes,Cloth Armor,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,,,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Akali,Teleport,Ignite,SOLO,TOP
T1 Canna,Needlessly Large Rod,Riftmaker,Zhonya's Hourglass,Sorcerer's Shoes,Lich Bane,NaN,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,UltimateHunter,NaN,,,NaN,NaN,NaN,NaN,Akali,Teleport,Ignite,SOLO,TOP
T1 Canna,Doran's Blade,Trinity Force,Cloth Armor,NaN,NaN,Slightly Magical Footwear,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,DUO,NONE
T1 Canna,Trinity Force,Plated Steelcaps,Caulfield's Warhammer,Doran's Blade,Vampiric Scepter,Pickaxe,Stealth Ward,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,MagicalFootwear,NaN,NaN,,BiscuitDelivery,NaN,,,NaN,NaN,NaN,NaN,Camille,Teleport,Flash,SOLO,TOP
GimGoon,Gargoyle Stoneplate,NaN,Corrupting Potion,Plated Steelcaps,Black Cleaver,NaN,Stealth Ward,UnsealedSpellbook,NaN,,,MagicalFootwear,NaN,NaN,,MinionDematerializer,NaN,,,ApproachVelocity,NaN,,,GhostPoro,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Urgot,Flash,Teleport,SOLO,TOP
GimGoon,Commencing Stopwatch,Doran's Shield,Boots,Ruby Crystal,NaN,NaN,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,GatheringStorm,,,,CosmicInsight,,,,PerfectTiming,,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Teleport,DUO,NONE
GimGoon,Sorcerer's Shoes,Hextech Rocketbelt,Zhonya's Hourglass,Blasting Wand,Amplifying Tome,Doran's Shield,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,CosmicInsight,,,,PerfectTiming,,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Teleport,SOLO,TOP
GimGoon,Gargoyle Stoneplate,NaN,NaN,Black Cleaver,Plated Steelcaps,Control Ward,NaN,UnsealedSpellbook,NaN,,,MagicalFootwear,NaN,NaN,,MinionDematerializer,NaN,,,ApproachVelocity,NaN,,,GhostPoro,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Urgot,Flash,Teleport,SOLO,TOP
GimGoon,B. F. Sword,Youmuu's Ghostblade,Mobility Boots,Black Cleaver,Mejai's Soulstealer,Serrated Dirk,Stealth Ward,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,GhostPoro,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
GimGoon,Corrupting Potion,Youmuu's Ghostblade,Plated Steelcaps,Kindlegem,Phage,Faerie Charm,Farsight Alteration,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
GimGoon,Corrupting Potion,Tiamat,Trinity Force,Plated Steelcaps,Sterak's Gage,Vampiric Scepter,Stealth Ward,NaN,NaN,NaN,,MagicalFootwear,NaN,,,BiscuitDelivery,NaN,,,CosmicInsight,,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Flash,Teleport,SOLO,TOP
GimGoon,Dark Seal,Hextech Rocketbelt,Zhonya's Hourglass,Sorcerer's Shoes,Aether Wisp,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,GhostPoro,NaN,NaN,,RavenousHunter,NaN,NaN,,NimbusCloak,NaN,,,Transcendence,,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Ignite,DUO,TOP
GimGoon,Mercury's Treads,Youmuu's Ghostblade,Broken Stopwatch,Maw of Malmortius,NaN,Black Cleaver,Stealth Ward,SummonAery,NaN,NaN,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,GhostPoro,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
GimGoon,Doran's Blade,Youmuu's Ghostblade,Boots,Refillable Potion,Phage,Kindlegem,Stealth Ward,SummonAery,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
GimGoon,Corrupting Potion,Youmuu's Ghostblade,Edge of Night,Plated Steelcaps,NaN,Broken Stopwatch,Stealth Ward,SummonAery,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,TimeWarpTonic,NaN,NaN,NaN,PerfectTiming,,,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,DUO,NONE
GimGoon,Void Staff,Hextech Rocketbelt,NaN,Fiendish Codex,Dark Seal,Sorcerer's Shoes,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,CosmicInsight,,,,MagicalFootwear,NaN,NaN,,NaN,NaN,NaN,NaN,Vladimir,Flash,Teleport,SOLO,TOP
GimGoon,Doran's Blade,Youmuu's Ghostblade,Mercurial Scimitar,Mercury's Treads,Black Cleaver,NaN,Farsight Alteration,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,AbsoluteFocus,NaN,NaN,,Scorch,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jayce,Flash,Teleport,SOLO,TOP
GimGoon,Broken Stopwatch,Hextech Rocketbelt,NaN,Amplifying Tome,Sorcerer's Shoes,Blasting Wand,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,CosmicInsight,,,,PerfectTiming,,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Teleport,SOLO,TOP
GimGoon,Zhonya's Hourglass,Hextech Rocketbelt,NaN,Sorcerer's Shoes,Morellonomicon,Blasting Wand,Stealth Ward,PhaseRush,NaN,,,NimbusCloak,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,CosmicInsight,,,,PerfectTiming,,,,NaN,NaN,NaN,NaN,Vladimir,Flash,Teleport,SOLO,TOP
T1 Cuzz,Kraken Slayer,Vampiric Scepter,Berserker's Greaves,Runaan's Hurricane,Cloak of Agility,Executioner's Calling,Poro-Snax,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Caitlyn,Heal,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Doran's Ring,Liandry's Anguish,Sorcerer's Shoes,Morellonomicon,Needlessly Large Rod,Zhonya's Hourglass,Stealth Ward,FleetFootwork,NaN,,,PresenceOfMind,NaN,,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Sylas,Ignite,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Phantom Dancer,Berserker's Greaves,Executioner's Calling,Caulfield's Warhammer,Infinity Edge,Immortal Shieldbow,Stealth Ward,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yone,Smite,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Doran's Blade,Zeal,Berserker's Greaves,Dagger,NaN,Galeforce,Farsight Alteration,LethalTempo,NaN,,,PresenceOfMind,NaN,,,LegendBloodline,,,,CoupDeGrace,NaN,,,MagicalFootwear,NaN,NaN,NaN,ApproachVelocity,NaN,,,NaN,NaN,NaN,NaN,Ashe,Heal,Flash,DUO_CARRY,BOTTOM
T1 Cuzz,Pauldrons of Whiterock,Control Ward,Black Cleaver,Long Sword,Mercury's Treads,Divine Sunderer,Oracle Lens,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,CoupDeGrace,NaN,,,ZombieWard,NaN,NaN,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Pantheon,Ignite,Flash,DUO_SUPPORT,BOTTOM
T1 Cuzz,Bami's Cinder,Plated Steelcaps,Aegis of the Legion,NaN,NaN,Hailblade,Stealth Ward,Aftershock,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,CheapShot,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Rell,Smite,Flash,DUO,NONE
T1 Cuzz,Ravenous Hydra,Maw of Malmortius,NaN,NaN,Mercury's Treads,Goredrinker,Poro-Snax,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,CoupDeGrace,NaN,,,Triumph,NaN,NaN,,NaN,NaN,NaN,NaN,Jarvan IV,Mark,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Sorcerer's Shoes,Liandry's Anguish,Morellonomicon,Rylai's Crystal Scepter,Rabadon's Deathcap,Seraph's Embrace,Poro-Snax,PhaseRush,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,GatheringStorm,NaN,,,RavenousHunter,NaN,NaN,,TasteOfBlood,NaN,,,NaN,NaN,NaN,NaN,Ryze,Barrier,Flash,DUO_SUPPORT,MIDDLE
T1 Cuzz,Void Staff,Sorcerer's Shoes,Rabadon's Deathcap,Night Harvester,NaN,Broken Stopwatch,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,LeBlanc,Ignite,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Berserker's Greaves,Kraken Slayer,Essence Reaver,Infinity Edge,Vampiric Scepter,Muramana,Poro-Snax,PressTheAttack,NaN,NaN,NaN,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Lucian,Heal,Flash,DUO_SUPPORT,TOP
T1 Cuzz,Mercury's Treads,Spirit Visage,Force of Nature,NaN,NaN,Sunfire Aegis,Poro-Snax,Aftershock,NaN,,,ShieldBash,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,LegendTenacity,NaN,NaN,,Triumph,NaN,NaN,,NaN,NaN,NaN,NaN,Nautilus,Ignite,Flash,DUO_SUPPORT,NONE
T1 Cuzz,Berserker's Greaves,Immortal Shieldbow,Bloodthirster,Hearthbound Axe,Null-Magic Mantle,Blade of The Ruined King,Poro-Snax,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Yone,Ignite,Flash,DUO_SUPPORT,TOP
T1 Cuzz,Guardian's Horn,Mercury's Treads,Force of Nature,Kindlegem,Crystalline Bracer,Sunfire Aegis,Poro-Snax,Aftershock,NaN,,,FontOfLife,NaN,,,BonePlating,NaN,,,Overgrowth,NaN,,,LegendTenacity,NaN,NaN,,PresenceOfMind,NaN,,,NaN,NaN,NaN,NaN,Thresh,Ignite,Flash,DUO_SUPPORT,NONE
T1 Cuzz,The Collector,Boots of Swiftness,Bloodthirster,Rapid Firecannon,NaN,Eclipse,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Jhin,Heal,Flash,DUO,NONE
T1 Cuzz,Zhonya's Hourglass,Rabadon's Deathcap,Boots of Swiftness,Rapid Firecannon,Lich Bane,Everfrost,Farsight Alteration,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,TimeWarpTonic,NaN,NaN,NaN,MinionDematerializer,NaN,,,NaN,NaN,NaN,NaN,Twisted Fate,Ignite,Flash,SOLO,TOP
Enryu0,Doran's Blade,Infinity Edge,Berserker's Greaves,Rapid Firecannon,B. F. Sword,Vampiric Scepter,Farsight Alteration,LethalTempo,NaN,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jinx,Heal,Flash,DUO_CARRY,BOTTOM
Enryu0,Doran's Blade,Berserker's Greaves,Dagger,Infinity Edge,Cloak of Agility,NaN,Stealth Ward,LethalTempo,,NaN,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jinx,Heal,Flash,DUO_SUPPORT,NONE
Enryu0,Doran's Blade,Runaan's Hurricane,Berserker's Greaves,Infinity Edge,Rapid Firecannon,NaN,Stealth Ward,Conqueror,,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Jinx,Exhaust,Flash,DUO_CARRY,BOTTOM
Enryu0,Mobility Boots,Zeke's Convergence,Pauldrons of Whiterock,Knight's Vow,Fiendish Codex,NaN,Farsight Alteration,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Blitzcrank,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Enryu0,NaN,Morellonomicon,Rabadon's Deathcap,Void Staff,Zhonya's Hourglass,Banshee's Veil,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Diana,Ignite,Flash,DUO_CARRY,BOTTOM
Enryu0,Infinity Edge,Berserker's Greaves,Lord Dominik's Regards,Hexdrinker,Caulfield's Warhammer,NaN,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Graves,Mark,Flash,DUO_SUPPORT,NONE
Enryu0,Mortal Reminder,Vampiric Scepter,NaN,Bloodthirster,Quicksilver Sash,NaN,Stealth Ward,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,AbsoluteFocus,NaN,NaN,,GatheringStorm,NaN,,,NaN,NaN,NaN,NaN,Ezreal,Ignite,Flash,SOLO,BOTTOM
Enryu0,Sorcerer's Shoes,NaN,Frostfang,Lost Chapter,NaN,NaN,Stealth Ward,SummonAery,NaN,NaN,,NullifyingOrb,NaN,,,Transcendence,,,,GatheringStorm,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,NaN,NaN,NaN,NaN,Lux,Exhaust,Flash,DUO_SUPPORT,NONE
Enryu0,Mobility Boots,Zeke's Convergence,Runesteel Spaulders,NaN,NaN,NaN,Oracle Lens,Aftershock,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,Overgrowth,NaN,,,Celerity,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Blitzcrank,Exhaust,Flash,DUO_SUPPORT,BOTTOM
Enryu0,Trinity Force,Refillable Potion,Mercury's Treads,Ruby Crystal,Long Sword,NaN,Poro-Snax,GraspOfTheUndying,NaN,NaN,,Demolish,,,,SecondWind,NaN,,,Overgrowth,NaN,,,NullifyingOrb,NaN,,,Scorch,NaN,,,NaN,NaN,NaN,NaN,Wukong,Mark,Flash,DUO_SUPPORT,NONE
Enryu0,Black Cleaver,Ionian Boots of Lucidity,Ravenous Hydra,NaN,Pickaxe,Ruby Crystal,Poro-Snax,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Riven,Mark,Flash,DUO_SUPPORT,TOP
Enryu0,NaN,Sorcerer's Shoes,Rabadon's Deathcap,NaN,Zhonya's Hourglass,NaN,Poro-Snax,SummonAery,NaN,NaN,,NullifyingOrb,NaN,,,Transcendence,NaN,,,GatheringStorm,NaN,,,FontOfLife,NaN,,,SecondWind,NaN,,,NaN,NaN,NaN,NaN,Lux,Exhaust,Flash,DUO_SUPPORT,MIDDLE
Enryu0,Infinity Edge,Last Whisper,Boots,NaN,NaN,NaN,Poro-Snax,FleetFootwork,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,CoupDeGrace,NaN,,,TasteOfBlood,NaN,,,RelentlessHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Miss Fortune,Exhaust,Flash,DUO_SUPPORT,NONE
Enryu0,Doran's Blade,Vampiric Scepter,Phantom Dancer,Berserker's Greaves,Broken Stopwatch,Infinity Edge,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Yone,Ignite,Flash,SOLO,TOP
Enryu0,Doran's Blade,Berserker's Greaves,Phantom Dancer,Vampiric Scepter,NaN,NaN,Stealth Ward,Electrocute,NaN,,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Yone,Ignite,Flash,DUO_SUPPORT,NONE
Untara,Goredrinker,Guardian's Horn,Dead Man's Plate,Mercury's Treads,Caulfield's Warhammer,NaN,NaN,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,LastStand,NaN,,,Revitalize,NaN,NaN,,Conditioning,NaN,NaN,NaN,NaN,NaN,NaN,NaN,Olaf,Mark,Flash,DUO_SUPPORT,NONE
Untara,Shurelya's Battlesong,Guardian's Horn,Refillable Potion,Boots of Swiftness,Glacial Buckler,Kindlegem,NaN,Aftershock,NaN,,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,HextechFlashtraption,NaN,,,CosmicInsight,,,,NaN,NaN,NaN,NaN,Blitzcrank,Mark,Flash,DUO_SUPPORT,NONE
Untara,Goredrinker,Death's Dance,Guardian's Blade,Sterak's Gage,Mercury's Treads,Long Sword,NaN,Electrocute,NaN,,,SuddenImpact,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Triumph,NaN,NaN,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Jarvan IV,Mark,Flash,DUO_SUPPORT,NONE
Untara,Plated Steelcaps,Guardian's Hammer,Refillable Potion,Sheen,Hearthbound Axe,Kindlegem,NaN,GraspOfTheUndying,NaN,NaN,,ShieldBash,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,Triumph,NaN,NaN,,LegendAlacrity,NaN,NaN,,NaN,NaN,NaN,NaN,Camille,Mark,Flash,DUO_SUPPORT,NONE
Untara,Turbo Chemtank,Guardian's Horn,Giant's Belt,Mercury's Treads,Abyssal Mask,Bramble Vest,Poro-Snax,Aftershock,NaN,,,Demolish,,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,NaN,NaN,NaN,NaN,Alistar,Mark,Flash,DUO_SUPPORT,NONE
Untara,Zhonya's Hourglass,Riftmaker,Sorcerer's Shoes,Oblivion Orb,Blasting Wand,NaN,Scarecrow Effigy,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Fiddlesticks,Mark,Flash,DUO_SUPPORT,NONE
Untara,Berserker's Greaves,Quicksilver Sash,Phantom Dancer,Immortal Shieldbow,Lord Dominik's Regards,B. F. Sword,NaN,PressTheAttack,NaN,NaN,NaN,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,CoupDeGrace,NaN,,,NimbusCloak,NaN,,,Celerity,NaN,,,NaN,NaN,NaN,NaN,Quinn,Heal,Flash,DUO_SUPPORT,MIDDLE
Untara,Turbo Chemtank,Guardian's Horn,Mercury's Treads,Dead Man's Plate,Winged Moonplate,Null-Magic Mantle,NaN,Aftershock,NaN,,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,Triumph,NaN,NaN,,LegendTenacity,NaN,NaN,,NaN,NaN,NaN,NaN,Volibear,Mark,Flash,DUO_SUPPORT,MIDDLE
Untara,Zhonya's Hourglass,Luden's Tempest,Horizon Focus,Sorcerer's Shoes,Blasting Wand,NaN,Poro-Snax,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Xerath,Clarity,Flash,DUO_SUPPORT,NONE
Untara,Ionian Boots of Lucidity,Guardian's Orb,Blasting Wand,Imperial Mandate,Forbidden Idol,NaN,NaN,SummonAery,NaN,NaN,,ManaflowBand,NaN,,,Transcendence,,,,Scorch,NaN,,,LegendTenacity,,,,PresenceOfMind,NaN,,,NaN,NaN,NaN,NaN,Ivern,Mark,Flash,DUO_SUPPORT,NONE
Untara,Mercury's Treads,Liandry's Anguish,Morellonomicon,Needlessly Large Rod,NaN,NaN,NaN,Aftershock,NaN,,,Demolish,NaN,,,Conditioning,NaN,NaN,NaN,Unflinching,NaN,,,UltimateHunter,NaN,,,CheapShot,NaN,,,NaN,NaN,NaN,NaN,Lissandra,Mark,Flash,DUO,NONE
Untara,Sorcerer's Shoes,Morellonomicon,Horizon Focus,Luden's Tempest,Void Staff,Needlessly Large Rod,NaN,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Transcendence,NaN,,,Scorch,NaN,,,PresenceOfMind,NaN,,,CoupDeGrace,NaN,,,NaN,NaN,NaN,NaN,Lux,Clarity,Flash,SOLO,MIDDLE
Untara,Muramana,Duskblade of Draktharr,Edge of Night,Mercury's Treads,Long Sword,Long Sword,NaN,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Varus,Clarity,Flash,DUO_SUPPORT,NONE
Untara,Ionian Boots of Lucidity,Eclipse,Death's Dance,Edge of Night,Serylda's Grudge,Executioner's Calling,NaN,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,Transcendence,NaN,,,ManaflowBand,NaN,NaN,,NaN,NaN,NaN,NaN,Jayce,Clarity,Flash,SOLO,BOTTOM
Untara,Sorcerer's Shoes,Riftmaker,Demonic Embrace,Cosmic Drive,Oblivion Orb,Ruby Crystal,NaN,DarkHarvest,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RavenousHunter,NaN,NaN,,ApproachVelocity,NaN,,,MagicalFootwear,NaN,,,NaN,NaN,NaN,NaN,Rumble,Mark,Flash,DUO_SUPPORT,TOP
T1 Ellim,Runaan's Hurricane,Muramana,Immortal Shieldbow,Berserker's Greaves,Mortal Reminder,Cloak of Agility,Poro-Snax,Conqueror,NaN,,,Triumph,NaN,NaN,,LegendBloodline,NaN,NaN,,LastStand,NaN,,,TasteOfBlood,NaN,,,RavenousHunter,NaN,NaN,,NaN,NaN,NaN,NaN,Aphelios,Cleanse,Flash,DUO,TOP
T1 Ellim,Guardian's Orb,Seraph's Embrace,Imperial Mandate,Ionian Boots of Lucidity,Mikael's Blessing,Forbidden Idol,Poro-Snax,ArcaneComet,NaN,,,ManaflowBand,NaN,NaN,,Celerity,NaN,,,Scorch,NaN,,,CoupDeGrace,NaN,,,Triumph,NaN,NaN,,NaN,NaN,NaN,NaN,Janna,Mark,Flash,DUO_SUPPORT,NONE
T1 Ellim,The Collector,Duskblade of Draktharr,Sanguine Blade,Berserker's Greaves,Hexdrinker,Mortal Reminder,Farsight Alteration,HailOfBlades,NaN,NaN,,TasteOfBlood,NaN,,,EyeballCollection,NaN,,,RelentlessHunter,NaN,NaN,,PresenceOfMind,NaN,,,LegendBloodline,NaN,NaN,,NaN,NaN,NaN,NaN,Draven,Heal,Flash,DUO_CARRY,BOTTOM