-
Notifications
You must be signed in to change notification settings - Fork 0
/
Html_Trump_After.txt
2992 lines (2992 loc) · 98.8 KB
/
Html_Trump_After.txt
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
["mapocoloco","nytimes","4"],
["DonMcKenzie","Delo_Taylor","2"],
["rappahannockmag","JohnWDean","1"],
["schober_lisa","arnonmishkin","2"],
["serge_poznanski","ft","4"],
["thalsey51","DCClothesline","2"],
["thalsey51","linkis","2"],
["sweettea4me925","amjoyshow","3"],
["sweettea4me925","msnbc","3"],
["lord_rosenberg","netw3rk","2"],
["semirabella","TimOBrien","4"],
["LetsSeeLife","ObamaMalik","4"],
["TerrySoileau","ABCPolitics","2"],
["LSoudek","CaptainsLog2016","3"],
["WLSTONE1","FoxNews","3"],
["OliviaAllenC","breitbart","2"],
["intl_traveller","davidfrum","5"],
["AnonBruja","McClatchyDC","4"],
["AnonBruja","mcclatchydc","4"],
["eloinformada","franchosa","3"],
["FactorsTalcott","yojudenz","5"],
["FactorsTalcott","ijr","5"],
["KarmaKittySays","V_of_Europe","3"],
["KarmaKittySays","thegatewaypundit","3"],
["gisellegrenier","cjcmichel","3"],
["gisellegrenier","motherjones","3"],
["EVIL_DAESH","dailystar","1"],
["KRCSmith62","MrDane1982","2"],
["BourneInTexas","MagicRoyalty","4"],
["AlwaysAgnew","abbydphillip","2"],
["RickySi16087724","shannonsbeau","5"],
["baumsche","msn","1"],
["Sciencereport36","itechpost","3"],
["B_Zamacona","reforma","2"],
["Zelidasquare","vermaak_martin","1"],
["rprez2012","FoxNewsSunday","5"],
["NickRiccardi","TimOBrien","4"],
["MoMeldrum","kurteichenwald","4"],
["zwwwara","amjoyshow","2"],
["mile_high_33","AndNowIWrite","4"],
["matometrump","trump","3"],
["Mr_Zues_1","DavidCornDC","5"],
["donkosin","kurteichenwald","3"],
["Kirstycat1209","GusSent","5"],
["GalinaGalanos","bennydiego","3"],
["LKuehn4","kurteichenwald","4"],
["KohenBrady","FoxNewsSunday","5"],
["FilistineNow","nytimes","3"],
["bluedevildavey","IslamismMap","2"],
["bluedevildavey","islamism-map","2"],
["CoryKCrabtree","thehill","2"],
["partynauseous27","EW","5"],
["NewsLycaness19","frankrichny","3"],
["Old96er1","keithlaw","3"],
["goffmania","Noahpinion","1"],
["a_hundred_tacks","mattyglesias","4"],
["Fernasteady","NPR","3"],
["hwhlj321","BrettArends","4"],
["KimShirley123","pharris830","3"],
["StephanieMilli3","PrisonPlanet","2"],
["StephanieMilli3","infowars","2"],
["joh53293471","kurteichenwald","3"],
["LE_Durfey","FT","4"],
["LE_Durfey","ft","4"],
["JLovrensky","sluggahjells","2"],
["Sciencesharenew","itechpost","3"],
["Patrioticgirl86","JrcheneyJohn","3"],
["caitlinsloanx","charlymim","3"],
["KristaKaroFL","realDonaldTrump","4"],
["grandpooba5440","ActionTime","5"],
["agrippa550","LindaSuhler","2"],
["evelinekipping","HuffingtonPost","3"],
["evelinekipping","m","3"],
["KroekerTony","tazie34","4"],
["KroekerTony","truthfeed","4"],
["ShawnMorse_","GrrrGraphics","3"],
["JkFlower60","seankent","5"],
["oxfordtarheel","kurteichenwald","3"],
["FMAlchemist","BillMoyersHQ","1"],
["martycoultas","sluggahjells","2"],
["Libertarian896","slone","2"],
["Espormibien","bessbell","3"],
["pianodiva11","ClimateCentral","3"],
["oufenix","TheGnudz","3"],
["JenRothe","kurteichenwald","5"],
["razzleberry_e","mattdpearce","3"],
["razzleberry_e","mobile","3"],
["XMerc45","blaubok","4"],
["TruthTeamOne","MrJamesonNeat","2"],
["georgebrown06","TheDailyEdge","2"],
["Aviationshare","usatoday","3"],
["testrssnews","bbc","3"],
["NMatte33","youlivethrice","4"],
["matometrump","trump","3"],
["PedroCo16889625","kurteichenwald","4"],
["mharvey816","SeanMcElwee","5"],
["jennifer4nm","kurteichenwald","5"],
["cynthia_gail","Suthen_boy","2"],
["cynthia_gail","usatoday","2"],
["mrmarkplum","FoxNewsSunday","5"],
["TheRick35","bfraser747","5"],
["trump_woman","eggvatar","3"],
["laurenm","EW","5"],
["thePoWer_RangeR","NBCNews","5"],
["thePoWer_RangeR","nbcnews","5"],
["LisaToddSutton","dwaynecobb","5"],
["JHSaunders","funder","3"],
["NateInPhilly","EW","5"],
["eNewsPR_DK","b","3"],
["Isabel__Jones","RealRussBaker","4"],
["Web20watch","politico","3"],
["chuckbrixey","realDonaldTrump","1"],
["thegranolamom","MMFlint","2"],
["thegranolamom","youtube","2"],
["ramsay_scott","YoungDems4Trump","3"],
["TurnTNBlue","France4Hillary","3"],
["LKuehn4","kurteichenwald","3"],
["pisannd5","kurteichenwald","3"],
["pulpmarkets","bloomberg","2"],
["Dewblue1","TheDonaldNews","3"],
["Dewblue1","thegatewaypundit","3"],
["Adriene26","AriMelber","1"],
["ibleedandstuff","Steven_Strauss","3"],
["RWNemanich","funder","1"],
["SkyLaser3","abctweet100","1"],
["plowman_robert","CarlBullock16","2"],
["plowman_robert","breitbart","2"],
["Synergism3","JuddLegum","4"],
["thisischrisb","voxdotcom","2"],
["thisischrisb","vox","2"],
["LibbySwenson","swin24","3"],
["EricBryan7","YouTube","4"],
["EricBryan7","youtube","4"],
["bbdevices","tribelaw","3"],
["inklake","EricBoehlert","3"],
["INSOMNIAK_DJ","kurteichenwald","4"],
["NetaniaLim","davidfolkenflik","3"],
["llostgirl","ghefrentte","3"],
["ArmstrongLance3","elijahdaniel","5"],
["rolmarjr","mobile","4"],
["innaroz","vivelafra","2"],
["gooberspa","Nate_Cohn","3"],
["themayorofoc","V_of_Europe","3"],
["themayorofoc","thegatewaypundit","3"],
["agscribbler","TheRickWilson","3"],
["agscribbler","time","3"],
["ScienceWorld9","itechpost","3"],
["DiMill46","paulkrugman","5"],
["lobster_dog","thesilentshore","3"],
["TaiwanNewsshow","nytimes","3"],
["worldnews134","bbc","3"],
["DessyFenix","ericgarland","5"],
["DespinaKaddouri","GavinNewsom","4"],
["GlennLittle5","dmartosko","3"],
["GlennLittle5","dailymail","3"],
["respectinc","jayrosen_nyu","2"],
["NicoleCynLane","ananavarro","3"],
["cbrownx","mikandynothem","4"],
["ckensingtn","AriFleischer","1"],
["yytirado","Reuters","3"],
["yytirado","reuters","3"],
["knew777771","sarahkendzior","3"],
["Hehe24Small","kurteichenwald","4"],
["walkileaks","newsyarn","3"],
["Dina_Tan73","FieldDiamond","4"],
["alfredenmn","DanRather","4"],
["FaithFlaherty3","jmaboshie","5"],
["Anj_T","liamstack","3"],
["laurine3215","funder","3"],
["tammy_wesa","DavidCornDC","3"],
["tammy_wesa","m","3"],
["rachmanworks","CNBC","3"],
["OnlineMarketmix","politico","3"],
["HelenEckard","funder","1"],
["mindburnr","AdamVanBavel","3"],
["mzbitca","mattdpearce","3"],
["mzbitca","mobile","3"],
["Habanera119","Bipartisan","2"],
["Habanera119","bipartisanreport","2"],
["cookiebucky1","activist360","2"],
["Zwelkiss","helenmaryme","3"],
["MaelinnHughes","tomtomorrow","1"],
["asbinvancity","PattyParsonsPat","3"],
["HURRICANEPAUL","stranahan","5"],
["EnvironmenLaw","politico","3"],
["FactsVsOpinion","ginammack","3"],
["SOS_1313","mitchellvii","5"],
["trumpsquatch","trumpsquatch","3"],
["zweckfam","LOLGOP","1"],
["RebelHeartWorld","StopTrump2020","3"],
["PTsully55","cutasterfee","3"],
["GarronRobert","mitchellvii","3"],
["GarronRobert","thegatewaypundit","3"],
["DhitaPuss","punyakitasemuanih","3"],
["snarkysyntax","meganamram","3"],
["Nuwanda9","KeepAmerGr8","2"],
["Bayathread","msfoundation","4"],
["NikkiNiceOKC","AP","2"],
["debesponomi","HamiltonElector","2"],
["AZULCAMPEON10","politicomx","3"],
["DeDimacrow","politico","4"],
["downtown7thave","Toure","5"],
["ceili_woman","DavidCornDC","1"],
["mtighe15","USARedOrchestra","1"],
["JoeFeagin","sarahkendzior","3"],
["Rene_Berto","amazon","3"],
["jayawells","calatayud7","3"],
["Melanymlove","nytimes","2"],
["retrotimewarp","SamGrittner","3"],
["Egy_U","nytimes","3"],
["SeriesaddictIra","EW","5"],
["Bitch_Wear","Ali_Tmak_Store.https//t.co/qLTFpnmhtt","3"],
["seanskiwords","StephenKing","1"],
["TechNewsDB","technewsdb","3"],
["PatPatojson","Corporatocrazy","1"],
["PatPatojson","naturalnews","1"],
["lynndals","CaptainsLog2016","2"],
["JoeRash3","AJDelgado13","3"],
["USSenateview","thehill","2"],
["Floridaartist1","SandraTXAS","5"],
["madelineloveg","nytimes","2"],
["iPhonefanclubs","appleinsider","3"],
["mcmisher","GeorgeTakei","3"],
["LibraQueenLibby","sarahkendzior","3"],
["DebbiebB15","VampKiraLynn","2"],
["ramaiamar","yahoo","3"],
["padilloh","ebromleymdphd","4"],
["padilloh","qz","4"],
["PeterTownsend7","ptbooks","4"],
["corytheswirler","michaelianblack","3"],
["SmarterThanAl1","smarterthanalbert","4"],
["GuruMarketeer","smarterthanalbert","4"],
["RNRoxx","HamiltonElector","4"],
["Pixelfish","saladinahmed","1"],
["thebitterfig","JoyAnnReid","4"],
["TrumpNation10","Sammie_Snickers","2"],
["TrumpNation10","philadelphia","2"],
["captainolya","janiobi","1"],
["jane_spillane","US_Army_Vet","4"],
["cvasilevski","Evan_McMullin","3"],
["Scrutinator","andres20ad","2"],
["OKCliberal","nbcnews","5"],
["grannyso","melreynoldsU","2"],
["ballerinaX","leahmcelrath","3"],
["yoenterado","youtube","3"],
["donkrusty","EW","5"],
["nancy73gg","amrightnow","3"],
["nancy73gg","youtube","3"],
["lisatalley045","asamjulian","3"],
["DermArch","NewYorker","4"],
["AngelicPrado","LightsOut2017","2"],
["AngelicPrado","reuters","2"],
["MLBDenver","TimOBrien","4"],
["gkilday","ABFalecbaldwin","5"],
["erinhale","dpa_intl","3"],
["yuweile","wikileaks","2"],
["miscelaineee","KeithOlbermann","3"],
["yardsailor43","kurteichenwald","3"],
["Lisa_Iannucci","JohnFPfaff","3"],
["vdutat","HamiltonElector","2"],
["DessyFenix","ericgarland","2"],
["robertmeyer9","socialmaze","2"],
["Reforma","reforma","2"],
["caroljdavy","saletan","4"],
["kayewhitehead","kayewisewhitehead","3"],
["furngals2","DailyCaller","4"],
["furngals2","dailycaller","4"],
["gaga20219gs","amjoyshow","3"],
["BenReclused","StoneColdTruth","4"],
["angulosiete","angulo7","3"],
["THE_DAILY_BLEAT","DailyCaller","4"],
["THE_DAILY_BLEAT","dailycaller","4"],
["mdjtraveler","KellyannePolls","5"],
["rockshout","funder","3"],
["catoletters","veteranstoday","2"],
["lehudgins","MattOrtega","3"],
["lehudgins","corrupt","3"],
["RevPastorJack","ijr","3"],
["ConservativLuke","unsavoryagents","3"],
["ConservativLuke","nbcnews","3"],
["holtmapa","NewYorker","4"],
["openomroep","nbcnews","2"],
["MickBlair54","breitbart","2"],
["amcnair00","nbcnews","3"],
["blueinthesouth","JoyAnnReid","3"],
["Phil_Laird1","VoteHillary2016","3"],
["addykateglen","ReaganBattalion","2"],
["lonegamer78","benschwartzy","2"],
["sasachio72","tackettdc","4"],
["burghline","burghline","4"],
["anobscureartist","TheEconomist","4"],
["IntrovertRN1975","JuddLegum","3"],
["IntrovertRN1975","medium","3"],
["Deplorablefrog1","funder","3"],
["ZeliaLH","BV","3"],
["ZeliaLH","linkis","3"],
["crownlifelive","DanRather","4"],
["GREEN_THE_WORLD","m","3"],
["lollytw","thehill","1"],
["imagin8ion","behindyourback","4"],
["Quietness_Trust","MrJonCryer","2"],
["vincicat","tomphillipsin","1"],
["Shanny_resqchi","funder","3"],
["PatriotJane2","davidfrum","2"],
["emptypockets57","ThePatriot143","4"],
["longrunweareall","RadioFreeTom","5"],
["Damey07","DanRather","4"],
["melindacasino","mgd4161","3"],
["koalaqueen53","NewYorker","3"],
["CailleachSila","ericgarland","2"],
["Helena83852000","MaxAbrahms","3"],
["NMatte33","SLandinSoCal","1"],
["algegra","huffingtonpost","3"],
["Maquiavelo61","GobernantesVer","3"],
["Maquiavelo61","gobernantes","3"],
["bbc_fanxyU","nath_celeste","3"],
["hawaiianlove68","HamiltonElector","4"],
["jakerocksalot16","BettyBowers","1"],
["sud_vijay","Redpainter1","5"],
["slmbs9","Humans_vs_Trump","2"],
["eprophotog","funder","3"],
["al_draper","YouTube","3"],
["al_draper","youtube","3"],
["_flanders","jruha","4"],
["JennHenrichsen","propublica","3"],
["JennHenrichsen","propublica","3"],
["BettorsChat","MotherJones","4"],
["BettorsChat","motherjones","4"],
["SURJColumbusOH","prisonculture","4"],
["Deplorablefrog1","funder","3"],
["POOetryman","Beachfront","1"],
["BemusedDukat","Sargon_of_Akkad","4"],
["rgrossley48","kurteichenwald","3"],
["TheKeeper2016","TheDailyEdge","1"],
["la__intelectual","WalshFreedom","5"],
["Bobbyh214","House_Insider","4"],
["bchek833","HuffPostPol","1"],
["bchek833","m","1"],
["Fooddiva20","TIME","3"],
["Fooddiva20","time","3"],
["LorenzoQ","ezlusztig","1"],
["KatCeccotti","juneday864","3"],
["ProAssad","ABC","4"],
["JHSaunders","AP","2"],
["BlameThe1st","Nash076","2"],
["browntom1234","dem_happy","2"],
["lolife52","MarkSimoneNY","5"],
["lolife52","nytimes","5"],
["CDCollector23","gunsrus7","3"],
["PiratesWife82","Will_Bunch","1"],
["Kim38875219","CNBC","3"],
["Kim38875219","cnbc","3"],
["CaroleMyers","McJesse","3"],
["Jude5253","vivelafra","2"],
["anicho47","LibAmericaOrg","2"],
["anicho47","liberalamerica","2"],
["PubPolHist","DLin71","3"],
["Ximeko","EW","5"],
["MiaEvan30311368","johndurant","2"],
["MiaEvan30311368","deadline","2"],
["debyoungblood","funder","3"],
["breakfastqueen1","funder","3"],
["modernbob","WSJ","3"],
["DickNixonLives","Evan_McMullin","3"],
["LindaWestbroo11","NormEisen","4"],
["studygoddess01","law_newz","2"],
["studygoddess01","lawnewz","2"],
["NewsdeskUS","bbc","3"],
["TheMrsDarcy","laurie6805","3"],
["TheMrsDarcy","dailycaller","3"],
["messerduff","Steven_Strauss","3"],
["ChristineAdams3","DataLogicTruth","5"],
["lovemedietcoke","tonyschwartz","2"],
["DessyFenix","ericgarland","3"],
["inklake","France4Hillary","2"],
["breaguiniga","Laughbook","3"],
["kaleemarie24","feliciaw5853","2"],
["KathyFeingold","TheDailyEdge","2"],
["EdouardDugas","Claude2052","3"],
["MythicalStig","markmobility","2"],
["MythicalStig","nytimes","2"],
["trudgintheroad","DanRather","4"],
["Stephan19330818","EW","5"],
["PattiPropst","breitbart","3"],
["KathyTu57558497","mitchellvii","3"],
["KathyTu57558497","thegatewaypundit","3"],
["DonMcKenzie","Delo_Taylor","2"],
["vandives","mtracey","2"],
["hypnocoach183","starfirst","3"],
["hypnocoach183","change","3"],
["TerryGomez91","EW","5"],
["DRHsPsychoCafe","saladinahmed","1"],
["Lina_J_Al","Joyce_Karam","1"],
["andersongouldjr","DeanLeh","4"],
["DKWilson56","DavidCornDC","1"],
["faabbbs","BraddJaffy","2"],
["AnnaHarffey","DataLogicTruth","4"],
["neighborlee","DeAnnSmithkc","3"],
["RayREllis1","YouTube","3"],
["RayREllis1","youtube","3"],
["sp1ritharambe","ananavarro","3"],
["ccbean1965","steph93065","2"],
["lolalolita0","thehill","4"],
["lolalolita0","thehill","4"],
["VictorMoruzzi","BBCWorld","3"],
["VictorMoruzzi","bbc","3"],
["79topper","JoyAnnReid","4"],
["val_kudirka","cleo_peterson","1"],
["nigelcameron","20committee","4"],
["93skedoo","Fusion","3"],
["93skedoo","theguardian","3"],
["LaOkieKat","mitchellvii","3"],
["LaOkieKat","thegatewaypundit","3"],
["It_is_NunyaDB","Fusion","1"],
["It_is_NunyaDB","fusion","1"],
["allthatyaaazzzz","business","3"],
["allthatyaaazzzz","bloomberg","3"],
["lindsayrda53","thehill","1"],
["Rajivkapoor2318","Newsmax","1"],
["Rajivkapoor2318","newsmax","1"],
["DanielMichaelJ","DLin71","3"],
["McbrideHoover","funder","3"],
["ArtHauntsMe","EJR91372","2"],
["diannabythesea","JoyAnnReid","3"],
["l8j42","cia","3"],
["Markus03121966","BrendanNyhan","3"],
["PamelafBrockman","mateagold","2"],
["PamelafBrockman","washingtonpost","2"],
["ChoocfantasyM","tonyschwartz","2"],
["scutify","scutify","3"],
["IntrovertRN1975","JuddLegum","2"],
["IntrovertRN1975","medium","2"],
["undercover0000","shareblue","2"],
["catlover1943","CDZ_999","1"],
["Presley48R","JackPosobiec","3"],
["Presley48R","thegatewaypundit","3"],
["bethtomkiw","mradamscott","5"],
["Michell66010778","amjoyshow","3"],
["YoyoStube","EW","5"],
["elisabetta7991","YourAnonCentral","3"],
["APOYODECHILE","Stevenwhirsch99","3"],
["RegaloDelSenor","Steven_Strauss","3"],
["zumausa","kurteichenwald","4"],
["HondaMashburn","CapehartJ","3"],
["HondaMashburn","washingtonpost","3"],
["nancy73gg","andieiamwhoiam","4"],
["Myocz","Lettradus","2"],
["PatPatojson","Zeke311","2"],
["PatPatojson","infowars","2"],
["cvasilevski","sarahkendzior","3"],
["johnnymercerfan","DLin71","3"],
["carpet_bomber","WSJ","3"],
["maluza56","QuadratinMexico","3"],
["maluza56","mexico","3"],
["debyoungblood","funder","3"],
["djgirl40","AlecBaldwin","5"],
["tobyonekonobe","surfermom77","2"],
["efox17","FrankLuntz","4"],
["andrea_manea","davidfrum","5"],
["nice2bcalm","FoxNews","3"],
["plowman_robert","mikandynothem","4"],
["Lewisgd","netw3rk","2"],
["Damuhar","lulach_cuardach","3"],
["whaaf","Adenovir","1"],
["dashing_reaver","_premiumfan","1"],
["respectinc","jayrosen_nyu","4"],
["TWalterErickson","JoeBerkowitz","3"],
["TWalterErickson","politico","3"],
["ltwhite","thehill","3"],
["joh53293471","DanRather","4"],
["usmaan_aisha","kurteichenwald","3"],
["jzd3","nbcsnl","3"],
["jzd3","nbc","3"],
["Adriene26","yashar","2"],
["grandpooba5440","rudepundit","2"],
["SRStalcup","thehill","1"],
["INSOMNIAK_DJ","HamiltonElector","4"],
["jen_thorson","kurteichenwald","3"],
["Inked1BNA","JuddLegum","4"],
["Inked1BNA","medium","4"],
["lsuagain","PSheritaakkloh","1"],
["Chi_Ship","soit_goes","5"],
["tonic516","funder","3"],
["IntrovertRN1975","JuddLegum","3"],
["IntrovertRN1975","medium","3"],
["JenTromans","CaptainsLog2016","3"],
["Kashinka","Endoraknows","4"],
["Bayathread","HuffPostWomen","4"],
["julstitt","realDonaldTrump","5"],
["brianpiero","Deanofcomedy","2"],
["Shanny_resqchi","funder","3"],
["trungngo09","georgebkk","3"],
["trungngo09","thaivisa","3"],
["washumom","starfirst","3"],
["washumom","dailynewsbin","3"],
["thebobbyb","TheDailyEdge","1"],
["notastalker_uR","nbcsnl","4"],
["eprophotog","funder","3"],
["xfigmentx","Khanoisseur","2"],
["nettsarie","TeenVogue","3"],
["nettsarie","teenvogue","3"],
["jennifer4nm","kurteichenwald","2"],
["cdat","EW","5"],
["Hellon_Heels","SpeakerRyan","2"],
["Hellon_Heels","npr","2"],
["ZiggyinHeavon","redstatewatcher","2"],
["demfemme","pittgriffin","4"],
["KHZ4HGP","aol","2"],
["shhendrickson","surfermom77","2"],
["PizzaAbuser","sherlockmichael","2"],
["wikkidwillow","SenSanders","4"],
["sampson_elaine","DailyNewsBin","4"],
["sampson_elaine","dailynewsbin","4"],
["Luvnstuff2","thr","3"],
["Luvnstuff2","hollywoodreporter","3"],
["ProAssad","nytimesworld","3"],
["ProAssad","nytimes","3"],
["danni_rie","JuddLegum","4"],
["AmazingAshesly","elijahdaniel","5"],
["euphoricpieta","TheThomason","3"],
["suicide_romance","Hellon_Heels","3"],
["SturdeeBeggar","_0HOUR1","2"],
["Jeff_Leader","ericgarland","2"],
["breakfastqueen1","funder","3"],
["ArianeBellamar","TheJusticeDept","3"],
["ArianeBellamar","change","3"],
["websterwakeemup","SocialPowerOne1","3"],
["Tuscan21_PM","saletan","4"],
["soaksponge","MichaelDelauzon","3"],
["MtLion15","TimOBrien","4"],
["ShutUpBabyINoIt","funder","3"],
["RichardTrubacek","thehill","3"],
["EnriqueM77","WG_Burton","3"],
["KangJiaChen","tomphillipsin","1"],
["ValkyrieSigrid","US_Army_Vet","4"],
["winkiechance","Bane1349","3"],
["waldmania","kurteichenwald","4"],
["tedreally","yashar","5"],
["peggyhsinhsin","TeenVogue","4"],
["peggyhsinhsin","teenvogue","4"],
["ramrhonda","sjredmond","1"],
["amerycarlson","WayneDupreeShow","2"],
["amerycarlson","newsninja2012","2"],
["SammyMorgan91","nytimes","5"],
["EllyHuy","youtube","2"],
["texlaker","EW","5"],
["as_promised","addictinginfo","3"],
["PIE20121","yashar","2"],
["jtmcfluffy","DLin71","3"],
["BVenditte","AriMelber","1"],
["JohnSede","NewsBud_","3"],
["JohnSede","boilingfrogspost","3"],
["KathyLangeNovak","kurteichenwald","4"],
["Tenkellers","RedNationRising","1"],
["Tenkellers","louderwithcrowder","1"],
["777Francejacque","V_of_Europe","3"],
["777Francejacque","thegatewaypundit","3"],
["journeysincolor","saladinahmed","1"],
["Camilian1Sabel","RichardTBurnett","5"],
["Mandari25733571","girlsreallyrule","4"],
["sarge19k4088","CarlaChamorros","3"],
["AlekseiTheWolf","marling981","5"],
["leilacountry","yolandazavala7","2"],
["MaryTrinetti","funder","3"],
["DtRh321","Yvette_G_Nacer","4"],
["ABSFSU1","EW","5"],
["respectinc","jayrosen_nyu","4"],
["TechNewsDB","technewsdb","3"],
["dblair54","carlreiner","2"],
["politicsrecycle","teaparty","1"],
["michaeldhensel","gizmodo","3"],
["Newyorker2212","DerronDjjrdn","2"],
["Newyorker2212","thedailybeast","2"],
["ramcatalleyetsy","_0HOUR1","2"],
["HelenEckard","randyprine","4"],
["Zhape","SeabreezeCheryl","2"],
["Zhape","bipartisanreport","2"],
["bhandarirupes18","KanakManiDixit","2"],
["tlhenson823","vivelafra","2"],
["LaOkieKat","asamjulian","3"],
["Martina","DavidCornDC","5"],
["uncagedgypsy","leahmcelrath","3"],
["Mom9Ky","TheDemocrats","4"],
["KurtRexCooper","tomtomorrow","2"],
["jesse74henson","EW","5"],
["CHURCHLADY320","CitizensFedUp","4"],
["tmogul_live","youtube","2"],
["MelindaThinker","SheSternly","1"],
["IntrovertRN1975","JuddLegum","4"],
["JackieMcReath1","alexjonesshows","2"],
["JackieMcReath1","alexjonespodcast","2"],
["NewsBry","newsbry","3"],
["lindadoherty4","kurteichenwald","5"],
["BalanceInNature","sarahkendzior","3"],
["BalanceInNature","theguardian","3"],
["MarEnrile","TeenVogue","4"],
["MarEnrile","teenvogue","4"],
["ruthsias","sluggahjells","2"],
["BonnieLynn52","HAWofPA","2"],
["bfinstock2_0","MagicRoyalty","4"],
["diamondnill1","puppymnkey","3"],
["ChicagoCro","thehill","1"],
["arielvalentin","KatzOnEarth","4"],
["MariaEl26012179","EP_EEUU_24Horas","3"],
["MariaEl26012179","epmundo","3"],
["GoodHumorGrl","EW","5"],
["zmain1","Joyce_Karam","1"],
["sud_vijay","kurteichenwald","5"],
["Daniel7964","kurteichenwald","4"],
["remmkm","Adenovir","1"],
["nancy73gg","LindaSuhler","3"],
["meaghanwebster","nytimes","3"],
["ReclaimDawgs","TeaPartyCore","5"],
["drv4posgrowth","JimmyBear2","3"],
["drv4posgrowth","occupydemocrats","3"],
["PedroCo16889625","kurteichenwald","3"],
["kehindekolawole","KatyTurNBC","4"],
["hypnocoach183","funder","3"],
["sa_solomon","washingtonpost","3"],
["Maxzen2004","TheTrumpLady","4"],
["4EverJohnnyBoy","NancyLeeGrahn","3"],
["SFH26","EW","5"],
["B_H_Fan4Evr","EW","5"],
["an_janes","divinity254","4"],
["uramkmf4","dailykos","3"],
["1549321s","funder","3"],
["BelkissObadia","TeaPainUSA","3"],
["llarks","ckilpatrick","4"],
["GoodwinHH6","Stevenwhirsch99","3"],
["MarieFrRenaud","DanRather","4"],
["dal4kids","SPNlocal","3"],
["dal4kids","linkedin","3"],
["ar1511c","JSavoly","3"],
["roznewz","thehill","3"],
["JackEddieFoster","netw3rk","2"],
["ThomasJankow","squad19mpls","5"],
["MLorance","RepAdamSchiff","2"],
["sosarcatstic","mattdpearce","3"],
["sosarcatstic","mobile","3"],
["mikehaddad","mattdpearce","3"],
["mikehaddad","mobile","3"],
["Apipwhisperer","FoxNews","3"],
["paulrlanni","mitchellvii","3"],
["paulrlanni","thegatewaypundit","3"],
["TheJakeMassaro","DRUDGE_REPORT","3"],
["TheJakeMassaro","cbsnews","3"],
["SuzanneinLGB","Khanoisseur","2"],
["nia4_trump","mikandynothem","5"],
["PaytonBennett5","JackPosobiec","3"],
["PaytonBennett5","thegatewaypundit","3"],
["AlexTheGreatzz","EW","5"],
["saraewelch1","NewYorker","4"],
["pabl_ohhh","AdamSmith_usa","3"],
["Paidsubscriber","burnaby1953","4"],
["Paidsubscriber","occupydemocrats","4"],
["rdnktk","tonyschwartz","2"],
["NadiaGladysM","Toure","5"],
["Tech_Stuff_Go","washingtonpost","3"],
["hawaiianlove68","tribelaw","2"],
["DerpyPhlllip","DrJenGunter","2"],
["KimbaGross","Mama3Cubs","4"],
["sweetteatime55","WilliamCohan","2"],
["SonofCarnelian","sluggahjells","2"],
["blueinthesouth","MarkHarrisNYC","1"],
["chicagogrrrl","sarahkendzior","3"],
["RemiPerry","CaptainsLog2016","3"],
["NorthernPikeFly","DanRather","4"],
["ElaineLafon","NBCNews","3"],
["ElaineLafon","nbcnews","3"],
["jyester55","KeithOlbermann","4"],
["KPHennosy","tribelaw","3"],
["kikidasu1","BruceBartlett","4"],
["kikidasu1","election","4"],
["philippberner","recode","3"],
["tammy_wesa","Khanoisseur","3"],
["tammy_wesa","washingtonpost","3"],
["LKuehn4","kurteichenwald","4"],
["KatEdmiston","gollum1419_g","3"],
["KatEdmiston","rawstory","3"],
["fhs_PACE","yearbook_falcon","4"],
["GagaDelRey25","EW","5"],
["sciencemilkcow","Joyce_Karam","3"],
["johnobmickel","NPR","3"],
["IntrovertRN1975","JuddLegum","2"],
["PriyankaVakil","BrookingsInst","3"],
["PriyankaVakil","brookings","3"],
["CNNedition","cnn","3"],
["TurnTNBlue","kurteichenwald","4"],
["trumpfnd","funder","3"],
["Wyohawk","DailyCaller","1"],
["querderai","fperez_org","3"],
["DavidPoland","SeanMcElwee","5"],
["ltowsonhester","vivelafra","2"],
["Presley48R","TeamTrumpCO","5"],
["madmatt015","realDonaldTrump","2"],
["John72115John","politico","1"],
["TootiePalmer","funder","3"],
["JHSaunders","funder","3"],
["PaulJAndrew","kurteichenwald","4"],
["heresursign_1","KellyannePolls","3"],
["babysgramma","rtoberl","4"],
["babysgramma","linkis","4"],
["zackola","mattdpearce","3"],
["zackola","mobile","3"],
["FlavioCastroSay","Forbes","3"],
["FlavioCastroSay","forbes","3"],
["burmoll","Anncostanza1","5"],
["NatashaDargan","JoshButler","3"],
["NatashaDargan","mobile","3"],
["JackieMcReath1","LVNancy","4"],
["anobscureartist","EdSkipper","5"],
["nancy73gg","LindaSuhler","3"],
["NoMoreElites","jimlibertarian","3"],
["NoMoreElites","i","3"],
["masonbo","gatewaypundit","3"],
["masonbo","thegatewaypundit","3"],
["KRCSmith62","ThePCJF","4"],
["HMKohnlein","DanRather","4"],
["roqchrisy","LouDobbs","3"],
["trumpfnd","funder","3"],
["angxlthenerd","netw3rk","2"],
["522tim","Poynter","2"],
["Seacretsoc1","ExportedFromMI","3"],
["ramzpaul","Communism_Kills","4"],
["croneclone","davidsirota","3"],
["LaVerneWright13","starfirst","4"],
["LaVerneWright13","rawstory","4"],
["Willie_Jacobsz","greenhousenyt","3"],
["ScorpiusDragon","rstevens","4"],
["sampson_elaine","carlreiner","2"],
["FrankJannuzi","thehill","1"],
["randyshort","realalexjones","2"],
["randyshort","infowars","2"],
["redhead4645","cala_1111","4"],
["redhead4645","truthfeed","4"],
["stanthemanchan","kurteichenwald","3"],
["AkSporting76","Khanoisseur","4"],
["reachout2015B","MagicRoyalty","4"],
["HansAlbright","BernieSanders","3"],
["laughinghyena13","jayrosen_nyu","2"],
["MikeHighley1","Mike_Beacham","3"],
["MikeHighley1","video","3"],
["HASSIA","RadioFreeTom","4"],
["MomoAdalois","NPR","3"],
["IntrovertRN1975","JuddLegum","4"],
["FimusTauri","bbc5live","3"],
["Dbiggs1007Donna","TomthunkitsMind","1"],
["djsandwiches","EW","5"],
["MrShellBlog","CyberHitchhiker","3"],
["MrShellBlog","myfox8","3"],
["lizfitz123","sarahkendzior","3"],
["bobgerbasi","mitchellvii","3"],
["bobgerbasi","thegatewaypundit","3"],
["Reggiebub","mikeallen","4"],
["Politolizer","politics","4"],
["SDPacificBeach","OANN","1"],
["Michell66010778","joshrogin","3"],
["addykateglen","agearan","5"],
["khuja2006","Reuters","3"],
["khuja2006","reuters","3"],
["SharonS72105601","LouDobbs","4"],
["SharonS72105601","theconservativetreehouse","4"],
["dogfriendlydude","SenSanders","4"],
["soozanderson4","MikeBates","4"],
["soozanderson4","businessinsider","4"],
["stilllwithher","JuddLegum","3"],
["stilllwithher","medium","3"],
["Deplorable80210","laurenduca","2"],
["Deplorable80210","cnn","2"],
["djpriller","dayvarelat","3"],
["lsuagain","PSheritaakkloh","1"],
["sublett_pamelia","kurteichenwald","2"],
["Apipwhisperer","FoxNews","3"],
["Apipwhisperer","insider","3"],
["AskMrPickles","kurteichenwald","3"],
["cosmicsource","CollectiveEvol","3"],
["cosmicsource","youtube","3"],
["Traveljunkie213","frankrichny","3"],
["TurnTNBlue","TheDemocrats","4"],
["DocDonDJ","AntTheIcon","4"],
["LindaWestbroo11","seankent","5"],
["hypnocoach183","funder","3"],
["MarianMme16513","sarahkendzior","3"],
["cyber_gr1zzly","buzz","1"],
["cyber_gr1zzly","newsweek","1"],
["going2left","NancyErvin4","4"],
["surfgranma","SwissTriple_M","3"],
["KeenaGreene","HuffPostPol","1"],
["KeenaGreene","huffingtonpost","1"],
["daxis_gaming","RamonaCallender","3"],
["soytome","soychilecl","3"],
["soytome","soychile","3"],
["GayRainey1","itsbrycegreene","3"],
["JCupcakeee","EW","5"],
["soycalama","soychilecl","3"],
["soycalama","soychile","3"],
["soyvaldiviacl","soychilecl","3"],
["soyvaldiviacl","soychile","3"],
["soyvalparaiso","soychilecl","3"],
["soyvalparaiso","soychile","3"],
["Bilmartighan","Nate_Cohn","3"],
["soyarica","soychilecl","3"],
["soyarica","soychile","3"],
["soycopiapo","soychilecl","3"],
["soycopiapo","soychile","3"],
["soytalcahuano","soychilecl","3"],
["soytalcahuano","soychile","3"],
["soyquillota","soychilecl","3"],
["soyquillota","soychile","3"],
["soyiquique","soychilecl","3"],
["soyiquique","soychile","3"],
["soysanantonio","soychilecl","3"],
["soysanantonio","soychile","3"],
["soypuertomontt","soychilecl","3"],
["soypuertomontt","soychile","3"],
["soyconcepcion","soychilecl","3"],
["soyconcepcion","soychile","3"],
["soyosorno","soychilecl","3"],
["soyosorno","soychile","3"],
["soychillan","soychilecl","3"],
["soychillan","soychile","3"],
["soychiloe","soychilecl","3"],
["soychiloe","soychile","3"],
["soyarauco","soychilecl","3"],
["soyarauco","soychile","3"],
["soyantofagasta","soychilecl","3"],
["soyantofagasta","soychile","3"],
["NonaHarman","HamiltonElector","2"],
["corgiman3","JohnWDean","1"],
["AnitaBalch","actionnetwork","4"],
["BrianAnthonyMc","DanRather","4"],
["rob_fulwell","nebraskamlc","3"],
["rob_fulwell","cnn","3"],
["WhosFibbing","LouDobbs","1"],
["NJRUA","kurteichenwald","4"],
["BritBrat2985","realDonaldTrump","1"],
["maxey_jaelen","EW","5"],
["carolreinoso","laurenduca","2"],
["IvanPere4","YouTube","3"],
["IvanPere4","linkis","3"],
["MarthaLivingmar","HTMLFormatNews","2"],
["MarthaLivingmar","southjerseymechanic","2"],
["52fairway","tribelaw","3"],
["TinaDuryea","TheDailyEdge","2"],
["beyoncescurls","AlyssaColeLit","2"],
["savingfilm","sarahkendzior","5"],
["nursiegal75","CaptainsLog2016","2"],
["MaryTrinetti","funder","3"],
["Mcschweety","JoyceSt14976939","3"],
["Greg2412","JackPosobiec","2"],
["KAMIAN","theslot","4"],
["PSleepyhead","JackPosobiec","4"],
["IntrovertRN1975","JuddLegum","2"],
["Tamaraciocci","FemaleOutrage","3"],
["ccarter84","StephenAtHome","2"],
["lorac328","TheDailyEdge","1"],
["caroljdavy","EllenMorris1222","3"],
["KathrynGadson","alternet","3"],
["KathrynGadson","alternet","3"],
["librarising3","EricBoehlert","3"],
["CBurtonAP","JennaFryer","4"],
["cbrbwb","2ALAW","4"],
["A_Fellowes","kurteichenwald","3"],
["WemittPatrick","Ramsteel007","2"],
["eric_walters84","MGatMES","4"],
["BrownSarahM","netw3rk","2"],
["Read4News","sluggahjells","2"],
["_dsalmon","Steven_Strauss","3"],
["GettinMyWay","c0nvey","3"],
["GettinMyWay","linkis","3"],
["kaseynicolex3","TheDailyEdge","4"],
["eprenen","liamstack","3"],
["GarronRobert","WayneDupreeShow","5"],
["_doitfornel","GaziKodzo","3"],
["News4Newsman","YourAnonCentral","3"],
["SingleandSane1","sluggahjells","2"],
["HelenEckard","tribelaw","2"],
["MikeHighley1","Mike_Beacham","3"],
["MikeHighley1","video","3"],
["birdistheherd","260a105fb5c7455","4"],
["AlexJHarp","katewillett","4"],
["AmberAufmerksam","leahmcelrath","3"],
["dhrxsol1234","JrcheneyJohn","3"],
["DaveDavidmaud11","TearsInHeaven09","2"],
["purplecait","EW","5"],
["MuseLotus","JoyAnnReid","3"],
["Quietness_Trust","ActionTime","3"],
["prognewssource","occupydemocrats","4"],
["mannreagan","surfermom77","2"],
["Sexy_Deplorable","_peripherals","1"],
["rdraaf","NewYorker","4"],
["theknottybride","EvrydayFeminism","4"],
["theknottybride","everydayfeminism","4"],
["joe_jim_regens","senrobportman","4"],
["beccamarshmallo","AlyssaColeLit","2"],
["iggumz","FreddyLawrence1","3"],
["gobluecoop","kurteichenwald","4"],
["kschoon4","misscherryjones","3"],
["taterpie","EW","5"],
["TurnTNBlue","tomtomorrow","2"],
["UcesarCesar","washingtonpost","2"],
["UcesarCesar","washingtonpost","2"],
["Run_IsHere","amjoyshow","2"],
["wybetter","thedailybeast","1"],
["wybetter","thedailybeast","1"],
["IntrovertRN1975","JuddLegum","3"],
["IntrovertRN1975","medium","3"],
["packergal","feliciaw5853","2"],
["grandpooba5440","Steven_Strauss","3"],
["blueskymountain","BonhoefferLives","1"],
["ihaveaminutemm","starfirst","3"],
["ihaveaminutemm","dailynewsbin","3"],
["dogmotto","Joyce_Karam","3"],
["KevinARNG11BVet","eligit","3"],
["ProfCAnderson","AlyssaColeLit","2"],
["kmh7","fightfor15","3"],
["Dirigo1820","kurteichenwald","4"],
["mauree_b","JuddLegum","3"],
["mauree_b","medium","3"],
["KAMIAN","theslot","3"],
["citizenjo","tribelaw","2"],
["nellss20","TeenVogue","2"],
["nellss20","teenvogue","2"],
["anthonycasey2","infowars","3"],
["wtfismikeplayin","birbigs","2"],
["MMaria03146111","LadyDoc4Trump","3"],
["Jennuendoh","OhNoSheTwitnt","1"],
["honorverity","Gundlefinger16","5"],
["RachelK1967","funder","3"],
["sf49ersfan5249","LouDobbs","1"],
["AdvocatAmy1","howiewolf","3"],
["jyester55","LawyerRogelio","1"],
["statefarm2005","MSNBC","4"],
["gbeckyhudson","bourgeoisalien","1"],
["chrissmax","facebook","5"],
["simi_kc88","USARedOrchestra","3"],
["Hope_NoelB","EW","5"],
["PatPatojson","Corporatocrazy","1"],
["BigBobGardner","nytimes","5"],
["AmesCG","JohnFPfaff","3"],
["DebbieW36246900","TeeTweetsHere","1"],
["DebbieW36246900","huffingtonpost","1"],
["barney_cannon","TeaPainUSA","3"],
["SscottSsmith84","DrEstella","3"],
["Hot_Techie_News","hottechienews","2"],
["PaulJon54388869","swin24","4"],
["PaulJon54388869","thedailybeast","4"],
["bristow72","kellwoohoo","3"],
["barSwilson","linkis","3"],
["CraigSymons","seanmdav","4"],
["Twinmommie09","change","2"],
["TheDailyDigest","newfoundland","3"],
["Celebrilizer","celebs","3"],
["maegabby49","JuddLegum","2"],
["maegabby49","medium","2"],
["Maxzen2004","Vote_American","3"],
["TRUMPIS4US","JackPosobiec","2"],
["steveg1425","WalshFreedom","5"],
["iamjoemeyer","BettyBowers","3"],
["joh53293471","MissPride2u","4"],
["burberryant","jring383","4"],
["IntrovertRN1975","JuddLegum","4"],
["IntrovertRN1975","medium","4"],
["Paidsubscriber","netw3rk","2"],
["WilliamSnowHume","yugvaniworld","2"],
["WilliamSnowHume","cnn","2"],
["Sheilas11","Stevenwhirsch99","3"],
["1775reaper","France4Hillary","3"],
["sudnapo","vivelafra","2"],
["stanthemanchan","saladinahmed","1"],
["Cantuono","EW","5"],
["gabbysherrill","realDonaldTrump","5"],
["Panther_NoTiger","NAVolatPropriis","3"],
["mapnotes","jerryaldeeni","3"],
["mapnotes","nytimes","3"],
["danfelix82","Lglwry","1"],
["writeshawn","glennspizza","3"],
["RhapsodysBIues","funder","3"],
["springerthings","misscherryjones","3"],
["carnifexia","funder","1"],
["whinknee","Salon","1"],
["whinknee","salon","1"],
["PercyChekov","sarahkendzior","3"],
["MikaelaSkyeSays","kurteichenwald","2"],
["Betsyg6Gervasi","USARedOrchestra","3"],
["MissUSA56","vivelafra","2"],
["JonSteege","JuddLegum","2"],
["JonSteege","medium","2"],
["Jrjaja1","DENVERSMKC","3"],
["Neethz426","AlecBaldwin","5"],
["carolyn_pearl","SenSanders","4"],
["OnceUpo00786525","npr","3"],
["OnceUpo00786525","npr","3"],
["bluebonnetbunny","DMansini","4"],
["bluebonnetbunny","thedailybeast","4"],
["Tull007","JuddLegum","3"],
["Tull007","medium","3"],
["2figures2","V_of_Europe","3"],
["2figures2","thegatewaypundit","3"],
["JoinerMari","funder","3"],