-
Notifications
You must be signed in to change notification settings - Fork 4
/
benchmark.json
2288 lines (2288 loc) · 135 KB
/
benchmark.json
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
[{ "handle": "aamir_khan", "tweetid": "774555232957263872" },
{ "handle": "aamir_khan", "tweetid": "775667035196063744" },
{ "handle": "aamir_khan", "tweetid": "775668065564590080" },
{ "handle": "aamir_khan", "tweetid": "780628521089511424" },
{ "handle": "aamir_khan", "tweetid": "785748043018539008" },
{ "handle": "aamir_khan", "tweetid": "788770962158317568" },
{ "handle": "aamir_khan", "tweetid": "788798450322251776" },
{ "handle": "aamir_khan", "tweetid": "788975597145907200" },
{ "handle": "aamir_khan", "tweetid": "789825454383464448" },
{ "handle": "aamir_khan", "tweetid": "790057230808801280" },
{ "handle": "aamir_khan", "tweetid": "790555289976180736" },
{ "handle": "aamir_khan", "tweetid": "792396167854317572" },
{ "handle": "aamir_khan", "tweetid": "792396296820850688" },
{ "handle": "aamir_khan", "tweetid": "792617983893835776" },
{ "handle": "aamir_khan", "tweetid": "794196235020304384" },
{ "handle": "aamir_khan", "tweetid": "795479034859655169" },
{ "handle": "aamir_khan", "tweetid": "796677691718045697" },
{ "handle": "aamir_khan", "tweetid": "797329340988014592" },
{ "handle": "aamir_khan", "tweetid": "798085369640009728" },
{ "handle": "aamir_khan", "tweetid": "799567984071217152" },
{ "handle": "actuallynph", "tweetid": "784015826055729152" },
{ "handle": "actuallynph", "tweetid": "786014430073016320" },
{ "handle": "actuallynph", "tweetid": "786021238091067392" },
{ "handle": "actuallynph", "tweetid": "786029756928004096" },
{ "handle": "actuallynph", "tweetid": "786626097907662849" },
{ "handle": "actuallynph", "tweetid": "786986312473673729" },
{ "handle": "actuallynph", "tweetid": "787465498007052288" },
{ "handle": "actuallynph", "tweetid": "788060731308736512" },
{ "handle": "actuallynph", "tweetid": "789133320730869764" },
{ "handle": "actuallynph", "tweetid": "789150162044260352" },
{ "handle": "actuallynph", "tweetid": "792532668860817410" },
{ "handle": "actuallynph", "tweetid": "793131808598679552" },
{ "handle": "actuallynph", "tweetid": "794210070737264641" },
{ "handle": "actuallynph", "tweetid": "794743700660322304" },
{ "handle": "actuallynph", "tweetid": "795962380895289344" },
{ "handle": "actuallynph", "tweetid": "797498869286404096" },
{ "handle": "actuallynph", "tweetid": "798189676544794624" },
{ "handle": "actuallynph", "tweetid": "798574112494919681" },
{ "handle": "actuallynph", "tweetid": "798927007128125440" },
{ "handle": "actuallynph", "tweetid": "799308013861474304" },
{ "handle": "adele", "tweetid": "712188399516565505" },
{ "handle": "adele", "tweetid": "712388070021197824" },
{ "handle": "adele", "tweetid": "713505505537310720" },
{ "handle": "adele", "tweetid": "715246134185345025" },
{ "handle": "adele", "tweetid": "723167763309711360" },
{ "handle": "adele", "tweetid": "727241650125307905" },
{ "handle": "adele", "tweetid": "731896153734819840" },
{ "handle": "adele", "tweetid": "732181856234409984" },
{ "handle": "adele", "tweetid": "734077030510297089" },
{ "handle": "adele", "tweetid": "750103242093240320" },
{ "handle": "adele", "tweetid": "760222116109283328" },
{ "handle": "adele", "tweetid": "765322170780250113" },
{ "handle": "adele", "tweetid": "766043655341826050" },
{ "handle": "adele", "tweetid": "766277344516538369" },
{ "handle": "adele", "tweetid": "776073871724281856" },
{ "handle": "adele", "tweetid": "784857642133024768" },
{ "handle": "adele", "tweetid": "793132659866083328" },
{ "handle": "adele", "tweetid": "795790489672880129" },
{ "handle": "adele", "tweetid": "798224060668854272" },
{ "handle": "adele", "tweetid": "799311340150149120" },
{ "handle": "agnezmo", "tweetid": "756459738854850565" },
{ "handle": "agnezmo", "tweetid": "756470588881776640" },
{ "handle": "agnezmo", "tweetid": "756785803984932864" },
{ "handle": "agnezmo", "tweetid": "757482675439476736" },
{ "handle": "agnezmo", "tweetid": "757503766270738433" },
{ "handle": "agnezmo", "tweetid": "757950714962386944" },
{ "handle": "agnezmo", "tweetid": "759777608909271042" },
{ "handle": "agnezmo", "tweetid": "763572998490034177" },
{ "handle": "agnezmo", "tweetid": "764362827394125824" },
{ "handle": "agnezmo", "tweetid": "765966539925225473" },
{ "handle": "agnezmo", "tweetid": "766146446542327812" },
{ "handle": "agnezmo", "tweetid": "766180945095307264" },
{ "handle": "agnezmo", "tweetid": "766265080493150208" },
{ "handle": "agnezmo", "tweetid": "766485786833268736" },
{ "handle": "agnezmo", "tweetid": "766485940827070464" },
{ "handle": "agnezmo", "tweetid": "766542765245161472" },
{ "handle": "agnezmo", "tweetid": "771374769056776192" },
{ "handle": "agnezmo", "tweetid": "790953166799974400" },
{ "handle": "agnezmo", "tweetid": "799858510162866176" },
{ "handle": "agnezmo", "tweetid": "799911477020749825" },
{ "handle": "akshaykumar", "tweetid": "791203016393170944" },
{ "handle": "akshaykumar", "tweetid": "791319199801020417" },
{ "handle": "akshaykumar", "tweetid": "791666849461235717" },
{ "handle": "akshaykumar", "tweetid": "791907445354397699" },
{ "handle": "akshaykumar", "tweetid": "792053773875175424" },
{ "handle": "akshaykumar", "tweetid": "792613101346717696" },
{ "handle": "akshaykumar", "tweetid": "793045491508469760" },
{ "handle": "akshaykumar", "tweetid": "794229550519619584" },
{ "handle": "akshaykumar", "tweetid": "794230044549857280" },
{ "handle": "akshaykumar", "tweetid": "794806829201129472" },
{ "handle": "akshaykumar", "tweetid": "795122286495993856" },
{ "handle": "akshaykumar", "tweetid": "795142157225037824" },
{ "handle": "akshaykumar", "tweetid": "795232540999225344" },
{ "handle": "akshaykumar", "tweetid": "795909952464224256" },
{ "handle": "akshaykumar", "tweetid": "796694062040514560" },
{ "handle": "akshaykumar", "tweetid": "797736263793147904" },
{ "handle": "akshaykumar", "tweetid": "798042235325403136" },
{ "handle": "akshaykumar", "tweetid": "798529652117610496" },
{ "handle": "akshaykumar", "tweetid": "798865766141612032" },
{ "handle": "akshaykumar", "tweetid": "799897073906839552" },
{ "handle": "akshaykumar", "tweetid": "800300258458669056" },
{ "handle": "akshaykumar", "tweetid": "800320019838234624" },
{ "handle": "alejandrosanz", "tweetid": "799021243261480964" },
{ "handle": "alejandrosanz", "tweetid": "799026577287905280" },
{ "handle": "alejandrosanz", "tweetid": "799027607153102850" },
{ "handle": "alejandrosanz", "tweetid": "799028415814914054" },
{ "handle": "alejandrosanz", "tweetid": "799030491416526848" },
{ "handle": "alejandrosanz", "tweetid": "799033324010434562" },
{ "handle": "alejandrosanz", "tweetid": "799033779822198784" },
{ "handle": "alejandrosanz", "tweetid": "799035128974606340" },
{ "handle": "alejandrosanz", "tweetid": "799048731047948289" },
{ "handle": "alejandrosanz", "tweetid": "799049428074196992" },
{ "handle": "alejandrosanz", "tweetid": "799275855138713600" },
{ "handle": "alejandrosanz", "tweetid": "799335458371207173" },
{ "handle": "alejandrosanz", "tweetid": "799336559778492417" },
{ "handle": "alejandrosanz", "tweetid": "799369709384826880" },
{ "handle": "alejandrosanz", "tweetid": "799778511456182272" },
{ "handle": "alejandrosanz", "tweetid": "799910633147797504" },
{ "handle": "alejandrosanz", "tweetid": "799911547506196480" },
{ "handle": "alejandrosanz", "tweetid": "799985536551231488" },
{ "handle": "alejandrosanz", "tweetid": "799985711600517121" },
{ "handle": "alejandrosanz", "tweetid": "800075540237615105" },
{ "handle": "alejandrosanz", "tweetid": "800319976204861441" },
{ "handle": "alejandrosanz", "tweetid": "800321427362709504" },
{ "handle": "aliciakeys", "tweetid": "799683105107808256" },
{ "handle": "aliciakeys", "tweetid": "799684362891509760" },
{ "handle": "aliciakeys", "tweetid": "799685118163984386" },
{ "handle": "aliciakeys", "tweetid": "799686117125521408" },
{ "handle": "aliciakeys", "tweetid": "799689607294107648" },
{ "handle": "aliciakeys", "tweetid": "799689630648037376" },
{ "handle": "aliciakeys", "tweetid": "799689666546937856" },
{ "handle": "aliciakeys", "tweetid": "799689699627585541" },
{ "handle": "aliciakeys", "tweetid": "799689913671131136" },
{ "handle": "aliciakeys", "tweetid": "799689936194666496" },
{ "handle": "aliciakeys", "tweetid": "799716244924420096" },
{ "handle": "aliciakeys", "tweetid": "799734132347641856" },
{ "handle": "aliciakeys", "tweetid": "799741768400941056" },
{ "handle": "aliciakeys", "tweetid": "799742992592605184" },
{ "handle": "aliciakeys", "tweetid": "799744347306659840" },
{ "handle": "aliciakeys", "tweetid": "799747688631631873" },
{ "handle": "aliciakeys", "tweetid": "799749115584401408" },
{ "handle": "aliciakeys", "tweetid": "800009229733986305" },
{ "handle": "aliciakeys", "tweetid": "800044491499454466" },
{ "handle": "aliciakeys", "tweetid": "800049722824110080" },
{ "handle": "aliciakeys", "tweetid": "800353017929179136" },
{ "handle": "aliciakeys", "tweetid": "800383463253831680" },
{ "handle": "aliciakeys", "tweetid": "800420959828123648" },
{ "handle": "aplusk", "tweetid": "796838120201162752" },
{ "handle": "aplusk", "tweetid": "796883486925688832" },
{ "handle": "aplusk", "tweetid": "797220458504462337" },
{ "handle": "aplusk", "tweetid": "797221727717629952" },
{ "handle": "aplusk", "tweetid": "798231961747656704" },
{ "handle": "aplusk", "tweetid": "798582949151010816" },
{ "handle": "aplusk", "tweetid": "798633378996068352" },
{ "handle": "aplusk", "tweetid": "798698029729521664" },
{ "handle": "aplusk", "tweetid": "798698282495000576" },
{ "handle": "aplusk", "tweetid": "798701870969548800" },
{ "handle": "aplusk", "tweetid": "798976936626139136" },
{ "handle": "aplusk", "tweetid": "799038977206456320" },
{ "handle": "aplusk", "tweetid": "799064354322714624" },
{ "handle": "aplusk", "tweetid": "799087828013461504" },
{ "handle": "aplusk", "tweetid": "799494627980181504" },
{ "handle": "aplusk", "tweetid": "799494697836249088" },
{ "handle": "aplusk", "tweetid": "799495345533255681" },
{ "handle": "aplusk", "tweetid": "799496790869495808" },
{ "handle": "aplusk", "tweetid": "799498402061053952" },
{ "handle": "aplusk", "tweetid": "799501268523827200" },
{ "handle": "arianagrande", "tweetid": "793573130744631297" },
{ "handle": "arianagrande", "tweetid": "796924374511075328" },
{ "handle": "arianagrande", "tweetid": "797324432117116930" },
{ "handle": "arianagrande", "tweetid": "797325940481064961" },
{ "handle": "arianagrande", "tweetid": "797612268158468096" },
{ "handle": "arianagrande", "tweetid": "797683353180782592" },
{ "handle": "arianagrande", "tweetid": "797701753667883008" },
{ "handle": "arianagrande", "tweetid": "797968581312950272" },
{ "handle": "arianagrande", "tweetid": "797970905590743040" },
{ "handle": "arianagrande", "tweetid": "797970947802218496" },
{ "handle": "arianagrande", "tweetid": "797971286982918144" },
{ "handle": "arianagrande", "tweetid": "797972013591576576" },
{ "handle": "arianagrande", "tweetid": "797977849168695296" },
{ "handle": "arianagrande", "tweetid": "798071015599280128" },
{ "handle": "arianagrande", "tweetid": "799083324656320512" },
{ "handle": "arianagrande", "tweetid": "799489066274320384" },
{ "handle": "arianagrande", "tweetid": "799723290818265089" },
{ "handle": "arianagrande", "tweetid": "799726412408074241" },
{ "handle": "arianagrande", "tweetid": "799744667881390080" },
{ "handle": "arianagrande", "tweetid": "800173164042952704" },
{ "handle": "arianagrande", "tweetid": "800195675916943361" },
{ "handle": "avrillavigne", "tweetid": "787695278484783105" },
{ "handle": "avrillavigne", "tweetid": "789233513107251200" },
{ "handle": "avrillavigne", "tweetid": "791378381535375360" },
{ "handle": "avrillavigne", "tweetid": "791379374796894208" },
{ "handle": "avrillavigne", "tweetid": "791728987856855041" },
{ "handle": "avrillavigne", "tweetid": "793195721046515713" },
{ "handle": "avrillavigne", "tweetid": "793208965756755968" },
{ "handle": "avrillavigne", "tweetid": "793505040233181184" },
{ "handle": "avrillavigne", "tweetid": "794286428339453952" },
{ "handle": "avrillavigne", "tweetid": "794287311852896256" },
{ "handle": "avrillavigne", "tweetid": "796036916214984704" },
{ "handle": "avrillavigne", "tweetid": "796204983540715521" },
{ "handle": "avrillavigne", "tweetid": "796486589190914048" },
{ "handle": "avrillavigne", "tweetid": "796844944816226304" },
{ "handle": "avrillavigne", "tweetid": "797157070797737984" },
{ "handle": "avrillavigne", "tweetid": "797171680892293120" },
{ "handle": "avrillavigne", "tweetid": "797586825577644032" },
{ "handle": "avrillavigne", "tweetid": "798378590895099904" },
{ "handle": "avrillavigne", "tweetid": "798392554639265793" },
{ "handle": "avrillavigne", "tweetid": "799321896605155328" },
{ "handle": "barackobama", "tweetid": "793135531471233024" },
{ "handle": "barackobama", "tweetid": "793152790881112064" },
{ "handle": "barackobama", "tweetid": "793183793993519104" },
{ "handle": "barackobama", "tweetid": "793213251077103617" },
{ "handle": "barackobama", "tweetid": "793215353656487936" },
{ "handle": "barackobama", "tweetid": "793481260370792449" },
{ "handle": "barackobama", "tweetid": "793511799643451392" },
{ "handle": "barackobama", "tweetid": "793547555204280320" },
{ "handle": "barackobama", "tweetid": "793579933201231880" },
{ "handle": "barackobama", "tweetid": "793607477057228800" },
{ "handle": "barackobama", "tweetid": "793833434850349056" },
{ "handle": "barackobama", "tweetid": "793881038862757888" },
{ "handle": "barackobama", "tweetid": "794228145310154752" },
{ "handle": "barackobama", "tweetid": "794255026570993664" },
{ "handle": "barackobama", "tweetid": "794283659079520256" },
{ "handle": "barackobama", "tweetid": "794572967258640384" },
{ "handle": "barackobama", "tweetid": "794606453197774849" },
{ "handle": "barackobama", "tweetid": "794664579834015745" },
{ "handle": "barackobama", "tweetid": "794926969829920768" },
{ "handle": "barackobama", "tweetid": "794940142867902465" },
{ "handle": "bbcbreaking", "tweetid": "798821424370548736" },
{ "handle": "bbcbreaking", "tweetid": "798890014595842052" },
{ "handle": "bbcbreaking", "tweetid": "799253229162795008" },
{ "handle": "bbcbreaking", "tweetid": "799254916837634048" },
{ "handle": "bbcbreaking", "tweetid": "799266282369470464" },
{ "handle": "bbcbreaking", "tweetid": "799297265730875392" },
{ "handle": "bbcbreaking", "tweetid": "799301573335810048" },
{ "handle": "bbcbreaking", "tweetid": "799334903284264960" },
{ "handle": "bbcbreaking", "tweetid": "799369880378085376" },
{ "handle": "bbcbreaking", "tweetid": "799494823732453376" },
{ "handle": "bbcbreaking", "tweetid": "799495454987796480" },
{ "handle": "bbcbreaking", "tweetid": "799537719743565824" },
{ "handle": "bbcbreaking", "tweetid": "799575083106836480" },
{ "handle": "bbcbreaking", "tweetid": "799583326206042112" },
{ "handle": "bbcbreaking", "tweetid": "799588322444091392" },
{ "handle": "bbcbreaking", "tweetid": "799598157122469892" },
{ "handle": "bbcbreaking", "tweetid": "799634721487671296" },
{ "handle": "bbcbreaking", "tweetid": "799724570978746373" },
{ "handle": "bbcbreaking", "tweetid": "800014280749961216" },
{ "handle": "bbcbreaking", "tweetid": "800161009512095744" },
{ "handle": "bbcbreaking", "tweetid": "800255397131001857" },
{ "handle": "bbcbreaking", "tweetid": "800275115749490689" },
{ "handle": "bbcbreaking", "tweetid": "800290527769923584" },
{ "handle": "bbcbreaking", "tweetid": "800316845467271168" },
{ "handle": "bbcbreaking", "tweetid": "800400457160159232" },
{ "handle": "bbcbreaking", "tweetid": "800428770276544516" },
{ "handle": "bbcworld", "tweetid": "800084540572237824" },
{ "handle": "bbcworld", "tweetid": "800102099082166273" },
{ "handle": "bbcworld", "tweetid": "800106613474398208" },
{ "handle": "bbcworld", "tweetid": "800110589028597760" },
{ "handle": "bbcworld", "tweetid": "800130438949801985" },
{ "handle": "bbcworld", "tweetid": "800131572590661632" },
{ "handle": "bbcworld", "tweetid": "800132715576172544" },
{ "handle": "bbcworld", "tweetid": "800133823291760640" },
{ "handle": "bbcworld", "tweetid": "800134956898979840" },
{ "handle": "bbcworld", "tweetid": "800134957125382144" },
{ "handle": "bbcworld", "tweetid": "800135514762465281" },
{ "handle": "bbcworld", "tweetid": "800141206546042881" },
{ "handle": "bbcworld", "tweetid": "800152563911770113" },
{ "handle": "bbcworld", "tweetid": "800162149389758465" },
{ "handle": "bbcworld", "tweetid": "800170082932359168" },
{ "handle": "bbcworld", "tweetid": "800182540749389824" },
{ "handle": "bbcworld", "tweetid": "800201262398509056" },
{ "handle": "bbcworld", "tweetid": "800223326295629824" },
{ "handle": "bbcworld", "tweetid": "800224484531675137" },
{ "handle": "bbcworld", "tweetid": "800230102684438528" },
{ "handle": "bbcworld", "tweetid": "800242019679502336" },
{ "handle": "bbcworld", "tweetid": "800255022424539136" },
{ "handle": "bbcworld", "tweetid": "800261293013803008" },
{ "handle": "bbcworld", "tweetid": "800264673677496320" },
{ "handle": "bbcworld", "tweetid": "800275218644267008" },
{ "handle": "bbcworld", "tweetid": "800297145316311040" },
{ "handle": "bbcworld", "tweetid": "800308725198229504" },
{ "handle": "bbcworld", "tweetid": "800315265359740928" },
{ "handle": "bbcworld", "tweetid": "800317191195332608" },
{ "handle": "bbcworld", "tweetid": "800347559646625792" },
{ "handle": "bbcworld", "tweetid": "800348163324395520" },
{ "handle": "bbcworld", "tweetid": "800359455527419904" },
{ "handle": "bbcworld", "tweetid": "800360725667545088" },
{ "handle": "bbcworld", "tweetid": "800382358067286016" },
{ "handle": "bbcworld", "tweetid": "800382576099819520" },
{ "handle": "bbcworld", "tweetid": "800385443024039937" },
{ "handle": "bbcworld", "tweetid": "800393919276216320" },
{ "handle": "bbcworld", "tweetid": "800418478066909184" },
{ "handle": "bbcworld", "tweetid": "800428620342706176" },
{ "handle": "beingsalmankhan", "tweetid": "792813256813449218" },
{ "handle": "beingsalmankhan", "tweetid": "793872536446590976" },
{ "handle": "beingsalmankhan", "tweetid": "793872752688164864" },
{ "handle": "beingsalmankhan", "tweetid": "793877164621983744" },
{ "handle": "beingsalmankhan", "tweetid": "793879935983165440" },
{ "handle": "beingsalmankhan", "tweetid": "794230595475951617" },
{ "handle": "beingsalmankhan", "tweetid": "794832387616153600" },
{ "handle": "beingsalmankhan", "tweetid": "795130080431214592" },
{ "handle": "beingsalmankhan", "tweetid": "797071075611852801" },
{ "handle": "beingsalmankhan", "tweetid": "797347751067602944" },
{ "handle": "beingsalmankhan", "tweetid": "797498817134424064" },
{ "handle": "beingsalmankhan", "tweetid": "798151238026043393" },
{ "handle": "beingsalmankhan", "tweetid": "798156602448572421" },
{ "handle": "beingsalmankhan", "tweetid": "798161406105223168" },
{ "handle": "beingsalmankhan", "tweetid": "798166295824855040" },
{ "handle": "beingsalmankhan", "tweetid": "798170859307307009" },
{ "handle": "beingsalmankhan", "tweetid": "798177061420421121" },
{ "handle": "beingsalmankhan", "tweetid": "798181408388677633" },
{ "handle": "beingsalmankhan", "tweetid": "798204530621939712" },
{ "handle": "beingsalmankhan", "tweetid": "798208873198977027" },
{ "handle": "beyonce", "tweetid": "187902028217987072" },
{ "handle": "beyonce", "tweetid": "235870359029706752" },
{ "handle": "beyonce", "tweetid": "235894234245394433" },
{ "handle": "beyonce", "tweetid": "237208467419578368" },
{ "handle": "beyonce", "tweetid": "341358625639526401" },
{ "handle": "beyonce", "tweetid": "358331764902592512" },
{ "handle": "beyonce", "tweetid": "369486010280706048" },
{ "handle": "beyonce", "tweetid": "369557310412029952" },
{ "handle": "beyonce", "tweetid": "724053681608527872" },
{ "handle": "billgates", "tweetid": "791419999474810880" },
{ "handle": "billgates", "tweetid": "791637829155774464" },
{ "handle": "billgates", "tweetid": "792381124148391936" },
{ "handle": "billgates", "tweetid": "792761350808301569" },
{ "handle": "billgates", "tweetid": "793093923363233792" },
{ "handle": "billgates", "tweetid": "793177741130543105" },
{ "handle": "billgates", "tweetid": "793536842155122688" },
{ "handle": "billgates", "tweetid": "793900654293053440" },
{ "handle": "billgates", "tweetid": "794556430988832769" },
{ "handle": "billgates", "tweetid": "795301324275453954" },
{ "handle": "billgates", "tweetid": "795752945690275840" },
{ "handle": "billgates", "tweetid": "797853646474145792" },
{ "handle": "billgates", "tweetid": "798270157361541120" },
{ "handle": "billgates", "tweetid": "798552148942454784" },
{ "handle": "billgates", "tweetid": "798625695425380352" },
{ "handle": "billgates", "tweetid": "798987394838097922" },
{ "handle": "billgates", "tweetid": "799270244799811588" },
{ "handle": "billgates", "tweetid": "799410024061829120" },
{ "handle": "billgates", "tweetid": "799742995125993473" },
{ "handle": "billgates", "tweetid": "800010105378902016" },
{ "handle": "blakeshelton", "tweetid": "791071346994192386" },
{ "handle": "blakeshelton", "tweetid": "791319561039740928" },
{ "handle": "blakeshelton", "tweetid": "793091936689221633" },
{ "handle": "blakeshelton", "tweetid": "793161708491640832" },
{ "handle": "blakeshelton", "tweetid": "793244956118966273" },
{ "handle": "blakeshelton", "tweetid": "795266566464176128" },
{ "handle": "blakeshelton", "tweetid": "795682575956267009" },
{ "handle": "blakeshelton", "tweetid": "795799884590944260" },
{ "handle": "blakeshelton", "tweetid": "795799963447992320" },
{ "handle": "blakeshelton", "tweetid": "795800038320570368" },
{ "handle": "blakeshelton", "tweetid": "795800122923843584" },
{ "handle": "blakeshelton", "tweetid": "795800209246814208" },
{ "handle": "blakeshelton", "tweetid": "797658859871604736" },
{ "handle": "blakeshelton", "tweetid": "798330888970903553" },
{ "handle": "blakeshelton", "tweetid": "798332137783132160" },
{ "handle": "blakeshelton", "tweetid": "798345356538945536" },
{ "handle": "blakeshelton", "tweetid": "798352486876717056" },
{ "handle": "blakeshelton", "tweetid": "798574457723858944" },
{ "handle": "blakeshelton", "tweetid": "798622515316727808" },
{ "handle": "blakeshelton", "tweetid": "798951772798799872" },
{ "handle": "britneyspears", "tweetid": "769181111989571613" },
{ "handle": "britneyspears", "tweetid": "793662431415242753" },
{ "handle": "britneyspears", "tweetid": "793893670122512385" },
{ "handle": "britneyspears", "tweetid": "794274910726070272" },
{ "handle": "britneyspears", "tweetid": "794985342579245056" },
{ "handle": "britneyspears", "tweetid": "795442864247291904" },
{ "handle": "britneyspears", "tweetid": "797622482983206912" },
{ "handle": "britneyspears", "tweetid": "798704268203044864" },
{ "handle": "britneyspears", "tweetid": "798745153653485568" },
{ "handle": "britneyspears", "tweetid": "799358539055538176" },
{ "handle": "britneyspears", "tweetid": "799445052585979904" },
{ "handle": "britneyspears", "tweetid": "799479635339669504" },
{ "handle": "britneyspears", "tweetid": "799524246351384576" },
{ "handle": "britneyspears", "tweetid": "799529992157822978" },
{ "handle": "britneyspears", "tweetid": "799531294648651776" },
{ "handle": "britneyspears", "tweetid": "799667022925701120" },
{ "handle": "britneyspears", "tweetid": "799700762645307392" },
{ "handle": "britneyspears", "tweetid": "799753609458028544" },
{ "handle": "britneyspears", "tweetid": "799812952152887296" },
{ "handle": "britneyspears", "tweetid": "800067488302055424" },
{ "handle": "britneyspears", "tweetid": "800074483537055744" },
{ "handle": "brunomars", "tweetid": "799331276272517120" },
{ "handle": "brunomars", "tweetid": "799332038977302528" },
{ "handle": "brunomars", "tweetid": "799332312198553601" },
{ "handle": "brunomars", "tweetid": "799332483246346240" },
{ "handle": "brunomars", "tweetid": "799333100807327744" },
{ "handle": "brunomars", "tweetid": "799333714312372224" },
{ "handle": "brunomars", "tweetid": "799334350697340929" },
{ "handle": "brunomars", "tweetid": "799334616066760704" },
{ "handle": "brunomars", "tweetid": "799335101809102848" },
{ "handle": "brunomars", "tweetid": "799335716022910976" },
{ "handle": "brunomars", "tweetid": "799336024212008960" },
{ "handle": "brunomars", "tweetid": "799336674140393472" },
{ "handle": "brunomars", "tweetid": "799337755264200704" },
{ "handle": "brunomars", "tweetid": "799337913519513600" },
{ "handle": "brunomars", "tweetid": "799472039404810241" },
{ "handle": "brunomars", "tweetid": "799858658821611521" },
{ "handle": "brunomars", "tweetid": "799875194818940928" },
{ "handle": "brunomars", "tweetid": "800004762401849344" },
{ "handle": "brunomars", "tweetid": "800028976588566528" },
{ "handle": "brunomars", "tweetid": "800080464560037890" },
{ "handle": "chrisbrown", "tweetid": "791808216929886208" },
{ "handle": "chrisbrown", "tweetid": "791852256635346944" },
{ "handle": "chrisbrown", "tweetid": "792079535286128640" },
{ "handle": "chrisbrown", "tweetid": "792106784206917632" },
{ "handle": "chrisbrown", "tweetid": "792508931235057664" },
{ "handle": "chrisbrown", "tweetid": "793210407892713472" },
{ "handle": "chrisbrown", "tweetid": "793591652619288577" },
{ "handle": "chrisbrown", "tweetid": "794312704731336704" },
{ "handle": "chrisbrown", "tweetid": "795048164600315904" },
{ "handle": "chrisbrown", "tweetid": "795388236369711106" },
{ "handle": "chrisbrown", "tweetid": "795984706575613952" },
{ "handle": "chrisbrown", "tweetid": "796484661769736193" },
{ "handle": "chrisbrown", "tweetid": "796494692217196544" },
{ "handle": "chrisbrown", "tweetid": "797729052270493696" },
{ "handle": "chrisbrown", "tweetid": "797941822177902592" },
{ "handle": "chrisbrown", "tweetid": "798617283644030976" },
{ "handle": "chrisbrown", "tweetid": "798660019923324928" },
{ "handle": "chrisbrown", "tweetid": "798936293501648896" },
{ "handle": "chrisbrown", "tweetid": "798979471097401345" },
{ "handle": "chrisbrown", "tweetid": "800131192448315397" },
{ "handle": "cnn", "tweetid": "800086870256455682" },
{ "handle": "cnn", "tweetid": "800091926116433920" },
{ "handle": "cnn", "tweetid": "800096031220170752" },
{ "handle": "cnn", "tweetid": "800099465155739648" },
{ "handle": "cnn", "tweetid": "800102705230295043" },
{ "handle": "cnn", "tweetid": "800105226787287040" },
{ "handle": "cnn", "tweetid": "800112422614945793" },
{ "handle": "cnn", "tweetid": "800126766018887680" },
{ "handle": "cnn", "tweetid": "800142094501343233" },
{ "handle": "cnn", "tweetid": "800149425775661056" },
{ "handle": "cnn", "tweetid": "800156965422989312" },
{ "handle": "cnn", "tweetid": "800164514109001728" },
{ "handle": "cnn", "tweetid": "800174627288821761" },
{ "handle": "cnn", "tweetid": "800179615419531264" },
{ "handle": "cnn", "tweetid": "800187163082194944" },
{ "handle": "cnn", "tweetid": "800194713894715392" },
{ "handle": "cnn", "tweetid": "800202467665276928" },
{ "handle": "cnn", "tweetid": "800209816144805888" },
{ "handle": "cnn", "tweetid": "800217527225896960" },
{ "handle": "cnn", "tweetid": "800232538736201728" },
{ "handle": "cnn", "tweetid": "800355790594908160" },
{ "handle": "cnn", "tweetid": "800356274311294977" },
{ "handle": "cnn", "tweetid": "800367066477756416" },
{ "handle": "cnn", "tweetid": "800369352662859777" },
{ "handle": "cnn", "tweetid": "800370896963796992" },
{ "handle": "cnn", "tweetid": "800375152127201280" },
{ "handle": "cnn", "tweetid": "800388865769017349" },
{ "handle": "cnn", "tweetid": "800394805813661696" },
{ "handle": "cnn", "tweetid": "800397049095036928" },
{ "handle": "cnn", "tweetid": "800400841068855296" },
{ "handle": "cnn", "tweetid": "800401091561144320" },
{ "handle": "cnn", "tweetid": "800406861405163520" },
{ "handle": "cnn", "tweetid": "800409512830238724" },
{ "handle": "cnn", "tweetid": "800413244967895040" },
{ "handle": "cnn", "tweetid": "800417055581360130" },
{ "handle": "cnn", "tweetid": "800419752254513152" },
{ "handle": "cnn", "tweetid": "800423508761280512" },
{ "handle": "cnn", "tweetid": "800426372393009152" },
{ "handle": "cnn", "tweetid": "800429834254028801" },
{ "handle": "cnn", "tweetid": "800434544125952001" },
{ "handle": "cnnbrk", "tweetid": "799602231351869444" },
{ "handle": "cnnbrk", "tweetid": "799617031687372800" },
{ "handle": "cnnbrk", "tweetid": "799617210524323844" },
{ "handle": "cnnbrk", "tweetid": "799655670354046976" },
{ "handle": "cnnbrk", "tweetid": "799655874591604736" },
{ "handle": "cnnbrk", "tweetid": "799670943127900161" },
{ "handle": "cnnbrk", "tweetid": "799689574347919360" },
{ "handle": "cnnbrk", "tweetid": "799709353406177280" },
{ "handle": "cnnbrk", "tweetid": "799728310104297472" },
{ "handle": "cnnbrk", "tweetid": "799776200864497664" },
{ "handle": "cnnbrk", "tweetid": "799834327957782528" },
{ "handle": "cnnbrk", "tweetid": "799850623235739648" },
{ "handle": "cnnbrk", "tweetid": "799981829117906944" },
{ "handle": "cnnbrk", "tweetid": "799984862388101120" },
{ "handle": "cnnbrk", "tweetid": "800036188774170625" },
{ "handle": "cnnbrk", "tweetid": "800047552393605121" },
{ "handle": "cnnbrk", "tweetid": "800061749147865088" },
{ "handle": "cnnbrk", "tweetid": "800066181906493440" },
{ "handle": "cnnbrk", "tweetid": "800128324345466880" },
{ "handle": "cnnbrk", "tweetid": "800169633965887489" },
{ "handle": "cnnbrk", "tweetid": "800245384345960449" },
{ "handle": "cnnbrk", "tweetid": "800311862919393280" },
{ "handle": "cnnbrk", "tweetid": "800347326573318144" },
{ "handle": "cnnbrk", "tweetid": "800355620255891456" },
{ "handle": "cnnbrk", "tweetid": "800390903605043200" },
{ "handle": "cnnbrk", "tweetid": "800392254921777152" },
{ "handle": "cnnbrk", "tweetid": "800418444348948480" },
{ "handle": "cnnbrk", "tweetid": "800440238049030144" },
{ "handle": "coldplay", "tweetid": "796987705137786880" },
{ "handle": "coldplay", "tweetid": "799679129654149121" },
{ "handle": "coldplay", "tweetid": "799679881810477056" },
{ "handle": "coldplay", "tweetid": "799680493364969472" },
{ "handle": "coldplay", "tweetid": "799681018202640384" },
{ "handle": "coldplay", "tweetid": "799817233182625792" },
{ "handle": "coldplay", "tweetid": "799820856675287040" },
{ "handle": "coldplay", "tweetid": "799900770275573761" },
{ "handle": "coldplay", "tweetid": "799912623365947392" },
{ "handle": "coldplay", "tweetid": "799916392791162880" },
{ "handle": "coldplay", "tweetid": "799921039698497536" },
{ "handle": "coldplay", "tweetid": "799921580457467904" },
{ "handle": "coldplay", "tweetid": "800010342533214208" },
{ "handle": "coldplay", "tweetid": "800019939612643328" },
{ "handle": "coldplay", "tweetid": "800020354643226624" },
{ "handle": "coldplay", "tweetid": "800020607026991104" },
{ "handle": "coldplay", "tweetid": "800020785872007168" },
{ "handle": "coldplay", "tweetid": "800029953777631232" },
{ "handle": "coldplay", "tweetid": "800037851949731842" },
{ "handle": "coldplay", "tweetid": "800063283344658432" },
{ "handle": "coldplay", "tweetid": "800088666769096704" },
{ "handle": "coldplay", "tweetid": "800438471731060736" },
{ "handle": "conanobrien", "tweetid": "794975154149457920" },
{ "handle": "conanobrien", "tweetid": "795331218745200640" },
{ "handle": "conanobrien", "tweetid": "795758784450883584" },
{ "handle": "conanobrien", "tweetid": "796029623297515524" },
{ "handle": "conanobrien", "tweetid": "796076280315682816" },
{ "handle": "conanobrien", "tweetid": "796129008962379781" },
{ "handle": "conanobrien", "tweetid": "796550613416996868" },
{ "handle": "conanobrien", "tweetid": "797094870569451520" },
{ "handle": "conanobrien", "tweetid": "797518147720974336" },
{ "handle": "conanobrien", "tweetid": "797872979887656960" },
{ "handle": "conanobrien", "tweetid": "798039756282232832" },
{ "handle": "conanobrien", "tweetid": "798236632629514240" },
{ "handle": "conanobrien", "tweetid": "798365174784589824" },
{ "handle": "conanobrien", "tweetid": "798599030506979329" },
{ "handle": "conanobrien", "tweetid": "798965236732596224" },
{ "handle": "conanobrien", "tweetid": "799340136307662848" },
{ "handle": "conanobrien", "tweetid": "799425874416107520" },
{ "handle": "conanobrien", "tweetid": "799628347869433856" },
{ "handle": "conanobrien", "tweetid": "799660151913332737" },
{ "handle": "conanobrien", "tweetid": "800116059906965504" },
{ "handle": "conanobrien", "tweetid": "800401631359762432" },
{ "handle": "cristiano", "tweetid": "795536676881842176" },
{ "handle": "cristiano", "tweetid": "795631033228136448" },
{ "handle": "cristiano", "tweetid": "795762348405440512" },
{ "handle": "cristiano", "tweetid": "795898707271106560" },
{ "handle": "cristiano", "tweetid": "796019884975128576" },
{ "handle": "cristiano", "tweetid": "796136364916015104" },
{ "handle": "cristiano", "tweetid": "796351325835558912" },
{ "handle": "cristiano", "tweetid": "796366866759512064" },
{ "handle": "cristiano", "tweetid": "796437031643709452" },
{ "handle": "cristiano", "tweetid": "796688701589979136" },
{ "handle": "cristiano", "tweetid": "797001235161354240" },
{ "handle": "cristiano", "tweetid": "797125872495034369" },
{ "handle": "cristiano", "tweetid": "797363471704793088" },
{ "handle": "cristiano", "tweetid": "797500235425677312" },
{ "handle": "cristiano", "tweetid": "798112237797769216" },
{ "handle": "cristiano", "tweetid": "798954841921884160" },
{ "handle": "cristiano", "tweetid": "799167625481908224" },
{ "handle": "cristiano", "tweetid": "799310315905159168" },
{ "handle": "cristiano", "tweetid": "799579095633973248" },
{ "handle": "cristiano", "tweetid": "800142146791555072" },
{ "handle": "cristiano", "tweetid": "800401952739835905" },
{ "handle": "danieltosh", "tweetid": "728620021526601729" },
{ "handle": "danieltosh", "tweetid": "796070850097074176" },
{ "handle": "danieltosh", "tweetid": "796070968917532672" },
{ "handle": "danieltosh", "tweetid": "796071035317592064" },
{ "handle": "danieltosh", "tweetid": "796071174086082560" },
{ "handle": "danieltosh", "tweetid": "796153172062400512" },
{ "handle": "danieltosh", "tweetid": "796153445946265600" },
{ "handle": "danieltosh", "tweetid": "796154071564447745" },
{ "handle": "danieltosh", "tweetid": "796171040476909569" },
{ "handle": "danieltosh", "tweetid": "796171375631159296" },
{ "handle": "danieltosh", "tweetid": "796171656926347265" },
{ "handle": "danieltosh", "tweetid": "796185135938879488" },
{ "handle": "danieltosh", "tweetid": "796193225547468800" },
{ "handle": "danieltosh", "tweetid": "798595890831183872" },
{ "handle": "danieltosh", "tweetid": "798597043820195840" },
{ "handle": "danieltosh", "tweetid": "798599721233223680" },
{ "handle": "danieltosh", "tweetid": "798653469678653440" },
{ "handle": "danieltosh", "tweetid": "798707268485165056" },
{ "handle": "danieltosh", "tweetid": "798714566624411649" },
{ "handle": "danieltosh", "tweetid": "798722074470555648" },
{ "handle": "danieltosh", "tweetid": "798729918284603393" },
{ "handle": "davidguetta", "tweetid": "792448640434462720" },
{ "handle": "davidguetta", "tweetid": "792452903625785346" },
{ "handle": "davidguetta", "tweetid": "792717714167042050" },
{ "handle": "davidguetta", "tweetid": "793730188332920833" },
{ "handle": "davidguetta", "tweetid": "794999403329294336" },
{ "handle": "davidguetta", "tweetid": "795274200734986244" },
{ "handle": "davidguetta", "tweetid": "795659224957284352" },
{ "handle": "davidguetta", "tweetid": "796053877103726593" },
{ "handle": "davidguetta", "tweetid": "796126665361526786" },
{ "handle": "davidguetta", "tweetid": "796407075022766081" },
{ "handle": "davidguetta", "tweetid": "796792328195293184" },
{ "handle": "davidguetta", "tweetid": "797006656827785217" },
{ "handle": "davidguetta", "tweetid": "797057257766842368" },
{ "handle": "davidguetta", "tweetid": "797153946871668736" },
{ "handle": "davidguetta", "tweetid": "797237695777034240" },
{ "handle": "davidguetta", "tweetid": "797437099242885120" },
{ "handle": "davidguetta", "tweetid": "797578088028585984" },
{ "handle": "davidguetta", "tweetid": "797856881020727296" },
{ "handle": "davidguetta", "tweetid": "798611394514055168" },
{ "handle": "davidguetta", "tweetid": "798849086908530689" },
{ "handle": "davidguetta", "tweetid": "800414968701194240" },
{ "handle": "davidguetta", "tweetid": "800415011822850049" },
{ "handle": "ddlovato", "tweetid": "754121898972155904" },
{ "handle": "ddlovato", "tweetid": "795506071662039040" },
{ "handle": "ddlovato", "tweetid": "795751952550281216" },
{ "handle": "ddlovato", "tweetid": "795858907033903104" },
{ "handle": "ddlovato", "tweetid": "795859498552463360" },
{ "handle": "ddlovato", "tweetid": "795869351777894401" },
{ "handle": "ddlovato", "tweetid": "796018925624508416" },
{ "handle": "ddlovato", "tweetid": "796106296034467840" },
{ "handle": "ddlovato", "tweetid": "796111774386941952" },
{ "handle": "ddlovato", "tweetid": "796191549881253893" },
{ "handle": "ddlovato", "tweetid": "796191643007385601" },
{ "handle": "ddlovato", "tweetid": "796211580128153600" },
{ "handle": "ddlovato", "tweetid": "796211931459764230" },
{ "handle": "ddlovato", "tweetid": "796212774133256194" },
{ "handle": "ddlovato", "tweetid": "798325805117935616" },
{ "handle": "ddlovato", "tweetid": "799008781791178753" },
{ "handle": "ddlovato", "tweetid": "799302081630900224" },
{ "handle": "ddlovato", "tweetid": "799327170803994624" },
{ "handle": "ddlovato", "tweetid": "799347696159125504" },
{ "handle": "ddlovato", "tweetid": "799376816838316032" },
{ "handle": "ddlovato", "tweetid": "799475919781969921" },
{ "handle": "deepikapadukone", "tweetid": "795550801657741312" },
{ "handle": "deepikapadukone", "tweetid": "795551207666421760" },
{ "handle": "deepikapadukone", "tweetid": "795551419512320000" },
{ "handle": "deepikapadukone", "tweetid": "795552090944917506" },
{ "handle": "deepikapadukone", "tweetid": "795552318682959872" },
{ "handle": "deepikapadukone", "tweetid": "795590235648360448" },
{ "handle": "deepikapadukone", "tweetid": "795759135660904449" },
{ "handle": "deepikapadukone", "tweetid": "795760990176575488" },
{ "handle": "deepikapadukone", "tweetid": "795771212362301441" },
{ "handle": "deepikapadukone", "tweetid": "795772179115888644" },
{ "handle": "deepikapadukone", "tweetid": "795772663679557632" },
{ "handle": "deepikapadukone", "tweetid": "795893938053857280" },
{ "handle": "deepikapadukone", "tweetid": "796054335436288000" },
{ "handle": "deepikapadukone", "tweetid": "796592691891073024" },
{ "handle": "deepikapadukone", "tweetid": "796598531444404224" },
{ "handle": "deepikapadukone", "tweetid": "797713120781287424" },
{ "handle": "deepikapadukone", "tweetid": "797869735006195712" },
{ "handle": "deepikapadukone", "tweetid": "798089309899231232" },
{ "handle": "deepikapadukone", "tweetid": "798572254233759744" },
{ "handle": "deepikapadukone", "tweetid": "800208524764741632" },
{ "handle": "drake", "tweetid": "756931046084534272" },
{ "handle": "drake", "tweetid": "759067771435089920" },
{ "handle": "drake", "tweetid": "759919366477537282" },
{ "handle": "drake", "tweetid": "760872602135040002" },
{ "handle": "drake", "tweetid": "761966265934155777" },
{ "handle": "drake", "tweetid": "763936650665660421" },
{ "handle": "drake", "tweetid": "763940550198173696" },
{ "handle": "drake", "tweetid": "765991272100364288" },
{ "handle": "drake", "tweetid": "771138116426014720" },
{ "handle": "drake", "tweetid": "772263280693940224" },
{ "handle": "drake", "tweetid": "773328391655284737" },
{ "handle": "drake", "tweetid": "778701401182511104" },
{ "handle": "drake", "tweetid": "778798368956882945" },
{ "handle": "drake", "tweetid": "780278976317054976" },
{ "handle": "drake", "tweetid": "785414067330674689" },
{ "handle": "drake", "tweetid": "793334361735196672" },
{ "handle": "drake", "tweetid": "793334430194622464" },
{ "handle": "drake", "tweetid": "793334467645562880" },
{ "handle": "drake", "tweetid": "796729316516200450" },
{ "handle": "drake", "tweetid": "797961053900443648" },
{ "handle": "edsheeran", "tweetid": "670415431384059904" },
{ "handle": "edsheeran", "tweetid": "670491182481416192" },
{ "handle": "edsheeran", "tweetid": "670577715016302592" },
{ "handle": "edsheeran", "tweetid": "670589458765455360" },
{ "handle": "edsheeran", "tweetid": "671275773689397248" },
{ "handle": "edsheeran", "tweetid": "671300975332757505" },
{ "handle": "edsheeran", "tweetid": "671886649786281984" },
{ "handle": "edsheeran", "tweetid": "672058098652217345" },
{ "handle": "edsheeran", "tweetid": "672277331717857280" },
{ "handle": "edsheeran", "tweetid": "672738890835431424" },
{ "handle": "edsheeran", "tweetid": "673019819860451328" },
{ "handle": "edsheeran", "tweetid": "673098996139712513" },
{ "handle": "edsheeran", "tweetid": "673753079246938112" },
{ "handle": "edsheeran", "tweetid": "673753232221564928" },
{ "handle": "edsheeran", "tweetid": "673859452798296065" },
{ "handle": "edsheeran", "tweetid": "674822755485884416" },
{ "handle": "edsheeran", "tweetid": "675168523149303808" },
{ "handle": "edsheeran", "tweetid": "675608380858376192" },
{ "handle": "edsheeran", "tweetid": "675871469239316480" },
{ "handle": "edsheeran", "tweetid": "675925574653726720" },
{ "handle": "eminem", "tweetid": "721116152445988864" },
{ "handle": "eminem", "tweetid": "732998426351263744" },
{ "handle": "eminem", "tweetid": "733404765250408449" },
{ "handle": "eminem", "tweetid": "734850132978610176" },
{ "handle": "eminem", "tweetid": "736238095998193666" },
{ "handle": "eminem", "tweetid": "740938776835395584" },
{ "handle": "eminem", "tweetid": "745791634546143233" },
{ "handle": "eminem", "tweetid": "748511005748101120" },
{ "handle": "eminem", "tweetid": "751105716056764416" },
{ "handle": "eminem", "tweetid": "775417789108674560" },
{ "handle": "eminem", "tweetid": "778739373751828480" },
{ "handle": "eminem", "tweetid": "779100187956506625" },
{ "handle": "eminem", "tweetid": "779170941423198208" },
{ "handle": "eminem", "tweetid": "779304804417937408" },
{ "handle": "eminem", "tweetid": "779304945594036224" },
{ "handle": "eminem", "tweetid": "781202519175335936" },
{ "handle": "eminem", "tweetid": "788161598275854336" },
{ "handle": "eminem", "tweetid": "788776034590199809" },
{ "handle": "eminem", "tweetid": "791853940451209216" },
{ "handle": "eminem", "tweetid": "795694740771655681" },
{ "handle": "emmawatson", "tweetid": "787604015056097280" },
{ "handle": "emmawatson", "tweetid": "788125693955674112" },
{ "handle": "emmawatson", "tweetid": "790936408466853889" },
{ "handle": "emmawatson", "tweetid": "792009344074280962" },
{ "handle": "emmawatson", "tweetid": "793102875681488897" },
{ "handle": "emmawatson", "tweetid": "793560313329225728" },
{ "handle": "emmawatson", "tweetid": "793851383648808960" },
{ "handle": "emmawatson", "tweetid": "795329919924453377" },
{ "handle": "emmawatson", "tweetid": "795340355168337920" },
{ "handle": "emmawatson", "tweetid": "796443093709029377" },
{ "handle": "emmawatson", "tweetid": "796477737217232896" },
{ "handle": "emmawatson", "tweetid": "796479659273764864" },
{ "handle": "emmawatson", "tweetid": "796480736064839680" },
{ "handle": "emmawatson", "tweetid": "796824781056307201" },
{ "handle": "emmawatson", "tweetid": "797151853297463296" },
{ "handle": "emmawatson", "tweetid": "797980246037434368" },
{ "handle": "emmawatson", "tweetid": "798158326404030464" },
{ "handle": "emmawatson", "tweetid": "798506537530441728" },
{ "handle": "emmawatson", "tweetid": "798508518852751361" },
{ "handle": "emmawatson", "tweetid": "799345641411461120" },
{ "handle": "espn", "tweetid": "800124163453308928" },
{ "handle": "espn", "tweetid": "800130460504485888" },
{ "handle": "espn", "tweetid": "800130565311709184" },
{ "handle": "espn", "tweetid": "800132446943670272" },
{ "handle": "espn", "tweetid": "800141169049079808" },
{ "handle": "espn", "tweetid": "800142143658557440" },
{ "handle": "espn", "tweetid": "800155423949004800" },
{ "handle": "espn", "tweetid": "800167371239362560" },
{ "handle": "espn", "tweetid": "800173978941792256" },
{ "handle": "espn", "tweetid": "800180645045604356" },
{ "handle": "espn", "tweetid": "800190998848688128" },
{ "handle": "espn", "tweetid": "800195194406641664" },
{ "handle": "espn", "tweetid": "800198257926406149" },
{ "handle": "espn", "tweetid": "800199699202535424" },
{ "handle": "espn", "tweetid": "800202848956878848" },
{ "handle": "espn", "tweetid": "800207566387212289" },
{ "handle": "espn", "tweetid": "800209850781339648" },
{ "handle": "espn", "tweetid": "800210579315159041" },
{ "handle": "espn", "tweetid": "800215917921595392" },
{ "handle": "espn", "tweetid": "800226134654734336" },
{ "handle": "espn", "tweetid": "800322886900871168" },
{ "handle": "espn", "tweetid": "800339786066071554" },
{ "handle": "espn", "tweetid": "800346736439021568" },
{ "handle": "espn", "tweetid": "800349255508455424" },
{ "handle": "espn", "tweetid": "800371080460402690" },
{ "handle": "espn", "tweetid": "800374864435515392" },
{ "handle": "espn", "tweetid": "800381624990965760" },
{ "handle": "espn", "tweetid": "800390595365765120" },
{ "handle": "espn", "tweetid": "800401543291801600" },
{ "handle": "espn", "tweetid": "800405220215967744" },
{ "handle": "espn", "tweetid": "800410673503145985" },
{ "handle": "espn", "tweetid": "800414756431482881" },
{ "handle": "espn", "tweetid": "800420277628846081" },
{ "handle": "espn", "tweetid": "800430543879872512" },
{ "handle": "fcbarcelona", "tweetid": "800016047332016128" },
{ "handle": "fcbarcelona", "tweetid": "800018375644692480" },
{ "handle": "fcbarcelona", "tweetid": "800019547059195904" },
{ "handle": "fcbarcelona", "tweetid": "800021659054813184" },
{ "handle": "fcbarcelona", "tweetid": "800022182197751808" },
{ "handle": "fcbarcelona", "tweetid": "800023018063990786" },
{ "handle": "fcbarcelona", "tweetid": "800023321861468160" },
{ "handle": "fcbarcelona", "tweetid": "800024993472147456" },
{ "handle": "fcbarcelona", "tweetid": "800025578434940928" },
{ "handle": "fcbarcelona", "tweetid": "800027125747052544" },
{ "handle": "fcbarcelona", "tweetid": "800028581141352449" },
{ "handle": "fcbarcelona", "tweetid": "800035677416996866" },
{ "handle": "fcbarcelona", "tweetid": "800045701577265153" },
{ "handle": "fcbarcelona", "tweetid": "800052432579493888" },
{ "handle": "fcbarcelona", "tweetid": "800053886102933506" },
{ "handle": "fcbarcelona", "tweetid": "800053990436155392" },
{ "handle": "fcbarcelona", "tweetid": "800057275566215168" },
{ "handle": "fcbarcelona", "tweetid": "800103935675662336" },
{ "handle": "fcbarcelona", "tweetid": "800135349423001600" },
{ "handle": "fcbarcelona", "tweetid": "800181915621949441" },
{ "handle": "fcbarcelona", "tweetid": "800261175804096512" },
{ "handle": "fcbarcelona", "tweetid": "800267502781501440" },
{ "handle": "fcbarcelona", "tweetid": "800288426905968642" },
{ "handle": "fcbarcelona", "tweetid": "800295582392684544" },
{ "handle": "fcbarcelona", "tweetid": "800308330422042624" },
{ "handle": "fcbarcelona", "tweetid": "800325591039782912" },
{ "handle": "fcbarcelona", "tweetid": "800333175704748032" },
{ "handle": "fcbarcelona", "tweetid": "800406727304822784" },
{ "handle": "google", "tweetid": "798575215689109504" },
{ "handle": "google", "tweetid": "798597857724858369" },
{ "handle": "google", "tweetid": "798622754509467649" },
{ "handle": "google", "tweetid": "798645154953367552" },
{ "handle": "google", "tweetid": "798678445764919296" },
{ "handle": "google", "tweetid": "798914137250140161" },
{ "handle": "google", "tweetid": "798957703251054592" },
{ "handle": "google", "tweetid": "798995461680070657" },
{ "handle": "google", "tweetid": "799030960863973377" },
{ "handle": "google", "tweetid": "799325227679240192" },
{ "handle": "google", "tweetid": "799357800103100416" },
{ "handle": "google", "tweetid": "799377855675142147" },
{ "handle": "google", "tweetid": "799389318196273152" },
{ "handle": "google", "tweetid": "799666877173796864" },
{ "handle": "google", "tweetid": "799676055732637696" },
{ "handle": "google", "tweetid": "799682365635395584" },
{ "handle": "google", "tweetid": "799698325251362817" },
{ "handle": "google", "tweetid": "799722113171148804" },
{ "handle": "google", "tweetid": "799744822181580800" },
{ "handle": "google", "tweetid": "800038088646926336" },
{ "handle": "google", "tweetid": "800423976367456256" },
{ "handle": "harry_styles", "tweetid": "709175887577616384" },
{ "handle": "harry_styles", "tweetid": "709389141235130368" },
{ "handle": "harry_styles", "tweetid": "710542925432684544" },
{ "handle": "harry_styles", "tweetid": "712394001052086273" },
{ "handle": "harry_styles", "tweetid": "714190015073427456" },
{ "handle": "harry_styles", "tweetid": "719912310450425856" },
{ "handle": "harry_styles", "tweetid": "721587903642492928" },
{ "handle": "harry_styles", "tweetid": "723221671855820800" },
{ "handle": "harry_styles", "tweetid": "723712801223516162" },
{ "handle": "harry_styles", "tweetid": "728624506248400898" },
{ "handle": "harry_styles", "tweetid": "734817954240466944" },
{ "handle": "harry_styles", "tweetid": "735894697877475329" },
{ "handle": "harry_styles", "tweetid": "742053697778155520" },
{ "handle": "harry_styles", "tweetid": "742056632641683458" },
{ "handle": "harry_styles", "tweetid": "756820126620459008" },
{ "handle": "harry_styles", "tweetid": "775160262852616193" },
{ "handle": "harry_styles", "tweetid": "780421360552140801" },
{ "handle": "harry_styles", "tweetid": "780421499110952960" },
{ "handle": "harry_styles", "tweetid": "780421632712118272" },
{ "handle": "harry_styles", "tweetid": "786657079096258560" },
{ "handle": "iamsrk", "tweetid": "794632768500088832" },
{ "handle": "iamsrk", "tweetid": "795251762999328769" },
{ "handle": "iamsrk", "tweetid": "795252707099484161" },
{ "handle": "iamsrk", "tweetid": "795254959902076928" },
{ "handle": "iamsrk", "tweetid": "795556089223737344" },
{ "handle": "iamsrk", "tweetid": "796383361778388993" },
{ "handle": "iamsrk", "tweetid": "796385341787648000" },
{ "handle": "iamsrk", "tweetid": "796951958095433728" },
{ "handle": "iamsrk", "tweetid": "796962586684067845" },
{ "handle": "iamsrk", "tweetid": "796962746923384837" },
{ "handle": "iamsrk", "tweetid": "797769511793410048" },
{ "handle": "iamsrk", "tweetid": "798301219882045440" },
{ "handle": "iamsrk", "tweetid": "798456433205342208" },
{ "handle": "iamsrk", "tweetid": "798456725787418624" },
{ "handle": "iamsrk", "tweetid": "798539744539877376" },
{ "handle": "iamsrk", "tweetid": "798558863163150336" },
{ "handle": "iamsrk", "tweetid": "799043067164561408" },
{ "handle": "iamsrk", "tweetid": "799308502304833536" },
{ "handle": "iamsrk", "tweetid": "799539999431675904" },
{ "handle": "iamsrk", "tweetid": "799541875267031042" },
{ "handle": "iamsrk", "tweetid": "800282016109342721" },
{ "handle": "ihrithik", "tweetid": "795156103692689408" },
{ "handle": "ihrithik", "tweetid": "795319346419666944" },
{ "handle": "ihrithik", "tweetid": "796423412000423936" },
{ "handle": "ihrithik", "tweetid": "796701018209796096" },
{ "handle": "ihrithik", "tweetid": "796812979765411841" },
{ "handle": "ihrithik", "tweetid": "797525151390703616" },
{ "handle": "ihrithik", "tweetid": "798051540699185152" },
{ "handle": "ihrithik", "tweetid": "798156656936894464" },
{ "handle": "ihrithik", "tweetid": "798181001025482752" },
{ "handle": "ihrithik", "tweetid": "798504592808013824" },
{ "handle": "ihrithik", "tweetid": "798886020582440960" },
{ "handle": "ihrithik", "tweetid": "799086625267585024" },
{ "handle": "ihrithik", "tweetid": "799156599793348609" },
{ "handle": "ihrithik", "tweetid": "799195534066065408" },
{ "handle": "ihrithik", "tweetid": "799446437612265472" },
{ "handle": "ihrithik", "tweetid": "799520802857172993" },
{ "handle": "ihrithik", "tweetid": "799521204537348098" },
{ "handle": "ihrithik", "tweetid": "799572133135478784" },
{ "handle": "ihrithik", "tweetid": "799576978055536641" },
{ "handle": "ihrithik", "tweetid": "799997579484274689" },
{ "handle": "instagram", "tweetid": "798956351800147968" },
{ "handle": "instagram", "tweetid": "798967680464076800" },
{ "handle": "instagram", "tweetid": "799031848974303233" },
{ "handle": "instagram", "tweetid": "799041842541015040" },
{ "handle": "instagram", "tweetid": "799062033350217728" },
{ "handle": "instagram", "tweetid": "799077116184788992" },
{ "handle": "instagram", "tweetid": "799092250567462912" },
{ "handle": "instagram", "tweetid": "799250869921398784" },
{ "handle": "instagram", "tweetid": "799273459054473220" },
{ "handle": "instagram", "tweetid": "799275915301662721" },
{ "handle": "instagram", "tweetid": "799318729452556290" },
{ "handle": "instagram", "tweetid": "799394242200076288" },
{ "handle": "instagram", "tweetid": "799613252082614272" },
{ "handle": "instagram", "tweetid": "799681141162864640" },
{ "handle": "instagram", "tweetid": "799702898598768640" },
{ "handle": "instagram", "tweetid": "799741516549910528" },
{ "handle": "instagram", "tweetid": "799975645442805761" },
{ "handle": "instagram", "tweetid": "800043526667038720" },
{ "handle": "instagram", "tweetid": "800118996741726208" },
{ "handle": "instagram", "tweetid": "800137857042026497" },
{ "handle": "instagram", "tweetid": "800368176802492416" },
{ "handle": "instagram", "tweetid": "800405893192052736" },
{ "handle": "instagram", "tweetid": "800417196899901440" },
{ "handle": "instagram", "tweetid": "800436090226274308" },
{ "handle": "ivetesangalo", "tweetid": "797973692160634880" },
{ "handle": "ivetesangalo", "tweetid": "797998697623732225" },
{ "handle": "ivetesangalo", "tweetid": "798006676200636416" },
{ "handle": "ivetesangalo", "tweetid": "798013785738911744" },
{ "handle": "ivetesangalo", "tweetid": "798032832870260736" },
{ "handle": "ivetesangalo", "tweetid": "798153456657854464" },
{ "handle": "ivetesangalo", "tweetid": "798157707199074304" },
{ "handle": "ivetesangalo", "tweetid": "798158476560121856" },
{ "handle": "ivetesangalo", "tweetid": "798190828044898304" },
{ "handle": "ivetesangalo", "tweetid": "798263866023182336" },
{ "handle": "ivetesangalo", "tweetid": "798367223077212161" },
{ "handle": "ivetesangalo", "tweetid": "798675821233840132" },
{ "handle": "ivetesangalo", "tweetid": "799013993910325253" },
{ "handle": "ivetesangalo", "tweetid": "799290077583020032" },
{ "handle": "ivetesangalo", "tweetid": "799377076084154368" },
{ "handle": "ivetesangalo", "tweetid": "799392557981696000" },
{ "handle": "ivetesangalo", "tweetid": "799601787682586625" },
{ "handle": "ivetesangalo", "tweetid": "799626305654366209" },
{ "handle": "ivetesangalo", "tweetid": "799728496566267905" },
{ "handle": "ivetesangalo", "tweetid": "799776534143893505" },
{ "handle": "ivetesangalo", "tweetid": "800384549184241664" },
{ "handle": "jimcarrey", "tweetid": "652878987463557120" },
{ "handle": "jimcarrey", "tweetid": "706987060167516161" },
{ "handle": "jimcarrey", "tweetid": "707984209483182080" },
{ "handle": "jimcarrey", "tweetid": "710945923182952451" },
{ "handle": "jimcarrey", "tweetid": "713798583225425920" },
{ "handle": "jimcarrey", "tweetid": "715258724659531781" },
{ "handle": "jimcarrey", "tweetid": "718161841931702272" },
{ "handle": "jimcarrey", "tweetid": "719603084666626048" },
{ "handle": "jimcarrey", "tweetid": "720421008256155648" },
{ "handle": "jimcarrey", "tweetid": "753666802249379840" },
{ "handle": "jimcarrey", "tweetid": "754002508545007616" },
{ "handle": "jimcarrey", "tweetid": "770358316966879232" },
{ "handle": "jimcarrey", "tweetid": "789152290573811712" },
{ "handle": "jimcarrey", "tweetid": "791141542815752192" },
{ "handle": "jimcarrey", "tweetid": "793873090749038592" },
{ "handle": "jimcarrey", "tweetid": "795484988170846208" },
{ "handle": "jimcarrey", "tweetid": "796043587347566592" },
{ "handle": "jimcarrey", "tweetid": "796430649972457472" },
{ "handle": "jimcarrey", "tweetid": "798573963840397312" },
{ "handle": "jimcarrey", "tweetid": "798949458797019136" },
{ "handle": "jimmyfallon", "tweetid": "797078333238476800" },
{ "handle": "jimmyfallon", "tweetid": "797223134214623232" },
{ "handle": "jimmyfallon", "tweetid": "798163609637490688" },
{ "handle": "jimmyfallon", "tweetid": "798511759179051008" },
{ "handle": "jimmyfallon", "tweetid": "798525324741017600" },
{ "handle": "jimmyfallon", "tweetid": "798693376338096128" },
{ "handle": "jimmyfallon", "tweetid": "798871980086820864" },
{ "handle": "jimmyfallon", "tweetid": "798875668599676929" },
{ "handle": "jimmyfallon", "tweetid": "798887097885224960" },
{ "handle": "jimmyfallon", "tweetid": "798959271518076933" },
{ "handle": "jimmyfallon", "tweetid": "798959493413339137" },
{ "handle": "jimmyfallon", "tweetid": "799115572474773506" },
{ "handle": "jimmyfallon", "tweetid": "799116834792472576" },
{ "handle": "jimmyfallon", "tweetid": "799235930037043200" },
{ "handle": "jimmyfallon", "tweetid": "799249457703485440" },
{ "handle": "jimmyfallon", "tweetid": "799252127944245249" },
{ "handle": "jimmyfallon", "tweetid": "799313797416525824" },
{ "handle": "jimmyfallon", "tweetid": "799325624057769985" },
{ "handle": "jimmyfallon", "tweetid": "799598253452959744" },
{ "handle": "jimmyfallon", "tweetid": "799612084593954817" },
{ "handle": "jlo", "tweetid": "799467468007698435" },
{ "handle": "jlo", "tweetid": "799661041319702528" },
{ "handle": "jlo", "tweetid": "799662284888883200" },
{ "handle": "jlo", "tweetid": "799663045983158272" },
{ "handle": "jlo", "tweetid": "799663201222701058" },
{ "handle": "jlo", "tweetid": "799669394238341120" },
{ "handle": "jlo", "tweetid": "799669413699985408" },
{ "handle": "jlo", "tweetid": "799673823909933056" },
{ "handle": "jlo", "tweetid": "799726339532034051" },
{ "handle": "jlo", "tweetid": "799735661104230400" },
{ "handle": "jlo", "tweetid": "799735691429036032" },
{ "handle": "jlo", "tweetid": "799736544961540097" },
{ "handle": "jlo", "tweetid": "799736554147065856" },
{ "handle": "jlo", "tweetid": "799737029084884992" },
{ "handle": "jlo", "tweetid": "799737475862130690" },
{ "handle": "jlo", "tweetid": "799737952796479488" },
{ "handle": "jlo", "tweetid": "799812812847448065" },
{ "handle": "jlo", "tweetid": "799854158690054144" },
{ "handle": "jlo", "tweetid": "800075950729805824" },
{ "handle": "jlo", "tweetid": "800179681597198336" },
{ "handle": "jlo", "tweetid": "800179887189307396" },
{ "handle": "jlo", "tweetid": "800397463756492800" },
{ "handle": "jlo", "tweetid": "800435232767758336" },
{ "handle": "jlo", "tweetid": "800438205493350400" },
{ "handle": "jlo", "tweetid": "800438342554775552" },
{ "handle": "jtimberlake", "tweetid": "793195315511775232" },
{ "handle": "jtimberlake", "tweetid": "793254282191523842" },
{ "handle": "jtimberlake", "tweetid": "793255518282272769" },
{ "handle": "jtimberlake", "tweetid": "794271693963300864" },
{ "handle": "jtimberlake", "tweetid": "794317851335139328" },
{ "handle": "jtimberlake", "tweetid": "794586590609711106" },
{ "handle": "jtimberlake", "tweetid": "794642193965203457" },
{ "handle": "jtimberlake", "tweetid": "794670501801041920" },
{ "handle": "jtimberlake", "tweetid": "794672911592267777" },
{ "handle": "jtimberlake", "tweetid": "794955563050278912" },
{ "handle": "jtimberlake", "tweetid": "794963952895545345" },
{ "handle": "jtimberlake", "tweetid": "795057173801758721" },
{ "handle": "jtimberlake", "tweetid": "795061408488488961" },
{ "handle": "jtimberlake", "tweetid": "795700068363837440" },
{ "handle": "jtimberlake", "tweetid": "796906704441143296" },
{ "handle": "jtimberlake", "tweetid": "797073330734034944" },
{ "handle": "jtimberlake", "tweetid": "797111707462205441" },
{ "handle": "jtimberlake", "tweetid": "797505884070952960" },
{ "handle": "jtimberlake", "tweetid": "798628155355373568" },
{ "handle": "jtimberlake", "tweetid": "799434030601027584" },
{ "handle": "justinbieber", "tweetid": "797451827386028033" },
{ "handle": "justinbieber", "tweetid": "797452043971506176" },
{ "handle": "justinbieber", "tweetid": "797452427590893568" },
{ "handle": "justinbieber", "tweetid": "797452632038047744" },
{ "handle": "justinbieber", "tweetid": "797847031322546176" },
{ "handle": "justinbieber", "tweetid": "797847114097168384" },
{ "handle": "justinbieber", "tweetid": "797847375666495488" },