-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter_data.json
1398 lines (1398 loc) · 452 KB
/
twitter_data.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
{"_id":{"$oid":"5d43faba0a2f2f7ca8a41aab"},"created_at":"Fri Aug 02 08:50:17 +0000 2019","id":{"$numberLong":"1157212010112851968"},"id_str":"1157212010112851968","text":"RT @NelsonHavi: But you acted for former CBK Govenor Prof Njuguna Ndugu to stop a corruption case. You also acted for former CRJ Hon Boss S…","source":"\u003ca href=\"http://twitter.com/download/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78055602,"id_str":"78055602","name":"George Oketch Korigah","screen_name":"georgeoketch12","location":"Nairobi Kenya","url":null,"description":"Selling photocopying machines,toners/ cartridges...computers/ laptops \u0026related accessories... RTS not Endorsement\n0706910404","translator_type":"none","protected":false,"verified":false,"followers_count":1957,"friends_count":4999,"listed_count":11,"favourites_count":59286,"statuses_count":85647,"created_at":"Mon Sep 28 16:30:08 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":null,"contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http://abs.twimg.com/images/themes/theme4/bg.gif","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme4/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http://pbs.twimg.com/profile_images/1059762687419265030/IzPzAXeE_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1059762687419265030/IzPzAXeE_normal.jpg","profile_banner_url":"https://pbs.twimg.com/profile_banners/78055602/1541083137","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Aug 01 17:16:33 +0000 2019","id":{"$numberLong":"1156977028094205952"},"id_str":"1156977028094205952","text":"But you acted for former CBK Govenor Prof Njuguna Ndugu to stop a corruption case. You also acted for former CRJ Ho… https://t.co/iC1XGhaI11","display_text_range":[0,140],"source":"\u003ca href=\"http://twitter.com/download/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":{"$numberLong":"3460039877"},"id_str":"3460039877","name":"Nelson Havi","screen_name":"NelsonHavi","location":"Nairobi, Kenya","url":"http://haviandcompany.co.ke","description":"The Duke of Soyshire. Personal tweets will be be signed ^DoS","translator_type":"none","protected":false,"verified":true,"followers_count":255160,"friends_count":53,"listed_count":84,"favourites_count":13186,"statuses_count":21782,"created_at":"Thu Aug 27 17:52:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":null,"contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_link_color":"003B28","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http://pbs.twimg.com/profile_images/1155395021463609344/gMIWmANP_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1155395021463609344/gMIWmANP_normal.jpg","profile_banner_url":"https://pbs.twimg.com/profile_banners/3460039877/1514059210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":{"$numberLong":"1156965758402015232"},"quoted_status_id_str":"1156965758402015232","quoted_status":{"created_at":"Thu Aug 01 16:31:46 +0000 2019","id":{"$numberLong":"1156965758402015232"},"id_str":"1156965758402015232","text":"Each global generation sets its minimum Peremptory Norms. For now, Terrorism, Corruption, Money Laundering, Slavery… https://t.co/q01RLFt1xL","source":"\u003ca href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76641627,"id_str":"76641627","name":"Donald B Kipkorir","screen_name":"DonaldBKipkorir","location":"Nairobi. Kenya","url":"http://ktk.co.ke/","description":"Managing Partner, KTK Advocates: Corporate \u0026 Commercial Law Practice , IFLR1000 Recognized Law Firm, Member Of http://LEGALINK.ch/ And pedigree Roman Catholic","translator_type":"none","protected":false,"verified":true,"followers_count":556579,"friends_count":1609,"listed_count":93,"favourites_count":11290,"statuses_count":8229,"created_at":"Wed Sep 23 13:22:18 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":null,"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http://pbs.twimg.com/profile_images/1125831626892640256/_MN71A5M_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1125831626892640256/_MN71A5M_normal.jpg","profile_banner_url":"https://pbs.twimg.com/profile_banners/76641627/1564643809","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01e215db7136a37e","url":"https://api.twitter.com/1.1/geo/id/01e215db7136a37e.json","place_type":"city","name":"Nairobi","full_name":"Nairobi, Kenya","country_code":"KE","country":"Kenya","bounding_box":{"type":"Polygon","coordinates":[[[36.664573,-1.389053],[36.664573,-1.160674],[37.062667,-1.160674],[37.062667,-1.389053]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Each global generation sets its minimum Peremptory Norms. For now, Terrorism, Corruption, Money Laundering, Slavery \u0026amp; All Traffickings are existential evils. No respectable Law Firm in any civilized Country will defend these evils or their purveyors. It’s a Moral Imperative.","display_text_range":[0,279],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":14,"reply_count":39,"retweet_count":93,"favorite_count":338,"entities":{"hashtags":[],"urls":[{"url":"https://t.co/q01RLFt1xL","expanded_url":"https://twitter.com/i/web/status/1156965758402015232","display_url":"twitter.com/i/web/status/1…","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"quoted_status_permalink":{"url":"https://t.co/7Y7cJ3bSyk","expanded":"https://twitter.com/donaldbkipkorir/status/1156965758402015232","display":"twitter.com/donaldbkipkori…"},"is_quote_status":true,"extended_tweet":{"full_text":"But you acted for former CBK Govenor Prof Njuguna Ndugu to stop a corruption case. You also acted for former CRJ Hon Boss Shollei when she was fired on corruption allegations. Who castigated or stopped you? Don’t beguile a gullible public, Don. ^DoS https://t.co/7Y7cJ3bSyk","display_text_range":[0,249],"entities":{"hashtags":[],"urls":[{"url":"https://t.co/7Y7cJ3bSyk","expanded_url":"https://twitter.com/donaldbkipkorir/status/1156965758402015232","display_url":"twitter.com/donaldbkipkori…","indices":[250,273]}],"user_mentions":[],"symbols":[]}},"quote_count":6,"reply_count":61,"retweet_count":104,"favorite_count":316,"entities":{"hashtags":[],"urls":[{"url":"https://t.co/iC1XGhaI11","expanded_url":"https://twitter.com/i/web/status/1156977028094205952","display_url":"twitter.com/i/web/status/1…","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"quoted_status_id":{"$numberLong":"1156965758402015232"},"quoted_status_id_str":"1156965758402015232","quoted_status":{"created_at":"Thu Aug 01 16:31:46 +0000 2019","id":{"$numberLong":"1156965758402015232"},"id_str":"1156965758402015232","text":"Each global generation sets its minimum Peremptory Norms. For now, Terrorism, Corruption, Money Laundering, Slavery… https://t.co/q01RLFt1xL","source":"\u003ca href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c/a\u003e","truncated":true,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76641627,"id_str":"76641627","name":"Donald B Kipkorir","screen_name":"DonaldBKipkorir","location":"Nairobi. Kenya","url":"http://ktk.co.ke/","description":"Managing Partner, KTK Advocates: Corporate \u0026 Commercial Law Practice , IFLR1000 Recognized Law Firm, Member Of http://LEGALINK.ch/ And pedigree Roman Catholic","translator_type":"none","protected":false,"verified":true,"followers_count":556579,"friends_count":1609,"listed_count":93,"favourites_count":11290,"statuses_count":8229,"created_at":"Wed Sep 23 13:22:18 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":null,"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://abs.twimg.com/images/themes/theme1/bg.png","profile_background_image_url_https":"https://abs.twimg.com/images/themes/theme1/bg.png","profile_background_tile":false,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http://pbs.twimg.com/profile_images/1125831626892640256/_MN71A5M_normal.jpg","profile_image_url_https":"https://pbs.twimg.com/profile_images/1125831626892640256/_MN71A5M_normal.jpg","profile_banner_url":"https://pbs.twimg.com/profile_banners/76641627/1564643809","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01e215db7136a37e","url":"https://api.twitter.com/1.1/geo/id/01e215db7136a37e.json","place_type":"city","name":"Nairobi","full_name":"Nairobi, Kenya","country_code":"KE","country":"Kenya","bounding_box":{"type":"Polygon","coordinates":[[[36.664573,-1.389053],[36.664573,-1.160674],[37.062667,-1.160674],[37.062667,-1.389053]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"extended_tweet":{"full_text":"Each global generation sets its minimum Peremptory Norms. For now, Terrorism, Corruption, Money Laundering, Slavery \u0026amp; All Traffickings are existential evils. No respectable Law Firm in any civilized Country will defend these evils or their purveyors. It’s a Moral Imperative.","display_text_range":[0,279],"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]}},"quote_count":14,"reply_count":39,"retweet_count":93,"favorite_count":338,"entities":{"hashtags":[],"urls":[{"url":"https://t.co/q01RLFt1xL","expanded_url":"https://twitter.com/i/web/status/1156965758402015232","display_url":"twitter.com/i/web/status/1…","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"quoted_status_permalink":{"url":"https://t.co/7Y7cJ3bSyk","expanded":"https://twitter.com/donaldbkipkorir/status/1156965758402015232","display":"twitter.com/donaldbkipkori…"},"is_quote_status":true,"quote_count":0,"reply_count":0,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NelsonHavi","name":"Nelson Havi","id":{"$numberLong":"3460039877"},"id_str":"3460039877","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1564735817827"}
{"_id":{"$oid":"5d47e70a1918e212da2c94ac"},"tweet_id":{"$numberLong":"1158290656424583168"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 08:16:27 +0000 2019","tweeted_by":"@NnekiiiO"}
{"_id":{"$oid":"5d47e70a1918e212da2c94ad"},"tweet_id":{"$numberLong":"1158290844362903552"},"content":"#Nigeria is still in war with Boko Haram, Armed Militias, Kidnappers and Foreign Invaders...\n\nYet, @MBuhari deploys… https://t.co/a02KQ1mAC6","location":"Nigeria","time_created":"Mon Aug 05 08:17:11 +0000 2019","tweeted_by":"@YouthSupportPDP"}
{"_id":{"$oid":"5d47e70a1918e212da2c94ae"},"tweet_id":{"$numberLong":"1158290864654995456"},"content":"RT @BambeniZikode: The real face of terrorism, worldwide. https://t.co/O01jzc7mtT","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 08:17:16 +0000 2019","tweeted_by":"@NelsonKhumalo88"}
{"_id":{"$oid":"5d47e70a1918e212da2c94af"},"tweet_id":{"$numberLong":"1158290984175919104"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 08:17:45 +0000 2019","tweeted_by":"@wiznik2"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b0"},"tweet_id":{"$numberLong":"1158291160135274496"},"content":"RT @alexawiti: #OhioShooting #ElPasoTerroristAttack White Nationalism has erupted into full-blown terrorism. Thanks to @realDonaldTrump. @…","location":"Nairobi,Kenya","time_created":"Mon Aug 05 08:18:27 +0000 2019","tweeted_by":"@alexawiti"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b1"},"tweet_id":{"$numberLong":"1158291185972195328"},"content":"RT @Spearszed: So, do you have any non-biological child in your care?\n\nHow do you treat the child?\n\nAre you a living terror to him or her?…","location":"Nigeria ","time_created":"Mon Aug 05 08:18:33 +0000 2019","tweeted_by":"@enuiyin"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b2"},"tweet_id":{"$numberLong":"1158291194826436609"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 08:18:35 +0000 2019","tweeted_by":"@Amedari_lechi"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b3"},"tweet_id":{"$numberLong":"1158291269451505664"},"content":"RT @stumbue: @Thabang_Kgwete We dont care what his attackers have in their closets , #CR17 #Ramaphosa must deal with his own corruption too…","location":"Durban, South Africa","time_created":"Mon Aug 05 08:18:53 +0000 2019","tweeted_by":"@Nqobzin20"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b4"},"tweet_id":{"$numberLong":"1158291276430761984"},"content":"RT @Tutsy22: In this @MBuhari’s era everything is terrorism apart from Fulani herdsmen killing people... 🙄🙄🙄 https://t.co/7o4ptaVhnw","location":"Enugu, Nigeria","time_created":"Mon Aug 05 08:18:54 +0000 2019","tweeted_by":"@oha_ray"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b5"},"tweet_id":{"$numberLong":"1158291392638128130"},"content":"RT @RepAdamSchiff: The ugly truth is this:\n\nWhite supremacist terrorism is a real and present danger. \n\nWhen the President and other leader…","location":"Lagos, Nigeria.","time_created":"Mon Aug 05 08:19:22 +0000 2019","tweeted_by":"@kennograph"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b6"},"tweet_id":{"$numberLong":"1158291404164087808"},"content":"@BangizweNkosi @BothaMiriam because the justice system is flawed...with so much corruption, how many innocent wont be executed!","location":"Grabouw, South Africa","time_created":"Mon Aug 05 08:19:25 +0000 2019","tweeted_by":"@Traitorius"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b7"},"tweet_id":{"$numberLong":"1158291503296458753"},"content":"Corrupt President fights corruption. Joke by not a real Doctor. @BladeNzimandeMP stomach politics @BladeNzimande… https://t.co/cEWCpS905k","location":"Vereeniging, South Africa","time_created":"Mon Aug 05 08:19:49 +0000 2019","tweeted_by":"@DebbieMarcus8"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b8"},"tweet_id":{"$numberLong":"1158291526084157440"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Calabar, Nigeria","time_created":"Mon Aug 05 08:19:54 +0000 2019","tweeted_by":"@kenteyo"}
{"_id":{"$oid":"5d47e70a1918e212da2c94b9"},"tweet_id":{"$numberLong":"1158291531859660800"},"content":"The level of insecurity and dimensional poverty in nigeria, permit me to say, can't be resolved by a protest… https://t.co/m3HcnfFtFk","location":"Rivers, Nigeria","time_created":"Mon Aug 05 08:19:55 +0000 2019","tweeted_by":"@OkoroKindness3"}
{"_id":{"$oid":"5d47e70b1918e212da2c94ba"},"tweet_id":{"$numberLong":"1158291558602616833"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ikeja, Nigeria","time_created":"Mon Aug 05 08:20:02 +0000 2019","tweeted_by":"@keanxley"}
{"_id":{"$oid":"5d47e70b1918e212da2c94bb"},"tweet_id":{"$numberLong":"1158291599618711552"},"content":"RT @Tutsy22: I have been wondering why too many people on Twitter are calling #Revolutionnow an act of terrorism. 😏 https://t.co/k76r84np4a","location":"Nigeria","time_created":"Mon Aug 05 08:20:12 +0000 2019","tweeted_by":"@Muyi9"}
{"_id":{"$oid":"5d47e70b1918e212da2c94bc"},"tweet_id":{"$numberLong":"1158291613644480518"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 08:20:15 +0000 2019","tweeted_by":"@ajitenaadeyemi1"}
{"_id":{"$oid":"5d47e70b1918e212da2c94bd"},"tweet_id":{"$numberLong":"1158291647022678016"},"content":"RT @vusumuzikhoza: We can confirm that the Public Protector will investigate our complain re: corruption in the recent employment at @eThek…","location":"Eisleben,Limpopo,South Africa","time_created":"Mon Aug 05 08:20:23 +0000 2019","tweeted_by":"@Bravo_pediboy"}
{"_id":{"$oid":"5d47e70b1918e212da2c94be"},"tweet_id":{"$numberLong":"1158291768057704448"},"content":"RT @ProudResister: @joshscampbell It’s white supremacist terrorism.","location":"Dahab, South Sinai, Egypt","time_created":"Mon Aug 05 08:20:52 +0000 2019","tweeted_by":"@BasiaSosnowska"}
{"_id":{"$oid":"5d47e70b1918e212da2c94bf"},"tweet_id":{"$numberLong":"1158291818091618306"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 08:21:04 +0000 2019","tweeted_by":"@mykel_inspire"}
{"_id":{"$oid":"5d47e70b1918e212da2c94c0"},"tweet_id":{"$numberLong":"1158291833912471552"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 08:21:07 +0000 2019","tweeted_by":"@0Olayemi"}
{"_id":{"$oid":"5d47e70b1918e212da2c94c1"},"tweet_id":{"$numberLong":"1158291838656294912"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 08:21:09 +0000 2019","tweeted_by":"@beebzy_"}
{"_id":{"$oid":"5d47e70b1918e212da2c94c2"},"tweet_id":{"$numberLong":"1158291854082920448"},"content":"RT @edupeepy1: They started this treason, terrorism madness with IPOB y'all kept straight face now it's a national thing! \n\nInjury to one i…","location":"Enugu, Nigeria","time_created":"Mon Aug 05 08:21:12 +0000 2019","tweeted_by":"@oha_ray"}
{"_id":{"$oid":"5d47e70b1918e212da2c94c3"},"tweet_id":{"$numberLong":"1158291881434013698"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 08:21:19 +0000 2019","tweeted_by":"@Olaoluwa_Banjo"}
{"_id":{"$oid":"5d47e70c1918e212da2c94c4"},"tweet_id":{"$numberLong":"1158291915709833217"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 08:21:27 +0000 2019","tweeted_by":"@tobiojenike"}
{"_id":{"$oid":"5d47e7101918e212da2c94c5"},"tweet_id":{"$numberLong":"1158291930754756608"},"content":"RT @Traitorius: @BangizweNkosi @BothaMiriam because the justice system is flawed...with so much corruption, how many innocent wont be execu…","location":"A proud South African citizen","time_created":"Mon Aug 05 08:21:30 +0000 2019","tweeted_by":"@BangizweNkosi"}
{"_id":{"$oid":"5d47e7141918e212da2c94c6"},"tweet_id":{"$numberLong":"1158291949348098048"},"content":"RT @championtenza: Steinhoff \u0026amp; Markus Jooste corruption: R20 billion\nCyril Ramaphosa money laundering: R1 billion\nEskom losses \u0026amp; corruption…","location":"Pretoria,South Africa","time_created":"Mon Aug 05 08:21:35 +0000 2019","tweeted_by":"@vick_rhweni"}
{"_id":{"$oid":"5d47e71d1918e212da2c94c7"},"tweet_id":{"$numberLong":"1158291986618748929"},"content":"@iyaboawokoya You can not find a book to curb insecurity.Nigerian army needs a security book from you ma","location":"Lagos, Nigeria","time_created":"Mon Aug 05 08:21:44 +0000 2019","tweeted_by":"@Delerichard1"}
{"_id":{"$oid":"5d47e7481918e212da2c94c8"},"tweet_id":{"$numberLong":"1158292163685421057"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 08:22:26 +0000 2019","tweeted_by":"@elharsh"}
{"_id":{"$oid":"5d47f1001918e212da2c94c9"},"tweet_id":{"$numberLong":"1158302597108944896"},"content":"RT @AbulGokal: Just like #IndianarmyinKashmir Nigerian Army is a tyrant and brutal gang of terrorists #FreeZakzakyForTreatment #FreeKashmir…","location":"Nigeria ","time_created":"Mon Aug 05 09:03:54 +0000 2019","tweeted_by":"@aayola81"}
{"_id":{"$oid":"5d47f21b1918e212da2c94ca"},"tweet_id":{"$numberLong":"1158303786248613889"},"content":"@dharjeezy @ezekielprince1 so when will revolution suit well with u?\n\nwhen the insecurity gets to ur doorsteps/\nOr… https://t.co/qIAxO4RkiU","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:08:37 +0000 2019","tweeted_by":"@moabzlim"}
{"_id":{"$oid":"5d47f21d1918e212da2c94cb"},"tweet_id":{"$numberLong":"1158303792590393344"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 09:08:39 +0000 2019","tweeted_by":"@KhaChi09"}
{"_id":{"$oid":"5d47f3011918e212da2c94cc"},"tweet_id":{"$numberLong":"1158304747125972993"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 09:12:26 +0000 2019","tweeted_by":"@Quirkyalone01"}
{"_id":{"$oid":"5d47f33a1918e212da2c94cd"},"tweet_id":{"$numberLong":"1158304992203300866"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Enugu, Nigeria","time_created":"Mon Aug 05 09:13:25 +0000 2019","tweeted_by":"@Chima_Unusual"}
{"_id":{"$oid":"5d47f40f1918e212da2c94ce"},"tweet_id":{"$numberLong":"1158305885229408256"},"content":"RT @johnnysleek: Also note that allegations of corruption in the power sector under OBJ resulted to the epileptic and interrupted supply of…","location":"Accra, Ghana ","time_created":"Mon Aug 05 09:16:57 +0000 2019","tweeted_by":"@Its_Azor"}
{"_id":{"$oid":"5d47f4251918e212da2c94cf"},"tweet_id":{"$numberLong":"1158305978695241728"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Owerri, Nigeria","time_created":"Mon Aug 05 09:17:20 +0000 2019","tweeted_by":"@LawsonEtoh"}
{"_id":{"$oid":"5d47f4271918e212da2c94d0"},"tweet_id":{"$numberLong":"1158305984990916608"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 09:17:21 +0000 2019","tweeted_by":"@Chidera_Ebuka"}
{"_id":{"$oid":"5d47f4271918e212da2c94d1"},"tweet_id":{"$numberLong":"1158305987188707329"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 09:17:22 +0000 2019","tweeted_by":"@SonnyDaniel8"}
{"_id":{"$oid":"5d47f4591918e212da2c94d2"},"tweet_id":{"$numberLong":"1158306107753996288"},"content":"RT @meenaharris: Australia got the headline right: “US in the midst of a white nationalist terrorism crisis” https://t.co/gZLy8F9qt8","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 09:17:51 +0000 2019","tweeted_by":"@seeps001"}
{"_id":{"$oid":"5d47f45a1918e212da2c94d3"},"tweet_id":{"$numberLong":"1158306144437362688"},"content":"RT @MairavZ: Israeli media outlets this morning barely have any mentions of the terror attacks in the US - almost nothing on most homepages…","location":"Morocco","time_created":"Mon Aug 05 09:17:59 +0000 2019","tweeted_by":"@AfricaIlat"}
{"_id":{"$oid":"5d47f45a1918e212da2c94d4"},"tweet_id":{"$numberLong":"1158306185885429760"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:18:09 +0000 2019","tweeted_by":"@ndibe_emmanuel"}
{"_id":{"$oid":"5d47f45b1918e212da2c94d5"},"tweet_id":{"$numberLong":"1158306202067046403"},"content":"RT @dijoni: America look at the face of domestic terrorism. https://t.co/ao2hPjG046","location":"Ghana","time_created":"Mon Aug 05 09:18:13 +0000 2019","tweeted_by":"@CrabbeMasope"}
{"_id":{"$oid":"5d47f4931918e212da2c94d6"},"tweet_id":{"$numberLong":"1158306234438754304"},"content":"RT @Chxta: What has Sowore complained about? \n\nRise in violence, rise in kidnappings, pervasive corruption. \n\nHas the government addressed…","location":"Nigeria","time_created":"Mon Aug 05 09:18:21 +0000 2019","tweeted_by":"@SensitiveSam"}
{"_id":{"$oid":"5d47f4931918e212da2c94d7"},"tweet_id":{"$numberLong":"1158306237760622592"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:18:22 +0000 2019","tweeted_by":"@dharkstranger"}
{"_id":{"$oid":"5d47f4941918e212da2c94d8"},"tweet_id":{"$numberLong":"1158306239106998272"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Mashi, Nigeria","time_created":"Mon Aug 05 09:18:22 +0000 2019","tweeted_by":"@AbuBakr_MaShI"}
{"_id":{"$oid":"5d47f4951918e212da2c94d9"},"tweet_id":{"$numberLong":"1158306265187180545"},"content":"RT @swilkinsonbc: Continuing its reign of terror \u0026amp; persecution over Palestinian residents in Issawiya in East Jerusalem, israel kidnaps two…","location":"South Africa","time_created":"Mon Aug 05 09:18:28 +0000 2019","tweeted_by":"@CandoTBS"}
{"_id":{"$oid":"5d47f4961918e212da2c94da"},"tweet_id":{"$numberLong":"1158306278499921920"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:18:31 +0000 2019","tweeted_by":"@KingsleyEhidia1"}
{"_id":{"$oid":"5d47f4961918e212da2c94db"},"tweet_id":{"$numberLong":"1158306285147893760"},"content":"RT @biofroak50: 'There's always weapons to stop peaceful protesters but not to stop insecurity'...a failed \u0026amp; perpetually failing country.…","location":"Port Harcourt /Abuja -Nigeria","time_created":"Mon Aug 05 09:18:33 +0000 2019","tweeted_by":"@Carlypecunia"}
{"_id":{"$oid":"5d47f4961918e212da2c94dc"},"tweet_id":{"$numberLong":"1158306288792690688"},"content":"RT @wmnjoya: #CribOfDeath failed to follow the trail of corruption in the hospital, was content not to name the management that was unreach…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 09:18:34 +0000 2019","tweeted_by":"@mose360"}
{"_id":{"$oid":"5d47f4971918e212da2c94dd"},"tweet_id":{"$numberLong":"1158306340072300547"},"content":"RT @SenWarren: Just like the hateful terrorism of Al Qaeda \u0026amp; ISIS, domestic right-wing terrorism \u0026amp; white nationalism is completely incompat…","location":"Cape Town/South Africa","time_created":"Mon Aug 05 09:18:46 +0000 2019","tweeted_by":"@Time2Coach"}
{"_id":{"$oid":"5d47f4971918e212da2c94de"},"tweet_id":{"$numberLong":"1158306346309214208"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Enugu Nigeria","time_created":"Mon Aug 05 09:18:47 +0000 2019","tweeted_by":"@4everinprofit"}
{"_id":{"$oid":"5d47f4971918e212da2c94df"},"tweet_id":{"$numberLong":"1158306347886227456"},"content":"RT @Abeypl1: They can't do anything to Boko Haram and killer Fulani herdsmen but are quick to arrest peaceful protesters. @MBuhari @ProfOsi…","location":"Nigeria","time_created":"Mon Aug 05 09:18:48 +0000 2019","tweeted_by":"@Abi66126663"}
{"_id":{"$oid":"5d47f4981918e212da2c94e0"},"tweet_id":{"$numberLong":"1158306429834600448"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 09:19:07 +0000 2019","tweeted_by":"@ii4ene"}
{"_id":{"$oid":"5d47f4981918e212da2c94e1"},"tweet_id":{"$numberLong":"1158306432510550016"},"content":"RT @dailynation: Kenya's burden is in not in Parliament but in corruption, Senator Moses Wetangula tells Aukot. https://t.co/r2oojqriw3","location":"Nairobi, Kenya","time_created":"Mon Aug 05 09:19:08 +0000 2019","tweeted_by":"@RalphEd_"}
{"_id":{"$oid":"5d47f4981918e212da2c94e2"},"tweet_id":{"$numberLong":"1158306453054246912"},"content":"RT @StormIsUponUs: All of this all over a few days. FBI terror report, Alex Jones rant against Q, attacks on 8-chan, shooters history chang…","location":"Warri, Delta State, Nigeria","time_created":"Mon Aug 05 09:19:13 +0000 2019","tweeted_by":"@Emperorluggy"}
{"_id":{"$oid":"5d47f4991918e212da2c94e3"},"tweet_id":{"$numberLong":"1158306466153009153"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 09:19:16 +0000 2019","tweeted_by":"@bonny129u"}
{"_id":{"$oid":"5d47f4ad1918e212da2c94e4"},"tweet_id":{"$numberLong":"1158306547086372864"},"content":"IT blocked us from accessing Fantasy Premier League on our desktops. This is an act terrorism surely","location":"Bellville, South Africa","time_created":"Mon Aug 05 09:19:35 +0000 2019","tweeted_by":"@Sinister_Shikwi"}
{"_id":{"$oid":"5d47f4ae1918e212da2c94e5"},"tweet_id":{"$numberLong":"1158306548541808640"},"content":"RT @MKabrik: All this on peaceful protesters, not for the killer herdsmen, Kidnappers on our highway, Boko Haram, criminal gangs and bandit…","location":"USA, Nigeria,United Kingdom ","time_created":"Mon Aug 05 09:19:36 +0000 2019","tweeted_by":"@Intergrity56"}
{"_id":{"$oid":"5d47f4b01918e212da2c94e6"},"tweet_id":{"$numberLong":"1158306558922625024"},"content":"RT @DA_GPL: Since the DA-led multiparty government took over, crime and corruption have become public enemy number one in the City of Johan…","location":"Pretoria, South Africa","time_created":"Mon Aug 05 09:19:38 +0000 2019","tweeted_by":"@FredNelDA"}
{"_id":{"$oid":"5d47f4bc1918e212da2c94e7"},"tweet_id":{"$numberLong":"1158306607773732866"},"content":"Do soldiers fighting Boko Haram in the North use these type of guns? #RevolutionNow https://t.co/qXfHkoW00e","location":"Nigeria","time_created":"Mon Aug 05 09:19:50 +0000 2019","tweeted_by":"@TopBrassArmy"}
{"_id":{"$oid":"5d47f4bd1918e212da2c94e8"},"tweet_id":{"$numberLong":"1158306610902683649"},"content":"RT @Dispatch_DD: Inside Nessie Knight Hospital in pictures: \n\nPatients at a crumbling Nessie Knight Hospital in Qumbu live in terror that t…","location":"Pretoria, South Africa","time_created":"Mon Aug 05 09:19:50 +0000 2019","tweeted_by":"@GwababaGawd"}
{"_id":{"$oid":"5d47f4c61918e212da2c94e9"},"tweet_id":{"$numberLong":"1158306646189387777"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Benue/Kogi/Abuja, Nigeria ","time_created":"Mon Aug 05 09:19:59 +0000 2019","tweeted_by":"@UsenFly"}
{"_id":{"$oid":"5d47f4c91918e212da2c94ea"},"tweet_id":{"$numberLong":"1158306664476499969"},"content":"RT @whatonearthSA: Shows you how lawlessness \u0026amp; corruption is seemingly an accepted way of life for Black South Africans 🙄🙄 this is a journa…","location":"South Africa","time_created":"Mon Aug 05 09:20:03 +0000 2019","tweeted_by":"@danielcoetzee12"}
{"_id":{"$oid":"5d47f4d31918e212da2c94eb"},"tweet_id":{"$numberLong":"1158306704221769728"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 09:20:13 +0000 2019","tweeted_by":"@Farouknyako"}
{"_id":{"$oid":"5d47f4d81918e212da2c94ec"},"tweet_id":{"$numberLong":"1158306727093317632"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"South Africa ","time_created":"Mon Aug 05 09:20:18 +0000 2019","tweeted_by":"@Just_KayCee13"}
{"_id":{"$oid":"5d47f4e11918e212da2c94ed"},"tweet_id":{"$numberLong":"1158306762891694082"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:20:27 +0000 2019","tweeted_by":"@Adekolaseyi"}
{"_id":{"$oid":"5d47f4f21918e212da2c94ee"},"tweet_id":{"$numberLong":"1158306834706571264"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:20:44 +0000 2019","tweeted_by":"@Akas_Rox"}
{"_id":{"$oid":"5d47f5001918e212da2c94ef"},"tweet_id":{"$numberLong":"1158306894118817792"},"content":"RT @NkirukaNistoran: Atiku cries out, demand Buhari to probe secret burial of 1000 soldiers killed Boko Haram, ISWAP\n\nEven the death of one…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:20:58 +0000 2019","tweeted_by":"@Maziecheta"}
{"_id":{"$oid":"5d47f5041918e212da2c94f0"},"tweet_id":{"$numberLong":"1158306910090792960"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Bauchi, Nigeria","time_created":"Mon Aug 05 09:21:02 +0000 2019","tweeted_by":"@AishaBae_"}
{"_id":{"$oid":"5d47f5091918e212da2c94f1"},"tweet_id":{"$numberLong":"1158306929111961606"},"content":"RT @theboyisgreat: The high level of insecurity is very alarming , take it or leave it this Government are not worried about this killing b…","location":"Nigeria","time_created":"Mon Aug 05 09:21:06 +0000 2019","tweeted_by":"@Elgrandnicki"}
{"_id":{"$oid":"5d47f50d1918e212da2c94f2"},"tweet_id":{"$numberLong":"1158306942894452737"},"content":"RT @ncheks2005: There is nothing special about those that supports Buhari because, we all feel the same hunger, hardship, insecurity and jo…","location":"Aba, Nigeria","time_created":"Mon Aug 05 09:21:10 +0000 2019","tweeted_by":"@AjahOkemiri"}
{"_id":{"$oid":"5d47f50e1918e212da2c94f3"},"tweet_id":{"$numberLong":"1158306949102022656"},"content":"@Holawhunmee bribery and corruption.","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:21:11 +0000 2019","tweeted_by":"@dewaley_"}
{"_id":{"$oid":"5d47f50e1918e212da2c94f4"},"tweet_id":{"$numberLong":"1158306952285499392"},"content":"RT @EricHolder: Enough-time for real action. Pass a domestic terrorism bill. Ban assault weapons, high capacity magazines, body armor, sile…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 09:21:12 +0000 2019","tweeted_by":"@BenAsheroEgberi"}
{"_id":{"$oid":"5d47f5111918e212da2c94f5"},"tweet_id":{"$numberLong":"1158306967925997568"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"warri, Nigeria","time_created":"Mon Aug 05 09:21:16 +0000 2019","tweeted_by":"@hahmzy15"}
{"_id":{"$oid":"5d47f5201918e212da2c94f6"},"tweet_id":{"$numberLong":"1158307027099275264"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 09:21:30 +0000 2019","tweeted_by":"@TOPA_Akinz"}
{"_id":{"$oid":"5d47f5281918e212da2c94f7"},"tweet_id":{"$numberLong":"1158307062755053568"},"content":"RT @NkirukaNistoran: Buhari must show Nigerians where soldiers killed by Boko Haram secretly buried soldiers\n\nWSJ reports that over 1000 so…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:21:38 +0000 2019","tweeted_by":"@Maziecheta"}
{"_id":{"$oid":"5d47f53b1918e212da2c94f8"},"tweet_id":{"$numberLong":"1158307142358700034"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 09:21:57 +0000 2019","tweeted_by":"@MzuqA4"}
{"_id":{"$oid":"5d47f53c1918e212da2c94f9"},"tweet_id":{"$numberLong":"1158307146930556928"},"content":"RT @mycommentries: @ishakaa @MBuhari So be it my brothers. I join the group of benecfators if getting rid of corruption and individuals res…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:21:58 +0000 2019","tweeted_by":"@phran6_47"}
{"_id":{"$oid":"5d47f53d1918e212da2c94fa"},"tweet_id":{"$numberLong":"1158307149619052544"},"content":"RT @MichaalPaige: @AbdulMahmud01 Special forces against protesters? These are the kind of forces needed to combat BH, kidnaps, terrorism,…","location":"Nigeria","time_created":"Mon Aug 05 09:21:59 +0000 2019","tweeted_by":"@samuche83"}
{"_id":{"$oid":"5d47f5491918e212da2c94fb"},"tweet_id":{"$numberLong":"1158307203406880771"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Rivers, Nigeria","time_created":"Mon Aug 05 09:22:12 +0000 2019","tweeted_by":"@maestroroy"}
{"_id":{"$oid":"5d47f5511918e212da2c94fc"},"tweet_id":{"$numberLong":"1158307232137850880"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja, Nigeria","time_created":"Mon Aug 05 09:22:19 +0000 2019","tweeted_by":"@Yusuf_ajiyaa"}
{"_id":{"$oid":"5d47f5591918e212da2c94fd"},"tweet_id":{"$numberLong":"1158307270708666368"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria.","time_created":"Mon Aug 05 09:22:28 +0000 2019","tweeted_by":"@efeskills"}
{"_id":{"$oid":"5d47f5621918e212da2c94fe"},"tweet_id":{"$numberLong":"1158307305634619392"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 09:22:36 +0000 2019","tweeted_by":"@GabrielChukwue6"}
{"_id":{"$oid":"5d47f56f1918e212da2c94ff"},"tweet_id":{"$numberLong":"1158307360349270016"},"content":"RT @AdeolaFayehun: When is it a crime to protest in a democratic country?!? Why not work on the insecurity that has plagued the country? #…","location":"Birnin-Kebbi, Nigeria","time_created":"Mon Aug 05 09:22:49 +0000 2019","tweeted_by":"@dr_basharalee"}
{"_id":{"$oid":"5d47f5721918e212da2c9500"},"tweet_id":{"$numberLong":"1158307375817863168"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 09:22:53 +0000 2019","tweeted_by":"@GabrielChukwue6"}
{"_id":{"$oid":"5d47f5731918e212da2c9501"},"tweet_id":{"$numberLong":"1158307376187002880"},"content":"12:22 Unfortunately it seems like DCI is only interested in corruption cases.After watching news yesterday and seei… https://t.co/L63upwfGa4","location":"Kenya","time_created":"Mon Aug 05 09:22:53 +0000 2019","tweeted_by":"@Ma3Route"}
{"_id":{"$oid":"5d47f5781918e212da2c9502"},"tweet_id":{"$numberLong":"1158307400551677952"},"content":"RT @swilkinsonbc: Continuing its reign of terror \u0026amp; persecution over Palestinian residents in Issawiya in East Jerusalem, israel kidnaps two…","location":"South Africa","time_created":"Mon Aug 05 09:22:59 +0000 2019","tweeted_by":"@stephan57636556"}
{"_id":{"$oid":"5d47f57c1918e212da2c9503"},"tweet_id":{"$numberLong":"1158307416326496256"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 09:23:03 +0000 2019","tweeted_by":"@SeunEsq"}
{"_id":{"$oid":"5d4801c61918e212da2c9504"},"tweet_id":{"$numberLong":"1158320611862765568"},"content":"RT @FOnyeoziri: You are quick to grant Boko Haram members who were captured in combat amnesty. You turn a blind eye whenever herdsmen kill…","location":"Calabar, Nigeria","time_created":"Mon Aug 05 10:15:29 +0000 2019","tweeted_by":"@_kingsuperoc"}
{"_id":{"$oid":"5d4802251918e212da2c9505"},"tweet_id":{"$numberLong":"1158321009746948096"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:17:03 +0000 2019","tweeted_by":"@Ms_mple"}
{"_id":{"$oid":"5d4802261918e212da2c9506"},"tweet_id":{"$numberLong":"1158321011042988033"},"content":"#Nigeria #news #security - Dare Ojo urged Ekiti govt to tackle insecurity https://t.co/SvA0CJ23Mq","location":"Lagos - Nigeria","time_created":"Mon Aug 05 10:17:04 +0000 2019","tweeted_by":"@nairapark"}
{"_id":{"$oid":"5d48028a1918e212da2c9507"},"tweet_id":{"$numberLong":"1158321436043415552"},"content":"RT @RepWilson: Join my colleagues and I in denouncing Boko Haram's acts of terror and shining a spotlight on the plight of the millions the…","location":"Nigeria","time_created":"Mon Aug 05 10:18:45 +0000 2019","tweeted_by":"@TheEnike"}
{"_id":{"$oid":"5d4802ea1918e212da2c9508"},"tweet_id":{"$numberLong":"1158321836444307456"},"content":"@SaharaReporters When will @MBuhari address Nigerians on the state of insecurity in the nation ? \n\nWhen 🤔","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:20:21 +0000 2019","tweeted_by":"@KAAKAKI3"}
{"_id":{"$oid":"5d4803291918e212da2c9509"},"tweet_id":{"$numberLong":"1158322091747418112"},"content":"RT @ItsMutai: If you ask over half of Africans: What is Boko Haram? They Don't know. Watch this video.\nThread in Part 1, 2 \n\nVideo: courtes…","location":"Nigeria","time_created":"Mon Aug 05 10:21:21 +0000 2019","tweeted_by":"@TheEnike"}
{"_id":{"$oid":"5d4803ba1918e212da2c950a"},"tweet_id":{"$numberLong":"1158322707576082434"},"content":"And the ArchBishops of corruption are in Parliament. That is y we are dealing with it first.","location":"Nairobi, Kenya","time_created":"Mon Aug 05 10:23:48 +0000 2019","tweeted_by":"@MGrelly"}
{"_id":{"$oid":"5d4804131918e212da2c950b"},"tweet_id":{"$numberLong":"1158323077735956480"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria.","time_created":"Mon Aug 05 10:25:16 +0000 2019","tweeted_by":"@mu_saofficial"}
{"_id":{"$oid":"5d4804241918e212da2c950c"},"tweet_id":{"$numberLong":"1158323150179971072"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:25:34 +0000 2019","tweeted_by":"@Sh4Zk"}
{"_id":{"$oid":"5d4804251918e212da2c950d"},"tweet_id":{"$numberLong":"1158323155133489153"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:25:35 +0000 2019","tweeted_by":"@IamDexterity"}
{"_id":{"$oid":"5d4804a91918e212da2c950e"},"tweet_id":{"$numberLong":"1158323707061952514"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:27:47 +0000 2019","tweeted_by":"@ganiyubalogun1"}
{"_id":{"$oid":"5d4804ad1918e212da2c950f"},"tweet_id":{"$numberLong":"1158323723562377216"},"content":"RT @davidhogg111: The shooting in El Paso was political terrorism committed by a Trump supporting white nationalist. \n\nTrump is trying to r…","location":"Kumasi, Ghana","time_created":"Mon Aug 05 10:27:50 +0000 2019","tweeted_by":"@ohemaadufiegh"}
{"_id":{"$oid":"5d4804c01918e212da2c9510"},"tweet_id":{"$numberLong":"1158323805288325120"},"content":"RT @tezira: @LarryMadowo Pole sana. Please stay safe, Larry... USA is a hotbed of terror. Stay tuned to alerts from the Kenyan Embassy.","location":"Nairobi, Kenya","time_created":"Mon Aug 05 10:28:10 +0000 2019","tweeted_by":"@ehudkibet"}
{"_id":{"$oid":"5d4804c51918e212da2c9511"},"tweet_id":{"$numberLong":"1158323814817771521"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:28:12 +0000 2019","tweeted_by":"@WaleDoye"}
{"_id":{"$oid":"5d4804c71918e212da2c9512"},"tweet_id":{"$numberLong":"1158323818638860289"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 10:28:13 +0000 2019","tweeted_by":"@shadyach"}
{"_id":{"$oid":"5d4804c71918e212da2c9513"},"tweet_id":{"$numberLong":"1158323820077473792"},"content":"RT @realMCBizzo: @realDonaldTrump Is President Trump going to finally mention the words white nationalist terrorism? If he doesn’t he shoul…","location":"South Africa","time_created":"Mon Aug 05 10:28:13 +0000 2019","tweeted_by":"@ShaunB4C"}
{"_id":{"$oid":"5d4804df1918e212da2c9514"},"tweet_id":{"$numberLong":"1158323922766639105"},"content":"RT @MgbeojiIkechi: @SaharaReporters When President Buhari, as a private citizen, joined the protest against insecurity in Nigeria, were sho…","location":"Lagos,Nigeria","time_created":"Mon Aug 05 10:28:38 +0000 2019","tweeted_by":"@hammedmusa"}
{"_id":{"$oid":"5d4804e91918e212da2c9515"},"tweet_id":{"$numberLong":"1158323974167814144"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ghana","time_created":"Mon Aug 05 10:28:50 +0000 2019","tweeted_by":"@AbuBeans"}
{"_id":{"$oid":"5d4804f11918e212da2c9516"},"tweet_id":{"$numberLong":"1158324012960948224"},"content":"@akanse7en Don't mind him..... So the majority of Students in that school are from where? And insecurity there will… https://t.co/JPUw00ppWg","location":"Akwa Ibom state, Nigeria","time_created":"Mon Aug 05 10:28:59 +0000 2019","tweeted_by":"@romeocza"}
{"_id":{"$oid":"5d48050c1918e212da2c9517"},"tweet_id":{"$numberLong":"1158324122478399489"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:29:26 +0000 2019","tweeted_by":"@kennysax2"}
{"_id":{"$oid":"5d4805101918e212da2c9518"},"tweet_id":{"$numberLong":"1158324142892027904"},"content":"RT @wmnjoya: The central question of corruption in healthcare and education in Kenya is this: who benefits? We already know who suffers. We…","location":"Kisumu, Kenya","time_created":"Mon Aug 05 10:29:30 +0000 2019","tweeted_by":"@Owiraowira"}
{"_id":{"$oid":"5d48051e1918e212da2c9519"},"tweet_id":{"$numberLong":"1158324173946654720"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:29:38 +0000 2019","tweeted_by":"@AfoUnofficial"}
{"_id":{"$oid":"5d48051f1918e212da2c951a"},"tweet_id":{"$numberLong":"1158324177675444224"},"content":"#SIUTribunal: The tribunal is set to recover state funds that were lost due to irregular expenditure or corruption","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 10:29:39 +0000 2019","tweeted_by":"@POWER987News"}
{"_id":{"$oid":"5d4805211918e212da2c951b"},"tweet_id":{"$numberLong":"1158324188459032576"},"content":"RT @woye1: Sad news: Insecurity, insecurity. Following up on previous govt, Zamfara Govt signed $1b MOU in the areas of AGRICULTURE, mining…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:29:41 +0000 2019","tweeted_by":"@SegunYHaruna"}
{"_id":{"$oid":"5d4805211918e212da2c951c"},"tweet_id":{"$numberLong":"1158324190216368128"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Owerri, Nigeria","time_created":"Mon Aug 05 10:29:42 +0000 2019","tweeted_by":"@Chi_ji_okem"}
{"_id":{"$oid":"5d4805221918e212da2c951d"},"tweet_id":{"$numberLong":"1158324202786754560"},"content":"RT @benshapiro: #WhiteSupremacistTerrorism is terrorism and should be treated as such. It is an evil scourge that must be rooted out and de…","location":"Oyarifa, Ghana","time_created":"Mon Aug 05 10:29:45 +0000 2019","tweeted_by":"@chrisaydat"}
{"_id":{"$oid":"5d4805261918e212da2c951e"},"tweet_id":{"$numberLong":"1158324228053262337"},"content":"RT @realMCBizzo: @realDonaldTrump Is President Trump going to finally mention the words white nationalist terrorism? If he doesn’t he shoul…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:29:51 +0000 2019","tweeted_by":"@justbolah"}
{"_id":{"$oid":"5d4805361918e212da2c951f"},"tweet_id":{"$numberLong":"1158324245983899649"},"content":"We are fade up wit insecurity. Corruption, intimidation. @ShehuSani @JoChisom #FreeOmoyeleSowore #RevolutionIsNow","location":"eket Nigeria","time_created":"Mon Aug 05 10:29:55 +0000 2019","tweeted_by":"@Chibulk"}
{"_id":{"$oid":"5d4805381918e212da2c9520"},"tweet_id":{"$numberLong":"1158324256897417216"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 10:29:58 +0000 2019","tweeted_by":"@Osundaresherif2"}
{"_id":{"$oid":"5d4805391918e212da2c9521"},"tweet_id":{"$numberLong":"1158324264417878017"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 10:29:59 +0000 2019","tweeted_by":"@Moyo4_President"}
{"_id":{"$oid":"5d48053e1918e212da2c9522"},"tweet_id":{"$numberLong":"1158324283468320768"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:30:04 +0000 2019","tweeted_by":"@only1prechi"}
{"_id":{"$oid":"5d48053e1918e212da2c9523"},"tweet_id":{"$numberLong":"1158324285129277440"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria 🇳🇬","time_created":"Mon Aug 05 10:30:04 +0000 2019","tweeted_by":"@heistimi"}
{"_id":{"$oid":"5d4805411918e212da2c9524"},"tweet_id":{"$numberLong":"1158324333925863424"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos and Abuja , Nigeria","time_created":"Mon Aug 05 10:30:16 +0000 2019","tweeted_by":"@TundeOgunfolu"}
{"_id":{"$oid":"5d4805491918e212da2c9525"},"tweet_id":{"$numberLong":"1158324379522162688"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:30:27 +0000 2019","tweeted_by":"@IsahAbdulmajid"}
{"_id":{"$oid":"5d48054b1918e212da2c9526"},"tweet_id":{"$numberLong":"1158324388757934081"},"content":"@MrStanleyNwabia @MoniGeorge4 @atiku @YeleSowore You should go and look up the meaning of terrorism","location":"Edo, Nigeria","time_created":"Mon Aug 05 10:30:29 +0000 2019","tweeted_by":"@OrmormhilaE"}
{"_id":{"$oid":"5d48054f1918e212da2c9527"},"tweet_id":{"$numberLong":"1158324402007805957"},"content":"RT @ElikemKotoko: The US Department of Justice \u0026amp; Anti-corruption unit is initiating investigation into the PDS scam and State Capture.\n\nA c…","location":"Sekondi Takoradi, Ghana","time_created":"Mon Aug 05 10:30:32 +0000 2019","tweeted_by":"@GREATEAGLELITE"}
{"_id":{"$oid":"5d4805591918e212da2c9528"},"tweet_id":{"$numberLong":"1158324430130556928"},"content":"RT @JoelOrleans: The sad truth is, we're all part of the corruption in this country.","location":"Greater Accra, Ghana","time_created":"Mon Aug 05 10:30:39 +0000 2019","tweeted_by":"@nanawolfy"}
{"_id":{"$oid":"5d48055d1918e212da2c9529"},"tweet_id":{"$numberLong":"1158324441761353732"},"content":"RT @WalshFreedom: For eight years, many of us on the right demanded that Obama call out radical Islamic terror by name. Remember that? Well…","location":"South Africa","time_created":"Mon Aug 05 10:30:42 +0000 2019","tweeted_by":"@Nahitoh19"}
{"_id":{"$oid":"5d48056d1918e212da2c952a"},"tweet_id":{"$numberLong":"1158324527975284737"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:31:02 +0000 2019","tweeted_by":"@PeachWise"}
{"_id":{"$oid":"5d4805741918e212da2c952b"},"tweet_id":{"$numberLong":"1158324555779379200"},"content":"RT @_zeushimself: This man of vision was sent out on grounds of corruption that was not backed up with full proof\n1. Dieziani loot.\n2. Dasu…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:31:09 +0000 2019","tweeted_by":"@14bobG"}
{"_id":{"$oid":"5d4805891918e212da2c952c"},"tweet_id":{"$numberLong":"1158324646787342336"},"content":"RT @AbdallahMarouf: @realDonaldTrump And yet you never call the shootings (acts of terrorism) and you never call the White Supremacists who…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:31:31 +0000 2019","tweeted_by":"@opematude"}
{"_id":{"$oid":"5d4805951918e212da2c952d"},"tweet_id":{"$numberLong":"1158324697446195202"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:31:43 +0000 2019","tweeted_by":"@Mafindi_jnr"}
{"_id":{"$oid":"5d4805991918e212da2c952e"},"tweet_id":{"$numberLong":"1158324717234872320"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:31:47 +0000 2019","tweeted_by":"@SirWoley"}
{"_id":{"$oid":"5d48059f1918e212da2c952f"},"tweet_id":{"$numberLong":"1158324741775777797"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:31:53 +0000 2019","tweeted_by":"@alameen_099"}
{"_id":{"$oid":"5d4805a81918e212da2c9530"},"tweet_id":{"$numberLong":"1158324777481842689"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:32:02 +0000 2019","tweeted_by":"@alameen_099"}
{"_id":{"$oid":"5d4805b61918e212da2c9531"},"tweet_id":{"$numberLong":"1158324836231458817"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:32:16 +0000 2019","tweeted_by":"@Ebenezer_00"}
{"_id":{"$oid":"5d4805c51918e212da2c9532"},"tweet_id":{"$numberLong":"1158324901733965826"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:32:31 +0000 2019","tweeted_by":"@Ciykeprotocol"}
{"_id":{"$oid":"5d4805cc1918e212da2c9533"},"tweet_id":{"$numberLong":"1158324929584082945"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria ","time_created":"Mon Aug 05 10:32:38 +0000 2019","tweeted_by":"@So_orentecoutur"}
{"_id":{"$oid":"5d4805cf1918e212da2c9534"},"tweet_id":{"$numberLong":"1158324943211229184"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Kaduna, Nigeria","time_created":"Mon Aug 05 10:32:41 +0000 2019","tweeted_by":"@__ahmad_naseer_"}
{"_id":{"$oid":"5d4805d01918e212da2c9535"},"tweet_id":{"$numberLong":"1158324948148076545"},"content":"RT @Rhythmtrader: Bitcoin is the only true grassroots movement in history.\n\nA worldwide campaign against corruption with no leaders.\n\nGrowi…","location":"Asaba, Nigeria","time_created":"Mon Aug 05 10:32:42 +0000 2019","tweeted_by":"@Oti43358395"}
{"_id":{"$oid":"5d4805d01918e212da2c9536"},"tweet_id":{"$numberLong":"1158324948794007552"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Kwara, Nigeria","time_created":"Mon Aug 05 10:32:43 +0000 2019","tweeted_by":"@oyephemi"}
{"_id":{"$oid":"5d4805de1918e212da2c9537"},"tweet_id":{"$numberLong":"1158324985792028677"},"content":"Am the biggest thing in Ghana aside corruption.... #beast","location":"Ghana","time_created":"Mon Aug 05 10:32:51 +0000 2019","tweeted_by":"@JnrPossi"}
{"_id":{"$oid":"5d4805e41918e212da2c9538"},"tweet_id":{"$numberLong":"1158325031207874560"},"content":"RT @t_mangenam: We know corruption is a horrible monster, but now we also know it can kill the soul. Our souls are in peril now that the SA…","location":"South Africa","time_created":"Mon Aug 05 10:33:02 +0000 2019","tweeted_by":"@Mthembukaz_omde"}
{"_id":{"$oid":"5d4805ed1918e212da2c9539"},"tweet_id":{"$numberLong":"1158325064569368576"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos Nigeria","time_created":"Mon Aug 05 10:33:10 +0000 2019","tweeted_by":"@Tstaiwo"}
{"_id":{"$oid":"5d4805ed1918e212da2c953a"},"tweet_id":{"$numberLong":"1158325052212948993"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"University of Nigeria Nsukka.","time_created":"Mon Aug 05 10:33:07 +0000 2019","tweeted_by":"@AkaeduO"}
{"_id":{"$oid":"5d4806051918e212da2c953b"},"tweet_id":{"$numberLong":"1158325168885981184"},"content":"RT @RichRic94920580: @King_playmaker Of course. There is no room for tyranny, insecurity? Poverty and monocracy in today’s Nigeria. #Revolu…","location":"Nigeria","time_created":"Mon Aug 05 10:33:35 +0000 2019","tweeted_by":"@King_playmaker"}
{"_id":{"$oid":"5d4806151918e212da2c953c"},"tweet_id":{"$numberLong":"1158325233889284097"},"content":"Did you see where corruption start, because its men they became dark skin but for ladies is brown skin","location":"Kaduna, Nigeria","time_created":"Mon Aug 05 10:33:51 +0000 2019","tweeted_by":"@malami_a"}
{"_id":{"$oid":"5d4806151918e212da2c953d"},"tweet_id":{"$numberLong":"1158325235596320769"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:33:51 +0000 2019","tweeted_by":"@IdahIdenu"}
{"_id":{"$oid":"5d48061e1918e212da2c953e"},"tweet_id":{"$numberLong":"1158325266076356608"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Jos,Nigeria","time_created":"Mon Aug 05 10:33:58 +0000 2019","tweeted_by":"@barnieray"}
{"_id":{"$oid":"5d4806361918e212da2c953f"},"tweet_id":{"$numberLong":"1158325368392232960"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 10:34:23 +0000 2019","tweeted_by":"@SirWoley"}
{"_id":{"$oid":"5d48063e1918e212da2c9540"},"tweet_id":{"$numberLong":"1158325405281083393"},"content":"RT @JnrPossi: Am the biggest thing in Ghana aside corruption.... #beast https://t.co/A6eWf3rVvs","location":"Ghana","time_created":"Mon Aug 05 10:34:31 +0000 2019","tweeted_by":"@DJLamarGh"}
{"_id":{"$oid":"5d4806401918e212da2c9541"},"tweet_id":{"$numberLong":"1158325410582712320"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":" Nigeria","time_created":"Mon Aug 05 10:34:33 +0000 2019","tweeted_by":"@Anu_lcc3"}
{"_id":{"$oid":"5d4806551918e212da2c9542"},"tweet_id":{"$numberLong":"1158325505365594112"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:34:55 +0000 2019","tweeted_by":"@rareindiviual"}
{"_id":{"$oid":"5d48065b1918e212da2c9543"},"tweet_id":{"$numberLong":"1158325531768774661"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos and Abuja , Nigeria","time_created":"Mon Aug 05 10:35:02 +0000 2019","tweeted_by":"@TundeOgunfolu"}
{"_id":{"$oid":"5d48065d1918e212da2c9544"},"tweet_id":{"$numberLong":"1158325539813363712"},"content":"RT @Nwafresh: Pride of the nation, the people's choice, man of his words, a true definition of integrity, job creator, corruption fighter,…","location":"Nigeria","time_created":"Mon Aug 05 10:35:03 +0000 2019","tweeted_by":"@tianabeautyhub"}
{"_id":{"$oid":"5d48066a1918e212da2c9545"},"tweet_id":{"$numberLong":"1158325594972725249"},"content":"Imagine! Ordinary protest o!! But if it is Boko Haram, they will start catching cold. Shameless people. https://t.co/PE4Ldf9jVX","location":"Nigeria","time_created":"Mon Aug 05 10:35:17 +0000 2019","tweeted_by":"@TunjiOduyemi"}
{"_id":{"$oid":"5d4806711918e212da2c9546"},"tweet_id":{"$numberLong":"1158325622785134592"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 10:35:23 +0000 2019","tweeted_by":"@Alabibutter"}
{"_id":{"$oid":"5d4806771918e212da2c9547"},"tweet_id":{"$numberLong":"1158325647086968833"},"content":"RT @SenGillibrand: White nationalist terrorism is a national emergency.","location":"Nairobi- Kenya","time_created":"Mon Aug 05 10:35:29 +0000 2019","tweeted_by":"@deediana"}
{"_id":{"$oid":"5d4806771918e212da2c9548"},"tweet_id":{"$numberLong":"1158325648311668737"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ikeja, Nigeria","time_created":"Mon Aug 05 10:35:29 +0000 2019","tweeted_by":"@BadManTolzy"}
{"_id":{"$oid":"5d4806771918e212da2c9549"},"tweet_id":{"$numberLong":"1158325649075036160"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:35:30 +0000 2019","tweeted_by":"@realasrey"}
{"_id":{"$oid":"5d48067b1918e212da2c954a"},"tweet_id":{"$numberLong":"1158325663490875392"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Kaduna, Nigeria","time_created":"Mon Aug 05 10:35:33 +0000 2019","tweeted_by":"@Yar__mama"}
{"_id":{"$oid":"5d4806861918e212da2c954b"},"tweet_id":{"$numberLong":"1158325707493261312"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria","time_created":"Mon Aug 05 10:35:43 +0000 2019","tweeted_by":"@ChristChristu1"}
{"_id":{"$oid":"5d48068e1918e212da2c954c"},"tweet_id":{"$numberLong":"1158325747771219968"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ilorin, Nigeria","time_created":"Mon Aug 05 10:35:53 +0000 2019","tweeted_by":"@PastriesPlanet_"}
{"_id":{"$oid":"5d4806941918e212da2c954d"},"tweet_id":{"$numberLong":"1158325771716444161"},"content":"RT @ewarren: We need to call out white nationalism for what it is—domestic terrorism. It is a threat to the United States, and we've seen i…","location":"Kericho, Kenya","time_created":"Mon Aug 05 10:35:59 +0000 2019","tweeted_by":"@drizzylowe"}
{"_id":{"$oid":"5d4806981918e212da2c954e"},"tweet_id":{"$numberLong":"1158325785943511040"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:36:02 +0000 2019","tweeted_by":"@toyosi2405"}
{"_id":{"$oid":"5d4806a41918e212da2c954f"},"tweet_id":{"$numberLong":"1158325824036265984"},"content":"RT @Tutsy22: A week in Brief:\n\n* 14 were kidnapped, including 5 RCCG pastors by Fulani herdsmen. \n\n* 60 persons killed by in Boko Haram.\n\n*…","location":"Nigeria","time_created":"Mon Aug 05 10:36:11 +0000 2019","tweeted_by":"@ChristChristu1"}
{"_id":{"$oid":"5d4806a71918e212da2c9550"},"tweet_id":{"$numberLong":"1158325850338746368"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Pretoria, South Africa 🇿🇦","time_created":"Mon Aug 05 10:36:18 +0000 2019","tweeted_by":"@olamiidee"}
{"_id":{"$oid":"5d4806b11918e212da2c9551"},"tweet_id":{"$numberLong":"1158325888183885824"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:36:27 +0000 2019","tweeted_by":"@AkintibuboSeun"}
{"_id":{"$oid":"5d4806ba1918e212da2c9552"},"tweet_id":{"$numberLong":"1158325928205926400"},"content":"RT @YouthSupportPDP: #Nigeria is still in war with Boko Haram, Armed Militias, Kidnappers and Foreign Invaders...\n\nYet, @MBuhari deploys th…","location":"Kaduna, Nigeria","time_created":"Mon Aug 05 10:36:36 +0000 2019","tweeted_by":"@ELBINAWI"}
{"_id":{"$oid":"5d4806bd1918e212da2c9553"},"tweet_id":{"$numberLong":"1158325938540691459"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:36:39 +0000 2019","tweeted_by":"@thopsaw"}
{"_id":{"$oid":"5d4806c31918e212da2c9554"},"tweet_id":{"$numberLong":"1158325964822188039"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:36:45 +0000 2019","tweeted_by":"@creflodollarb"}
{"_id":{"$oid":"5d4806c71918e212da2c9555"},"tweet_id":{"$numberLong":"1158325982975156224"},"content":"If only these sophisticated guns were given to soldiers fighting Boko Haram, there would not be a need to bury 1000… https://t.co/vm0LAGcbl1","location":"Nigeria","time_created":"Mon Aug 05 10:36:49 +0000 2019","tweeted_by":"@BetterNG"}
{"_id":{"$oid":"5d4806cd1918e212da2c9556"},"tweet_id":{"$numberLong":"1158326005557354496"},"content":"RT @MoshinaJo: @shaunking 2 terror attacks in 12 hours.\nIf these white boys were Muslim, congress would spring into action.\n4 attacks in 7…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:36:55 +0000 2019","tweeted_by":"@Mariam_OFR"}
{"_id":{"$oid":"5d4806d21918e212da2c9557"},"tweet_id":{"$numberLong":"1158326029074804736"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ilorin, Nigeria","time_created":"Mon Aug 05 10:37:00 +0000 2019","tweeted_by":"@oyenikeadekemi"}
{"_id":{"$oid":"5d4806d31918e212da2c9558"},"tweet_id":{"$numberLong":"1158326033898254336"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:37:01 +0000 2019","tweeted_by":"@AutosBishop"}
{"_id":{"$oid":"5d4806dd1918e212da2c9559"},"tweet_id":{"$numberLong":"1158326075157635072"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Benin-City, Nigeria","time_created":"Mon Aug 05 10:37:11 +0000 2019","tweeted_by":"@isaac_shining"}
{"_id":{"$oid":"5d4806df1918e212da2c955a"},"tweet_id":{"$numberLong":"1158326084573827072"},"content":"RT @ewarren: I just talked to @Kasie Hunt about how white nationalism is domestic terrorism. And as Donald Trump has made one ugly statemen…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 10:37:13 +0000 2019","tweeted_by":"@RiazGilani"}
{"_id":{"$oid":"5d4806e11918e212da2c955b"},"tweet_id":{"$numberLong":"1158326089770569728"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:37:15 +0000 2019","tweeted_by":"@Loujasom"}
{"_id":{"$oid":"5d4806e91918e212da2c955c"},"tweet_id":{"$numberLong":"1158326127053742080"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Gombe Nigeria","time_created":"Mon Aug 05 10:37:24 +0000 2019","tweeted_by":"@it_danbarde10"}
{"_id":{"$oid":"5d4806f41918e212da2c955d"},"tweet_id":{"$numberLong":"1158326169277779968"},"content":"@HermanMashaba Your white bosses will not like this comment, they will soon cook up corruption charges against you… https://t.co/56wdNu5SS7","location":"Cape Town, South Africa","time_created":"Mon Aug 05 10:37:34 +0000 2019","tweeted_by":"@Zolani10187767"}
{"_id":{"$oid":"5d4807151918e212da2c955e"},"tweet_id":{"$numberLong":"1158326313138184195"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:38:08 +0000 2019","tweeted_by":"@Chanty_Araoye"}
{"_id":{"$oid":"5d4807251918e212da2c955f"},"tweet_id":{"$numberLong":"1158326377533313024"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:38:23 +0000 2019","tweeted_by":"@IfeanyiNjaka"}
{"_id":{"$oid":"5d4807301918e212da2c9560"},"tweet_id":{"$numberLong":"1158326424245288960"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:38:34 +0000 2019","tweeted_by":"@TeetoBrown"}
{"_id":{"$oid":"5d4807311918e212da2c9561"},"tweet_id":{"$numberLong":"1158326430553563136"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:38:36 +0000 2019","tweeted_by":"@getmebayo"}
{"_id":{"$oid":"5d48073a1918e212da2c9562"},"tweet_id":{"$numberLong":"1158326468029669376"},"content":"RT @RodRosenstein: George is right. Killing random civilians to spread a political message is terrorism. FBI classifies it as domestic terr…","location":"Alexandria, Egypt","time_created":"Mon Aug 05 10:38:45 +0000 2019","tweeted_by":"@FoffaC"}
{"_id":{"$oid":"5d48074f1918e212da2c9563"},"tweet_id":{"$numberLong":"1158326556953141250"},"content":"RT @ElikemKotoko: The US Department of Justice \u0026amp; Anti-corruption unit is initiating investigation into the PDS scam and State Capture.\n\nA c…","location":"Accra #Ghana","time_created":"Mon Aug 05 10:39:06 +0000 2019","tweeted_by":"@skulteaf"}
{"_id":{"$oid":"5d4807541918e212da2c9564"},"tweet_id":{"$numberLong":"1158326569837850624"},"content":"Kajuru crisis: Adara people proffer solution to insecurity in their area https://t.co/DDsdNQDCVZ https://t.co/JaQsGmf6FO","location":"Nigeria","time_created":"Mon Aug 05 10:39:09 +0000 2019","tweeted_by":"@DailyPostNGR"}
{"_id":{"$oid":"5d4807561918e212da2c9565"},"tweet_id":{"$numberLong":"1158326583289110529"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:39:12 +0000 2019","tweeted_by":"@creflodollarb"}
{"_id":{"$oid":"5d4807581918e212da2c9566"},"tweet_id":{"$numberLong":"1158326595385470977"},"content":"RT @Tutsy22: A week in Brief:\n\n* 14 were kidnapped, including 5 RCCG pastors by Fulani herdsmen. \n\n* 60 persons killed by in Boko Haram.\n\n*…","location":"Sokoto, Nigeria","time_created":"Mon Aug 05 10:39:15 +0000 2019","tweeted_by":"@Abdulmour89"}
{"_id":{"$oid":"5d48075e1918e212da2c9567"},"tweet_id":{"$numberLong":"1158326619825672193"},"content":"RT @BetterNG: If only these sophisticated guns were given to soldiers fighting Boko Haram, there would not be a need to bury 1000 of them s…","location":"Lagos/Osogbo Nigeria","time_created":"Mon Aug 05 10:39:21 +0000 2019","tweeted_by":"@Malachy_K"}
{"_id":{"$oid":"5d4807721918e212da2c9568"},"tweet_id":{"$numberLong":"1158326700763230208"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja,Nigeria","time_created":"Mon Aug 05 10:39:40 +0000 2019","tweeted_by":"@blackgold14"}
{"_id":{"$oid":"5d4807741918e212da2c9569"},"tweet_id":{"$numberLong":"1158326704491945984"},"content":"@ahmednasirlaw Same cycle as corruption in this country... https://t.co/3zAiJECR9h","location":"Kenya","time_created":"Mon Aug 05 10:39:41 +0000 2019","tweeted_by":"@CGSKivuva"}
{"_id":{"$oid":"5d4807771918e212da2c956a"},"tweet_id":{"$numberLong":"1158326718031192065"},"content":"@ChidiOdinkalu @realFFK\n@ShehuSani like in the USA, #StochasticTerrorism is the new dimmension of home-grown terror… https://t.co/Js983QUuZJ","location":"Nigeria and Beyond","time_created":"Mon Aug 05 10:39:44 +0000 2019","tweeted_by":"@VoteOrLose_NG"}
{"_id":{"$oid":"5d48077c1918e212da2c956b"},"tweet_id":{"$numberLong":"1158326741124997120"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:39:50 +0000 2019","tweeted_by":"@Short_Devil0"}
{"_id":{"$oid":"5d48077f1918e212da2c956c"},"tweet_id":{"$numberLong":"1158326753787555840"},"content":"RT @MrFilmkritik: Woman: *is a victim of rape and gets abortion*\n \nRepublicans: MURDERER \n \nWhite dude: *commits act of terrorism by shooti…","location":"South Africa","time_created":"Mon Aug 05 10:39:53 +0000 2019","tweeted_by":"@ThebeMot"}
{"_id":{"$oid":"5d4807821918e212da2c956d"},"tweet_id":{"$numberLong":"1158326766345293824"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja,Nigeria","time_created":"Mon Aug 05 10:39:56 +0000 2019","tweeted_by":"@blackgold14"}
{"_id":{"$oid":"5d4807841918e212da2c956e"},"tweet_id":{"$numberLong":"1158326776566878208"},"content":"RT @BetterNG: If only these sophisticated guns were given to soldiers fighting Boko Haram, there would not be a need to bury 1000 of them s…","location":" Nigeria","time_created":"Mon Aug 05 10:39:58 +0000 2019","tweeted_by":"@IhoTerence"}
{"_id":{"$oid":"5d48078f1918e212da2c956f"},"tweet_id":{"$numberLong":"1158326822104379392"},"content":"RT @dailynation: Kenya's burden is in not in Parliament but in corruption, Senator Moses Wetangula tells Aukot. https://t.co/r2oojqriw3","location":"Nairobi, Kenya","time_created":"Mon Aug 05 10:40:09 +0000 2019","tweeted_by":"@CharlesAqiri"}
{"_id":{"$oid":"5d4807971918e212da2c9570"},"tweet_id":{"$numberLong":"1158326856095084546"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 10:40:17 +0000 2019","tweeted_by":"@Otunba_Keke"}
{"_id":{"$oid":"5d48079c1918e212da2c9571"},"tweet_id":{"$numberLong":"1158326874499637248"},"content":"@fanamokoena @IOL even PP never found any link of corruption in CR17 donations, other candidates were exonerated","location":"Pretoria, South Africa","time_created":"Mon Aug 05 10:40:22 +0000 2019","tweeted_by":"@Ditiro98634245"}
{"_id":{"$oid":"5d4807a91918e212da2c9572"},"tweet_id":{"$numberLong":"1158326932653654016"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:40:36 +0000 2019","tweeted_by":"@officialnolimt"}
{"_id":{"$oid":"5d4807bb1918e212da2c9573"},"tweet_id":{"$numberLong":"1158327005420621824"},"content":"RT @johnnysleek: failure by OBJ led government to tell Nigerians the truth about allegations of corruption in the spending of $16 billion o…","location":"Accra Ghana, Lasgidi Nigeria","time_created":"Mon Aug 05 10:40:53 +0000 2019","tweeted_by":"@St_NickOWT"}
{"_id":{"$oid":"5d4807c11918e212da2c9574"},"tweet_id":{"$numberLong":"1158327032599781376"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Ilorin, Nigeria","time_created":"Mon Aug 05 10:40:59 +0000 2019","tweeted_by":"@PastriesPlanet_"}
{"_id":{"$oid":"5d4807c41918e212da2c9575"},"tweet_id":{"$numberLong":"1158327046369697792"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:41:03 +0000 2019","tweeted_by":"@IfeanyiNjaka"}
{"_id":{"$oid":"5d4807c71918e212da2c9576"},"tweet_id":{"$numberLong":"1158327058566660096"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria","time_created":"Mon Aug 05 10:41:06 +0000 2019","tweeted_by":"@ekeneosuala"}
{"_id":{"$oid":"5d4807d71918e212da2c9577"},"tweet_id":{"$numberLong":"1158327122647293955"},"content":"RT @DailyPostNGR: Kajuru crisis: Adara people proffer solution to insecurity in their area https://t.co/DDsdNQDCVZ https://t.co/JaQsGmf6FO","location":"Nigeria","time_created":"Mon Aug 05 10:41:21 +0000 2019","tweeted_by":"@Rolex7Michael"}
{"_id":{"$oid":"5d4807d71918e212da2c9578"},"tweet_id":{"$numberLong":"1158327125935628288"},"content":"RT @stumbue: @Thabang_Kgwete We might as well forget about holding any one accountable for any corruption then . #CR17 #Ramaphosa is not sp…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 10:41:22 +0000 2019","tweeted_by":"@Kb26Lebogang"}
{"_id":{"$oid":"5d4807e01918e212da2c9579"},"tweet_id":{"$numberLong":"1158327161738186754"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 10:41:30 +0000 2019","tweeted_by":"@iam_MrCrush"}
{"_id":{"$oid":"5d4807e21918e212da2c957a"},"tweet_id":{"$numberLong":"1158327171364085760"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:41:32 +0000 2019","tweeted_by":"@blvcksheepinc"}
{"_id":{"$oid":"5d4807ea1918e212da2c957b"},"tweet_id":{"$numberLong":"1158327203509264384"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:41:40 +0000 2019","tweeted_by":"@_mideGeorge"}
{"_id":{"$oid":"5d4807ee1918e212da2c957c"},"tweet_id":{"$numberLong":"1158327223386071041"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:41:45 +0000 2019","tweeted_by":"@_mideGeorge"}
{"_id":{"$oid":"5d4807f71918e212da2c957d"},"tweet_id":{"$numberLong":"1158327257691303937"},"content":"RT @AOC: For months, we have been raising questions around how white supremacists have been able to escape terrorist labeling.\n\nHere’s one…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 10:41:53 +0000 2019","tweeted_by":"@Velvet_Nix"}
{"_id":{"$oid":"5d4807f71918e212da2c957e"},"tweet_id":{"$numberLong":"1158327259364823040"},"content":"@_debbii3e This is insecurity at its peak. mo wa amazed.","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 10:41:53 +0000 2019","tweeted_by":"@Hazel2MO"}
{"_id":{"$oid":"5d4807fe1918e212da2c957f"},"tweet_id":{"$numberLong":"1158327288049610752"},"content":"@_debbii3e The level of that girl’s insecurity is so high. It’s so disgusting","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:42:00 +0000 2019","tweeted_by":"@Zea_lah"}
{"_id":{"$oid":"5d48080b1918e212da2c9580"},"tweet_id":{"$numberLong":"1158327342734958592"},"content":"RT @realFFK: America has to stand up to white nationalist, supremacist terrorism.They must CALL it what it is and DEAL with it. \n\nNigeria h…","location":"Nigeria","time_created":"Mon Aug 05 10:42:13 +0000 2019","tweeted_by":"@ChristChristu1"}
{"_id":{"$oid":"5d4808161918e212da2c9581"},"tweet_id":{"$numberLong":"1158327391204315136"},"content":"RT @t_mangenam: We know corruption is a horrible monster, but now we also know it can kill the soul. Our souls are in peril now that the SA…","location":"South Africa","time_created":"Mon Aug 05 10:42:25 +0000 2019","tweeted_by":"@SEKHUKHUNE745"}
{"_id":{"$oid":"5d4808171918e212da2c9582"},"tweet_id":{"$numberLong":"1158327394912145410"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:42:26 +0000 2019","tweeted_by":"@usman_Gee30"}
{"_id":{"$oid":"5d48081e1918e212da2c9583"},"tweet_id":{"$numberLong":"1158327425991958528"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:42:33 +0000 2019","tweeted_by":"@Nze007"}
{"_id":{"$oid":"5d4808201918e212da2c9584"},"tweet_id":{"$numberLong":"1158327432153313281"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:42:35 +0000 2019","tweeted_by":"@EmekaEK"}
{"_id":{"$oid":"5d4808241918e212da2c9585"},"tweet_id":{"$numberLong":"1158327445205987329"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:42:38 +0000 2019","tweeted_by":"@BachurunGaa"}
{"_id":{"$oid":"5d48083e1918e212da2c9586"},"tweet_id":{"$numberLong":"1158327552970280960"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 10:43:03 +0000 2019","tweeted_by":"@Oratobe"}
{"_id":{"$oid":"5d4808591918e212da2c9587"},"tweet_id":{"$numberLong":"1158327669831999489"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:43:31 +0000 2019","tweeted_by":"@GHaliru"}
{"_id":{"$oid":"5d48085d1918e212da2c9588"},"tweet_id":{"$numberLong":"1158327686789513221"},"content":"RT @RepJoeKennedy: We are being broken by white male supremacy. And our President isn’t just ignoring this vicious terrorism. He’s giving i…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 10:43:35 +0000 2019","tweeted_by":"@parry_wilson"}
{"_id":{"$oid":"5d4808601918e212da2c9589"},"tweet_id":{"$numberLong":"1158327696792981505"},"content":"If only they could attack the problem if insecurity with such viciousness.","location":"Nigeria ","time_created":"Mon Aug 05 10:43:38 +0000 2019","tweeted_by":"@envyimmanuel"}
{"_id":{"$oid":"5d4808631918e212da2c958a"},"tweet_id":{"$numberLong":"1158327710621548544"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Ogogoro Village, Nigeria","time_created":"Mon Aug 05 10:43:41 +0000 2019","tweeted_by":"@Madein1960"}
{"_id":{"$oid":"5d4808641918e212da2c958b"},"tweet_id":{"$numberLong":"1158327716162297856"},"content":"RT @kbentil: Aptitude and capability wither and die when confronted by corruption !!","location":"Ghana","time_created":"Mon Aug 05 10:43:42 +0000 2019","tweeted_by":"@Divifilius7"}
{"_id":{"$oid":"5d4808691918e212da2c958c"},"tweet_id":{"$numberLong":"1158327737507033088"},"content":"These acts of terrorism are statistically probable and happen seemingly at random - thanks to the indifferent body… https://t.co/7whMsiV1Ds","location":"Nigeria and Beyond","time_created":"Mon Aug 05 10:43:47 +0000 2019","tweeted_by":"@VoteOrLose_NG"}
{"_id":{"$oid":"5d48086c1918e212da2c958d"},"tweet_id":{"$numberLong":"1158327747791376384"},"content":"RT @PeteButtigieg: Our president isn't just failing to confront and disarm these domestic terrorists, he is amplifying and condoning their…","location":"Malibu, CA","time_created":"Mon Aug 05 10:43:50 +0000 2019","tweeted_by":"@Deborahcoleche1"}
{"_id":{"$oid":"5d48086d1918e212da2c958e"},"tweet_id":{"$numberLong":"1158327753969721344"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:43:51 +0000 2019","tweeted_by":"@BachurunGaa"}
{"_id":{"$oid":"5d48087c1918e212da2c958f"},"tweet_id":{"$numberLong":"1158327814447411200"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:44:06 +0000 2019","tweeted_by":"@mr_magini"}
{"_id":{"$oid":"5d4808861918e212da2c9590"},"tweet_id":{"$numberLong":"1158327858777001984"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 10:44:16 +0000 2019","tweeted_by":"@Shimbella"}
{"_id":{"$oid":"5d48088c1918e212da2c9591"},"tweet_id":{"$numberLong":"1158327884089630720"},"content":"RT @FOnyeoziri: You are quick to grant Boko Haram members who were captured in combat amnesty. You turn a blind eye whenever herdsmen kill…","location":"Nigeria","time_created":"Mon Aug 05 10:44:22 +0000 2019","tweeted_by":"@ToyosiAwosusi"}
{"_id":{"$oid":"5d4808901918e212da2c9592"},"tweet_id":{"$numberLong":"1158327900074106880"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:44:26 +0000 2019","tweeted_by":"@Pbxn3"}
{"_id":{"$oid":"5d4808931918e212da2c9593"},"tweet_id":{"$numberLong":"1158327914649280517"},"content":"RT @Bella_deOlivera: Lengthy but well worth the read !!\n\nBOMBSHELL: Mass shooting events follow pattern of “FBI terror plots” documented by…","location":"South Africa","time_created":"Mon Aug 05 10:44:30 +0000 2019","tweeted_by":"@nxumalo_terence"}
{"_id":{"$oid":"5d4808a91918e212da2c9594"},"tweet_id":{"$numberLong":"1158328006970093568"},"content":"RT @ChiomaChuka: Sowore is a bigger problem than the herdsmen crisis? Than the kidnappers who have made camp on our roads? Than Boko Haram,…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:44:52 +0000 2019","tweeted_by":"@DEJIDOPE"}
{"_id":{"$oid":"5d4808b11918e212da2c9595"},"tweet_id":{"$numberLong":"1158328040662982656"},"content":"RT @THE_THEO_FORD: @realDonaldTrump So it wasn’t terrorism because they weren’t “dark skinned” enough?! https://t.co/QtycDOwxqK","location":"Accra, Ghana","time_created":"Mon Aug 05 10:45:00 +0000 2019","tweeted_by":"@qwekuscriller"}
{"_id":{"$oid":"5d4808b61918e212da2c9596"},"tweet_id":{"$numberLong":"1158328059721916416"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 10:45:04 +0000 2019","tweeted_by":"@Mafindi_jnr"}
{"_id":{"$oid":"5d4808c61918e212da2c9597"},"tweet_id":{"$numberLong":"1158328126293700608"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos,Nigeria","time_created":"Mon Aug 05 10:45:20 +0000 2019","tweeted_by":"@benita_storm"}
{"_id":{"$oid":"5d4808d11918e212da2c9598"},"tweet_id":{"$numberLong":"1158328173878239232"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ogun, Nigeria","time_created":"Mon Aug 05 10:45:32 +0000 2019","tweeted_by":"@EzekielFaluyi"}
{"_id":{"$oid":"5d4808d31918e212da2c9599"},"tweet_id":{"$numberLong":"1158328184322084866"},"content":"AfriForum says it be will laying criminal charges of money laundering and corruption against Transport Minister Fik… https://t.co/hxotjpbYMq","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 10:45:34 +0000 2019","tweeted_by":"@SpheDludla"}
{"_id":{"$oid":"5d4808d61918e212da2c959a"},"tweet_id":{"$numberLong":"1158328194837168131"},"content":"RT @DailyPostNGR: Kajuru crisis: Adara people proffer solution to insecurity in their area https://t.co/DDsdNQDCVZ https://t.co/JaQsGmf6FO","location":"Nigeria","time_created":"Mon Aug 05 10:45:37 +0000 2019","tweeted_by":"@oladimeji_dele"}
{"_id":{"$oid":"5d4808de1918e212da2c959b"},"tweet_id":{"$numberLong":"1158328228525879296"},"content":"RT @DeanObeidallah: @realDonaldTrump Trump is an Act of Cowardice. Anyone who won't condemn white supremacist terrorism by name is part of…","location":"Accra, Ghana","time_created":"Mon Aug 05 10:45:45 +0000 2019","tweeted_by":"@qwekuscriller"}
{"_id":{"$oid":"5d4808f31918e212da2c959c"},"tweet_id":{"$numberLong":"1158328314878210048"},"content":"@Asamoh_ Am stuck at 3.5 trillion cos of corruption.","location":"Nairobi, Kenya","time_created":"Mon Aug 05 10:46:05 +0000 2019","tweeted_by":"@CycloneKenya1"}
{"_id":{"$oid":"5d4808f91918e212da2c959d"},"tweet_id":{"$numberLong":"1158328337779105792"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:46:11 +0000 2019","tweeted_by":"@wizypro5"}
{"_id":{"$oid":"5d4809001918e212da2c959e"},"tweet_id":{"$numberLong":"1158328368808546305"},"content":"RT @Tutsy22: A week in Brief:\n\n* 14 were kidnapped, including 5 RCCG pastors by Fulani herdsmen. \n\n* 60 persons killed by in Boko Haram.\n\n*…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:46:18 +0000 2019","tweeted_by":"@papadopolous03"}
{"_id":{"$oid":"5d4809031918e212da2c959f"},"tweet_id":{"$numberLong":"1158328381596930048"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Ukanafun, Nigeria ","time_created":"Mon Aug 05 10:46:21 +0000 2019","tweeted_by":"@NSYCAN"}
{"_id":{"$oid":"5d4809081918e212da2c95a0"},"tweet_id":{"$numberLong":"1158328403457654784"},"content":"RT @maajiidris: @AbiodunOlarewa6 Unfortunately another lost 'investment' by Atiku. \n\nIn all sectors except corruption, Buhari has more supp…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:46:26 +0000 2019","tweeted_by":"@tajudine2013"}
{"_id":{"$oid":"5d48091c1918e212da2c95a1"},"tweet_id":{"$numberLong":"1158328486190125057"},"content":"RT @dahiyayogesh81: In last 31 years of terrorism in J\u0026amp;K, 6524 Security Force Personnel laid down their lives alongwith 14903 Civilians.…","location":"India,Cameroon,Nigeria,Uganda,","time_created":"Mon Aug 05 10:46:46 +0000 2019","tweeted_by":"@pravinchandra"}
{"_id":{"$oid":"5d4809231918e212da2c95a2"},"tweet_id":{"$numberLong":"1158328515529457664"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 10:46:53 +0000 2019","tweeted_by":"@rareindiviual"}
{"_id":{"$oid":"5d4809271918e212da2c95a3"},"tweet_id":{"$numberLong":"1158328533497892864"},"content":"RT @BetterNG: If only these sophisticated guns were given to soldiers fighting Boko Haram, there would not be a need to bury 1000 of them s…","location":"Nigeria","time_created":"Mon Aug 05 10:46:57 +0000 2019","tweeted_by":"@frederi61770022"}
{"_id":{"$oid":"5d48092b1918e212da2c95a4"},"tweet_id":{"$numberLong":"1158328548802945024"},"content":"Am the biggest thing in Ghana aside corruption' #5A3 \n@_Lyricaljoe - 5th August 3 https://t.co/BmhJddKmHf.. The last line though..","location":"Ghana","time_created":"Mon Aug 05 10:47:01 +0000 2019","tweeted_by":"@harrygraphicx"}
{"_id":{"$oid":"5d48092d1918e212da2c95a5"},"tweet_id":{"$numberLong":"1158328557095006214"},"content":"RT @M_y_myhoolar: @aishat_saraki Am equally disturbed by this stylish corruption. You will recharge your phone without making any call only…","location":"Gombe, Nigeria","time_created":"Mon Aug 05 10:47:03 +0000 2019","tweeted_by":"@aishat_saraki"}
{"_id":{"$oid":"5d48093d1918e212da2c95a6"},"tweet_id":{"$numberLong":"1158328623381843968"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Akure, Nigeria","time_created":"Mon Aug 05 10:47:19 +0000 2019","tweeted_by":"@mrcarterskennel"}
{"_id":{"$oid":"5d48093e1918e212da2c95a7"},"tweet_id":{"$numberLong":"1158328627731341313"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Akure, Nigeria","time_created":"Mon Aug 05 10:47:20 +0000 2019","tweeted_by":"@mrcarterskennel"}
{"_id":{"$oid":"5d4809401918e212da2c95a8"},"tweet_id":{"$numberLong":"1158328637227225088"},"content":"@ShehuSani Poverty is the major cause of insecurity in our land. You were given the opportunity on a platter of gol… https://t.co/G6gmtu0xOi","location":"Nigeria","time_created":"Mon Aug 05 10:47:22 +0000 2019","tweeted_by":"@Dimejimodii"}
{"_id":{"$oid":"5d4809491918e212da2c95a9"},"tweet_id":{"$numberLong":"1158328677991686151"},"content":"RT @MubiinH: When Edward Zuma was telling Pravin Gordhan the truth I thought he was just hiding his corruption kgante birds of same feather…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 10:47:32 +0000 2019","tweeted_by":"@MabothaKganakga"}
{"_id":{"$oid":"5d4809511918e212da2c95aa"},"tweet_id":{"$numberLong":"1158328708417163264"},"content":"@JacksonMthembu_ @G20_YEA Oh the defender of corruption, Mr Jackson is still alive...you have been so quite of late… https://t.co/N8sNISu3YG","location":"South Africa","time_created":"Mon Aug 05 10:47:39 +0000 2019","tweeted_by":"@mthiyane12"}
{"_id":{"$oid":"5d4809521918e212da2c95ab"},"tweet_id":{"$numberLong":"1158328713496420352"},"content":"RT @The_AlphaWorld: She used my biggest insecurity to leave me and go be with someone else. Literally called me a worthless somebody and le…","location":"Joburg, South Africa","time_created":"Mon Aug 05 10:47:40 +0000 2019","tweeted_by":"@Dinno_bravo"}
{"_id":{"$oid":"5d48095d1918e212da2c95ac"},"tweet_id":{"$numberLong":"1158328762032959488"},"content":"@HloniNyet clearly there's no intent of corruption in Cyril's part but Zuma knew what he was up to","location":"Pretoria, South Africa","time_created":"Mon Aug 05 10:47:52 +0000 2019","tweeted_by":"@Ditiro98634245"}
{"_id":{"$oid":"5d48095e1918e212da2c95ad"},"tweet_id":{"$numberLong":"1158328765140873216"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos-Nigeria","time_created":"Mon Aug 05 10:47:52 +0000 2019","tweeted_by":"@Ayam_joshman"}
{"_id":{"$oid":"5d4809671918e212da2c95ae"},"tweet_id":{"$numberLong":"1158328803229409282"},"content":"RT @DebbieMarcus8: Masters of corruption colluding with Land Thieves https://t.co/qjCKyZYFhp","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 10:48:02 +0000 2019","tweeted_by":"@stumbue"}
{"_id":{"$oid":"5d4809681918e212da2c95af"},"tweet_id":{"$numberLong":"1158328809537638401"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria","time_created":"Mon Aug 05 10:48:03 +0000 2019","tweeted_by":"@emekaosigwe"}
{"_id":{"$oid":"5d48097e1918e212da2c95b0"},"tweet_id":{"$numberLong":"1158328901753548801"},"content":"RT @BetterNG: If only these sophisticated guns were given to soldiers fighting Boko Haram, there would not be a need to bury 1000 of them s…","location":"Nigeria","time_created":"Mon Aug 05 10:48:25 +0000 2019","tweeted_by":"@laah_lisa"}
{"_id":{"$oid":"5d4809931918e212da2c95b1"},"tweet_id":{"$numberLong":"1158328985161482241"},"content":"RT @MEMRIReports: Saudi Journalist Adnan Muhammad: Qatar Supports Somali Al-Shabab Terrorist Group; It Is Committed to Assisting Al-Qaeda a…","location":"Nigeria","time_created":"Mon Aug 05 10:48:45 +0000 2019","tweeted_by":"@OluJokotade"}
{"_id":{"$oid":"5d4809961918e212da2c95b2"},"tweet_id":{"$numberLong":"1158328997278863360"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:48:48 +0000 2019","tweeted_by":"@Youngz150"}
{"_id":{"$oid":"5d4809991918e212da2c95b3"},"tweet_id":{"$numberLong":"1158329008871936000"},"content":"RT @one_pak_: The terrorism by India in occupied Kashmir. With nearly 700,000 soldiers deployed in the valley and along the de facto border…","location":"Johannesburg South Africa","time_created":"Mon Aug 05 10:48:51 +0000 2019","tweeted_by":"@DiyaSalim"}
{"_id":{"$oid":"5d48099d1918e212da2c95b4"},"tweet_id":{"$numberLong":"1158329023057055744"},"content":"@_Lyricaljoe You're the biggest thing in Ghana aside corruption 🙈","location":"Kumasi, Ghana","time_created":"Mon Aug 05 10:48:54 +0000 2019","tweeted_by":"@SirEvansKonadu"}
{"_id":{"$oid":"5d4809a81918e212da2c95b5"},"tweet_id":{"$numberLong":"1158329072923152385"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:49:06 +0000 2019","tweeted_by":"@charliecharplai"}
{"_id":{"$oid":"5d4809ad1918e212da2c95b6"},"tweet_id":{"$numberLong":"1158329090417528832"},"content":"RT @Sowore_AAC: 2. An effective and democratic end to insecurity and insurgency.\n\n3. An end to systemic corruption and for total system cha…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:49:10 +0000 2019","tweeted_by":"@onpointme30"}
{"_id":{"$oid":"5d4809b61918e212da2c95b7"},"tweet_id":{"$numberLong":"1158329130359951360"},"content":"RT @RepWilson: Join my colleagues and I in denouncing Boko Haram's acts of terror and shining a spotlight on the plight of the millions the…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:49:20 +0000 2019","tweeted_by":"@Annabelle_E1"}
{"_id":{"$oid":"5d4809b71918e212da2c95b8"},"tweet_id":{"$numberLong":"1158329135174959105"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:49:21 +0000 2019","tweeted_by":"@imokhai25"}
{"_id":{"$oid":"5d4809b81918e212da2c95b9"},"tweet_id":{"$numberLong":"1158329139797143552"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:49:22 +0000 2019","tweeted_by":"@DamisNG"}
{"_id":{"$oid":"5d4809c01918e212da2c95ba"},"tweet_id":{"$numberLong":"1158329168616206338"},"content":"RT @dailynation: Kenya's burden is in not in Parliament but in corruption, Senator Moses Wetangula tells Aukot. https://t.co/r2oojqriw3","location":"Nairobi, Kenya","time_created":"Mon Aug 05 10:49:29 +0000 2019","tweeted_by":"@makokhaalvin5"}
{"_id":{"$oid":"5d4809c91918e212da2c95bb"},"tweet_id":{"$numberLong":"1158329210357911555"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Rayfield, Nigeria","time_created":"Mon Aug 05 10:49:39 +0000 2019","tweeted_by":"@Yung_Hero007"}
{"_id":{"$oid":"5d4809e61918e212da2c95bc"},"tweet_id":{"$numberLong":"1158329332894355457"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:50:08 +0000 2019","tweeted_by":"@OttoJosiah"}
{"_id":{"$oid":"5d4809fb1918e212da2c95bd"},"tweet_id":{"$numberLong":"1158329420274380803"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 10:50:29 +0000 2019","tweeted_by":"@alomedart"}
{"_id":{"$oid":"5d480a091918e212da2c95be"},"tweet_id":{"$numberLong":"1158329459944169472"},"content":"These much security forces for a peaceful protest?\n\nThis shows the insecurity of Bubu's administration","location":"Nigeria","time_created":"Mon Aug 05 10:50:38 +0000 2019","tweeted_by":"@c00kie_girlie"}
{"_id":{"$oid":"5d480a131918e212da2c95bf"},"tweet_id":{"$numberLong":"1158329501287366659"},"content":"@jesseshock75 @OgbeniDipo This is what bribery and corruption has done to our mental state. Hence, moving forward i… https://t.co/lJUpYlzjeT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:50:48 +0000 2019","tweeted_by":"@fabulous_215"}
{"_id":{"$oid":"5d480a131918e212da2c95c0"},"tweet_id":{"$numberLong":"1158329522133114881"},"content":"RT @battletested5: Osama Bin Laden didn't fly planes in twin towers..He instead radicalized the terrorists\n\nSo yes trump didn't shoot up El…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 10:50:53 +0000 2019","tweeted_by":"@JamesLizamore"}
{"_id":{"$oid":"5d480a231918e212da2c95c1"},"tweet_id":{"$numberLong":"1158329559433064448"},"content":"Boko Haram: What review of Auno gate closing time has done - Drivers,,https://t.co/0ubzzKP60g","location":"Kano, Nigeria","time_created":"Mon Aug 05 10:51:02 +0000 2019","tweeted_by":"@arewa_ng"}
{"_id":{"$oid":"5d480a241918e212da2c95c2"},"tweet_id":{"$numberLong":"1158329563325378562"},"content":"RT @MerriamWebster: Dictionary lookups📈in order: \n\nscreed \nmanifesto \nwhite nationalist \nwhite supremacist\nassault rifle\nnationalism\nterror…","location":"Pretoria, South Africa","time_created":"Mon Aug 05 10:51:03 +0000 2019","tweeted_by":"@NixHaw"}
{"_id":{"$oid":"5d480a281918e212da2c95c3"},"tweet_id":{"$numberLong":"1158329613015236608"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria-Lagos","time_created":"Mon Aug 05 10:51:15 +0000 2019","tweeted_by":"@nneka678"}
{"_id":{"$oid":"5d480a3e1918e212da2c95c4"},"tweet_id":{"$numberLong":"1158329699929665537"},"content":"RT @FOnyeoziri: You are quick to grant Boko Haram members who were captured in combat amnesty. You turn a blind eye whenever herdsmen kill…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:51:35 +0000 2019","tweeted_by":"@Timmnanie"}
{"_id":{"$oid":"5d480a501918e212da2c95c5"},"tweet_id":{"$numberLong":"1158329771673182208"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:51:52 +0000 2019","tweeted_by":"@Sheyie__"}
{"_id":{"$oid":"5d480a561918e212da2c95c6"},"tweet_id":{"$numberLong":"1158329799665946624"},"content":"RT @AOC: \u0026amp; again, this time asking the FBI.\n\nIt seems easier to label domestic, self-radicalized shooters who are Muslim as terrorists.\n\nYe…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 10:51:59 +0000 2019","tweeted_by":"@MPnjenga9"}
{"_id":{"$oid":"5d480a5d1918e212da2c95c7"},"tweet_id":{"$numberLong":"1158329826123628545"},"content":"RT @ConcJay: Nanyuki stadium: they have been waiting for the highest priest of corruption to bring bribes since morning and he has not turn…","location":"Lodwar, Kenya","time_created":"Mon Aug 05 10:52:05 +0000 2019","tweeted_by":"@pkasirim"}
{"_id":{"$oid":"5d480a621918e212da2c95c8"},"tweet_id":{"$numberLong":"1158329851734048774"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Pretoria,South Africa","time_created":"Mon Aug 05 10:52:12 +0000 2019","tweeted_by":"@Ori_Lo_Mo"}
{"_id":{"$oid":"5d480a6d1918e212da2c95c9"},"tweet_id":{"$numberLong":"1158329897766596608"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria,Worldwide","time_created":"Mon Aug 05 10:52:23 +0000 2019","tweeted_by":"@Heypree"}
{"_id":{"$oid":"5d480a6f1918e212da2c95ca"},"tweet_id":{"$numberLong":"1158329903214923776"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Nigeria","time_created":"Mon Aug 05 10:52:24 +0000 2019","tweeted_by":"@archetypal12"}
{"_id":{"$oid":"5d480a801918e212da2c95cb"},"tweet_id":{"$numberLong":"1158329975625400320"},"content":"RT @fattylincorn01: Remember those students who were killed in their dormitory in buni yadi yobestate.Under PDP Boko Haram slaughtered thos…","location":"Kano, Nigeria","time_created":"Mon Aug 05 10:52:41 +0000 2019","tweeted_by":"@NgGarba"}
{"_id":{"$oid":"5d480a851918e212da2c95cc"},"tweet_id":{"$numberLong":"1158329989114318848"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:52:44 +0000 2019","tweeted_by":"@GMAKGOLDENBOY"}
{"_id":{"$oid":"5d480aa21918e212da2c95cd"},"tweet_id":{"$numberLong":"1158330122681901056"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"lagos,Nigeria","time_created":"Mon Aug 05 10:53:16 +0000 2019","tweeted_by":"@obamasmykel"}
{"_id":{"$oid":"5d480aa51918e212da2c95ce"},"tweet_id":{"$numberLong":"1158330134560198656"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:53:19 +0000 2019","tweeted_by":"@murf4be"}
{"_id":{"$oid":"5d480aab1918e212da2c95cf"},"tweet_id":{"$numberLong":"1158330159008747520"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:53:25 +0000 2019","tweeted_by":"@wizypro5"}
{"_id":{"$oid":"5d480aac1918e212da2c95d0"},"tweet_id":{"$numberLong":"1158330162733342720"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Sandton, South Africa","time_created":"Mon Aug 05 10:53:26 +0000 2019","tweeted_by":"@TheHappyRay"}
{"_id":{"$oid":"5d480aae1918e212da2c95d1"},"tweet_id":{"$numberLong":"1158330171218378752"},"content":"RT @todayng: Boko Haram slices off women’s ears in new level of brutality https://t.co/VkfbvudKJW","location":"Port Harcourt, Nigeria.","time_created":"Mon Aug 05 10:53:28 +0000 2019","tweeted_by":"@Radiouniport1"}
{"_id":{"$oid":"5d480abd1918e212da2c95d2"},"tweet_id":{"$numberLong":"1158330234627854337"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos,Nigeria","time_created":"Mon Aug 05 10:53:43 +0000 2019","tweeted_by":"@Iammairre"}
{"_id":{"$oid":"5d480ac11918e212da2c95d3"},"tweet_id":{"$numberLong":"1158330254555000833"},"content":"RT @Chxta: What has Sowore complained about? \n\nRise in violence, rise in kidnappings, pervasive corruption. \n\nHas the government addressed…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:53:48 +0000 2019","tweeted_by":"@jerrykeks"}
{"_id":{"$oid":"5d480ad81918e212da2c95d4"},"tweet_id":{"$numberLong":"1158330351846137861"},"content":"RT @Impactvision4: The manifestation of corruption raises everyday...\nThe problem to Nigeria problem is the generation youths. \nLet stand o…","location":"Nigeria","time_created":"Mon Aug 05 10:54:11 +0000 2019","tweeted_by":"@JehovahNil"}
{"_id":{"$oid":"5d480ada1918e212da2c95d5"},"tweet_id":{"$numberLong":"1158330359643353088"},"content":"The entire country is collapsing on Buhari's head and his solution is still force.\n\nBoko Haram fighters, Fulani her… https://t.co/1210dCSm3i","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:54:13 +0000 2019","tweeted_by":"@AbdulRaheemAd"}
{"_id":{"$oid":"5d480ae91918e212da2c95d6"},"tweet_id":{"$numberLong":"1158330423103148032"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 10:54:28 +0000 2019","tweeted_by":"@ms_udoh"}
{"_id":{"$oid":"5d480af11918e212da2c95d7"},"tweet_id":{"$numberLong":"1158330455453835264"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nothern Nigeria. ","time_created":"Mon Aug 05 10:54:35 +0000 2019","tweeted_by":"@Abduladan"}
{"_id":{"$oid":"5d480afc1918e212da2c95d8"},"tweet_id":{"$numberLong":"1158330502908018688"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:54:47 +0000 2019","tweeted_by":"@NigeriaMonster"}
{"_id":{"$oid":"5d480b151918e212da2c95d9"},"tweet_id":{"$numberLong":"1158330606645850113"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 10:55:12 +0000 2019","tweeted_by":"@__gaza_"}
{"_id":{"$oid":"5d480b161918e212da2c95da"},"tweet_id":{"$numberLong":"1158330610177466369"},"content":"This is what happens when you are being governed by cows. They are using Boko Haram to kill our innocent citizens.… https://t.co/cg6sJ2yTUG","location":"Oyo, Nigeria","time_created":"Mon Aug 05 10:55:12 +0000 2019","tweeted_by":"@SunnyolOFFICIAL"}
{"_id":{"$oid":"5d480b161918e212da2c95db"},"tweet_id":{"$numberLong":"1158330613059002368"},"content":"RT @marwilliamson: And until the Democratic Party is ready to speak to the deeper corruption, knowing that we ourselves sometimes because o…","location":"South Africa","time_created":"Mon Aug 05 10:55:13 +0000 2019","tweeted_by":"@LiveNewsVegan"}
{"_id":{"$oid":"5d480b261918e212da2c95dc"},"tweet_id":{"$numberLong":"1158330674195107840"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:55:28 +0000 2019","tweeted_by":"@oyegoketomisin"}
{"_id":{"$oid":"5d480b301918e212da2c95dd"},"tweet_id":{"$numberLong":"1158330717300035584"},"content":"RT @ItsMutai: If you ask over half of Africans: What is Boko Haram? They Don't know. Watch this video.\nThread in Part 1, 2 \n\nVideo: courtes…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 10:55:38 +0000 2019","tweeted_by":"@alimahat83"}
{"_id":{"$oid":"5d480b331918e212da2c95de"},"tweet_id":{"$numberLong":"1158330728884637696"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Oyo, Nigeria","time_created":"Mon Aug 05 10:55:41 +0000 2019","tweeted_by":"@Fao_Official1"}
{"_id":{"$oid":"5d480b341918e212da2c95df"},"tweet_id":{"$numberLong":"1158330735352303616"},"content":"RT @emcee_tosdam: @OgbeniDipo Sir, I think if u can't join a peaceful protest to charge government to do d needful on insecurity, u shld no…","location":"Ogun, Nigeria","time_created":"Mon Aug 05 10:55:42 +0000 2019","tweeted_by":"@SekoniTweets"}
{"_id":{"$oid":"5d480b371918e212da2c95e0"},"tweet_id":{"$numberLong":"1158330746995650560"},"content":"RT @fattylincorn01: Remember those students who were killed in their dormitory in buni yadi yobestate.Under PDP Boko Haram slaughtered thos…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:55:45 +0000 2019","tweeted_by":"@jokerike"}
{"_id":{"$oid":"5d480b391918e212da2c95e1"},"tweet_id":{"$numberLong":"1158330754344148997"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:55:47 +0000 2019","tweeted_by":"@uudubor"}
{"_id":{"$oid":"5d480b471918e212da2c95e2"},"tweet_id":{"$numberLong":"1158330815312478208"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:56:01 +0000 2019","tweeted_by":"@Salexco_1"}
{"_id":{"$oid":"5d480b4b1918e212da2c95e3"},"tweet_id":{"$numberLong":"1158330832618233859"},"content":"RT @DA_GPL: Since the DA-led multiparty government took over, crime and corruption have become public enemy number one in the City of Johan…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 10:56:05 +0000 2019","tweeted_by":"@MaddiebHicklin"}
{"_id":{"$oid":"5d480b531918e212da2c95e4"},"tweet_id":{"$numberLong":"1158330865061126147"},"content":"@PlusTVAfrica Look at the idiots rejoicing over unarmed protesters.. Idiots!!\n\nWhen Boko Haram comes, they off unif… https://t.co/XcTRKIjnzl","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:56:13 +0000 2019","tweeted_by":"@Kachi_Kach22"}
{"_id":{"$oid":"5d480b581918e212da2c95e5"},"tweet_id":{"$numberLong":"1158330882811412482"},"content":"RT @Wakabando: I find this “corruption is cancer” wrong. While Cancer is a disease, Corruption is sheer greed. CORRUPTION CAN CAUSE CANCER…","location":"Kisumu, Kenya","time_created":"Mon Aug 05 10:56:17 +0000 2019","tweeted_by":"@OnonoPardie"}
{"_id":{"$oid":"5d480b5b1918e212da2c95e6"},"tweet_id":{"$numberLong":"1158330898317828097"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos,Nigeria.","time_created":"Mon Aug 05 10:56:21 +0000 2019","tweeted_by":"@metu_nmuta"}
{"_id":{"$oid":"5d480b5d1918e212da2c95e7"},"tweet_id":{"$numberLong":"1158330906303770624"},"content":"RT @FOnyeoziri: You are quick to grant Boko Haram members who were captured in combat amnesty. You turn a blind eye whenever herdsmen kill…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:56:23 +0000 2019","tweeted_by":"@itisierhi"}
{"_id":{"$oid":"5d480b5d1918e212da2c95e8"},"tweet_id":{"$numberLong":"1158330906786095104"},"content":"RT @iamayogeorge: Any kind of protest has become terrorism in a country where Bandits are called to a table and Kidnappers are having a gre…","location":"Nigeria","time_created":"Mon Aug 05 10:56:23 +0000 2019","tweeted_by":"@ChristChristu1"}
{"_id":{"$oid":"5d480b601918e212da2c95e9"},"tweet_id":{"$numberLong":"1158330919352176640"},"content":"RT @SoworeM: Over the years, our government has mismanaged the country’s vast oil riches through incompetence and corruption.\n\nBlood of inn…","location":"Nigeria","time_created":"Mon Aug 05 10:56:26 +0000 2019","tweeted_by":"@JehovahNil"}
{"_id":{"$oid":"5d480b761918e212da2c95ea"},"tweet_id":{"$numberLong":"1158331011542990849"},"content":"RT @ItsMutai: If you ask over half of Africans: What is Boko Haram? They Don't know. Watch this video.\nThread in Part 1, 2 \n\nVideo: courtes…","location":"Makueni Kenya","time_created":"Mon Aug 05 10:56:48 +0000 2019","tweeted_by":"@PHILIPMUSYOKA7"}
{"_id":{"$oid":"5d480b871918e212da2c95eb"},"tweet_id":{"$numberLong":"1158331085035622401"},"content":"RT @IvankaTrump: White supremacy, like all other forms of terrorism, is an evil that must be destroyed.","location":"Accra, Ghana","time_created":"Mon Aug 05 10:57:06 +0000 2019","tweeted_by":"@theslow_grind"}
{"_id":{"$oid":"5d480b891918e212da2c95ec"},"tweet_id":{"$numberLong":"1158331090635055104"},"content":"RT @FOnyeoziri: You are quick to grant Boko Haram members who were captured in combat amnesty. You turn a blind eye whenever herdsmen kill…","location":"Calabar, Nigeria","time_created":"Mon Aug 05 10:57:07 +0000 2019","tweeted_by":"@monyeiisrael1"}
{"_id":{"$oid":"5d480b941918e212da2c95ed"},"tweet_id":{"$numberLong":"1158331138852773889"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:57:18 +0000 2019","tweeted_by":"@KorlarporO"}
{"_id":{"$oid":"5d480ba11918e212da2c95ee"},"tweet_id":{"$numberLong":"1158331193840066566"},"content":"RT @PoliceNG: The Force wishes to state unequivocally that the call amounts to treasonable felony and acts of terrorism and will therefore…","location":"Lagos,Nigeria","time_created":"Mon Aug 05 10:57:32 +0000 2019","tweeted_by":"@lawrence_pelumi"}
{"_id":{"$oid":"5d480bac1918e212da2c95ef"},"tweet_id":{"$numberLong":"1158331237964177408"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Enugu, Nigeria","time_created":"Mon Aug 05 10:57:42 +0000 2019","tweeted_by":"@papi_charley"}
{"_id":{"$oid":"5d480bac1918e212da2c95f0"},"tweet_id":{"$numberLong":"1158331238517792768"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:57:42 +0000 2019","tweeted_by":"@OrdinaryOFS"}
{"_id":{"$oid":"5d480bbb1918e212da2c95f1"},"tweet_id":{"$numberLong":"1158331302694785029"},"content":"RT @Ditiro98634245: @HloniNyet clearly there's no intent of corruption in Cyril's part but Zuma knew what he was up to","location":"Mafikeng, South Africa","time_created":"Mon Aug 05 10:57:57 +0000 2019","tweeted_by":"@William58591138"}
{"_id":{"$oid":"5d480bcc1918e212da2c95f2"},"tweet_id":{"$numberLong":"1158331376229396481"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:58:15 +0000 2019","tweeted_by":"@Kaylonati"}
{"_id":{"$oid":"5d480bd21918e212da2c95f3"},"tweet_id":{"$numberLong":"1158331397850959873"},"content":"In the middle of the storms and terror, he passes by to join me in my worst nightmares only to help me through, hmm… https://t.co/HBR5p2r1yA","location":"Accra, Ghana","time_created":"Mon Aug 05 10:58:20 +0000 2019","tweeted_by":"@BarPreacher"}
{"_id":{"$oid":"5d480be01918e212da2c95f4"},"tweet_id":{"$numberLong":"1158331459331067904"},"content":"RT @realFFK: America has to stand up to white nationalist, supremacist terrorism.They must CALL it what it is and DEAL with it. \n\nNigeria h…","location":"Portharcourt, Nigeria.","time_created":"Mon Aug 05 10:58:35 +0000 2019","tweeted_by":"@fohirein"}
{"_id":{"$oid":"5d480bee1918e212da2c95f5"},"tweet_id":{"$numberLong":"1158331516855959553"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria ","time_created":"Mon Aug 05 10:58:49 +0000 2019","tweeted_by":"@AugustThe4th"}
{"_id":{"$oid":"5d480bfe1918e212da2c95f6"},"tweet_id":{"$numberLong":"1158331581217611776"},"content":"@HenshawKate It is all about show off \u0026amp; to be noticed,products of insecurity \u0026amp; low self esteem.","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:59:04 +0000 2019","tweeted_by":"@JEriobu"}
{"_id":{"$oid":"5d480c091918e212da2c95f7"},"tweet_id":{"$numberLong":"1158331625622687744"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:59:14 +0000 2019","tweeted_by":"@eyesan_mark"}
{"_id":{"$oid":"5d480c131918e212da2c95f8"},"tweet_id":{"$numberLong":"1158331667930636288"},"content":"RT @harrygraphicx: Am the biggest thing in Ghana aside corruption' #5A3 \n@_Lyricaljoe - 5th August 3 https://t.co/BmhJddKmHf.. The last l…","location":"Ghana","time_created":"Mon Aug 05 10:59:25 +0000 2019","tweeted_by":"@alkudus6teen"}
{"_id":{"$oid":"5d480c151918e212da2c95f9"},"tweet_id":{"$numberLong":"1158331678953299969"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria","time_created":"Mon Aug 05 10:59:27 +0000 2019","tweeted_by":"@JehovahNil"}
{"_id":{"$oid":"5d480c161918e212da2c95fa"},"tweet_id":{"$numberLong":"1158331683801894912"},"content":"@MrAyeDee @PoliceNG Counter terrorism na ni. They should go to Ore expressway","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:59:28 +0000 2019","tweeted_by":"@saved4live"}
{"_id":{"$oid":"5d480c211918e212da2c95fb"},"tweet_id":{"$numberLong":"1158331728831889408"},"content":"@ChibuikeAmeachi Jos electricity distribution company are just another wing and extension of corruption and exploit… https://t.co/R54E9g3H96","location":"Bauchi, Nigeria","time_created":"Mon Aug 05 10:59:39 +0000 2019","tweeted_by":"@MAIZANKOT"}
{"_id":{"$oid":"5d480c241918e212da2c95fc"},"tweet_id":{"$numberLong":"1158331740928335873"},"content":"There are many organisations, that are called civil organisations, anti- corruption organisations, other from overs… https://t.co/bgswelAfrw","location":"South Africa ","time_created":"Mon Aug 05 10:59:42 +0000 2019","tweeted_by":"@TheWordIsLife10"}
{"_id":{"$oid":"5d480c241918e212da2c95fd"},"tweet_id":{"$numberLong":"1158331741809061888"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:59:42 +0000 2019","tweeted_by":"@official_Chur"}
{"_id":{"$oid":"5d480c261918e212da2c95fe"},"tweet_id":{"$numberLong":"1158331747412709383"},"content":"If Nigeria security agencies can fight insecurities and corruption the way they fight protesters, Nigeria will be a… https://t.co/h0ZRoJOPrA","location":"Nigeria","time_created":"Mon Aug 05 10:59:44 +0000 2019","tweeted_by":"@makydolla"}
{"_id":{"$oid":"5d480c281918e212da2c95ff"},"tweet_id":{"$numberLong":"1158331756338171905"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"South Africa","time_created":"Mon Aug 05 10:59:46 +0000 2019","tweeted_by":"@LionkingOla"}
{"_id":{"$oid":"5d480c281918e212da2c9600"},"tweet_id":{"$numberLong":"1158331756946350080"},"content":"@otunba_tbam The so called celebrities are coward .... let them keep hiding under their insecurity @PoliceNG… https://t.co/pXsGVSt9cP","location":"Nigeria lagos","time_created":"Mon Aug 05 10:59:46 +0000 2019","tweeted_by":"@sexxybabbe5"}
{"_id":{"$oid":"5d480c321918e212da2c9601"},"tweet_id":{"$numberLong":"1158331798050545666"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:59:56 +0000 2019","tweeted_by":"@tommss__a"}
{"_id":{"$oid":"5d480c321918e212da2c9602"},"tweet_id":{"$numberLong":"1158331801280143360"},"content":"RT @SarahHuckabee: Appalled and heartbroken by the act of terror against innocent people in El Paso, Texas. Americans are with you and stan…","location":"Angola on the Lake, NY","time_created":"Mon Aug 05 10:59:56 +0000 2019","tweeted_by":"@Teeny16281391"}
{"_id":{"$oid":"5d480c351918e212da2c9603"},"tweet_id":{"$numberLong":"1158331812596334593"},"content":"Kajuru crisis: Adara people proffer solution to insecurity in their area https://t.co/q38gkcUu7R https://t.co/kKMCxX5TaS","location":"Lagos, Nigeria","time_created":"Mon Aug 05 10:59:59 +0000 2019","tweeted_by":"@newsmertng"}
{"_id":{"$oid":"5d480c3d1918e212da2c9604"},"tweet_id":{"$numberLong":"1158331847010660353"},"content":"Boko Haram is no longer Nigeria's most notorious security threat. https://t.co/CqO38Owh1B","location":"Victoria Island, Nigeria","time_created":"Mon Aug 05 11:00:07 +0000 2019","tweeted_by":"@republicjournal"}
{"_id":{"$oid":"5d480c3d1918e212da2c9605"},"tweet_id":{"$numberLong":"1158331847228760066"},"content":"RT @ChiomaChuka: Sowore is a bigger problem than the herdsmen crisis? Than the kidnappers who have made camp on our roads? Than Boko Haram,…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:00:07 +0000 2019","tweeted_by":"@JopyKayode"}
{"_id":{"$oid":"5d480c4b1918e212da2c9606"},"tweet_id":{"$numberLong":"1158331904476815360"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Enugu,Nigeria","time_created":"Mon Aug 05 11:00:21 +0000 2019","tweeted_by":"@_King_Ce"}
{"_id":{"$oid":"5d480c641918e212da2c9607"},"tweet_id":{"$numberLong":"1158332011976822785"},"content":"RT @MzalendoWatch: Speaker Justin Muturi says rampant corruption in public service continues to thrive because the Executive does not act o…","location":"Nairobi,Kenya","time_created":"Mon Aug 05 11:00:47 +0000 2019","tweeted_by":"@AidaNow19"}
{"_id":{"$oid":"5d480c861918e212da2c9608"},"tweet_id":{"$numberLong":"1158332151907176448"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos Nigeria","time_created":"Mon Aug 05 11:01:20 +0000 2019","tweeted_by":"@TheRealUche_"}
{"_id":{"$oid":"5d480c8b1918e212da2c9609"},"tweet_id":{"$numberLong":"1158332173788831745"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:01:25 +0000 2019","tweeted_by":"@ioshilagun"}
{"_id":{"$oid":"5d480c8f1918e212da2c960a"},"tweet_id":{"$numberLong":"1158332192956866560"},"content":"RT @HarunMaruf: BREAKING: 2 Al-Shabaabs executed today for terrorism in 2017/18. Anshour O. Abukar (in green) 23, Mohamed A. Borow, 25 were…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:01:30 +0000 2019","tweeted_by":"@hiboomar4"}
{"_id":{"$oid":"5d480c931918e212da2c960b"},"tweet_id":{"$numberLong":"1158332209222311937"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos Nigeria","time_created":"Mon Aug 05 11:01:34 +0000 2019","tweeted_by":"@TheRealUche_"}
{"_id":{"$oid":"5d480c961918e212da2c960c"},"tweet_id":{"$numberLong":"1158332220278550529"},"content":"RT @Klumzyballerina: Betraying The Game a documentary by Anas Aremeyaw that exposed the corruption in Ghanaian football was pretty interes…","location":"📍Accra, Ghana","time_created":"Mon Aug 05 11:01:36 +0000 2019","tweeted_by":"@blisskingg"}
{"_id":{"$oid":"5d480cb01918e212da2c960d"},"tweet_id":{"$numberLong":"1158332332295819264"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Durban, South Africa","time_created":"Mon Aug 05 11:02:03 +0000 2019","tweeted_by":"@naledimolebale1"}
{"_id":{"$oid":"5d480cc61918e212da2c960e"},"tweet_id":{"$numberLong":"1158332421026267139"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:02:24 +0000 2019","tweeted_by":"@AgbekeShugar"}
{"_id":{"$oid":"5d480cee1918e212da2c960f"},"tweet_id":{"$numberLong":"1158332588639051776"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":" Nigeria","time_created":"Mon Aug 05 11:03:04 +0000 2019","tweeted_by":"@Abk_Shedullah"}
{"_id":{"$oid":"5d480cef1918e212da2c9610"},"tweet_id":{"$numberLong":"1158332593198292992"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria.","time_created":"Mon Aug 05 11:03:05 +0000 2019","tweeted_by":"@Chaibuz7"}
{"_id":{"$oid":"5d480cf11918e212da2c9611"},"tweet_id":{"$numberLong":"1158332600349528064"},"content":"RT @sesugh_akume: The demands of #RevolutionNow:\n\n1) Demand for an economy that works for all\n\n2) End to insecurity and insurgency\n\n3) End…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:03:07 +0000 2019","tweeted_by":"@Bbabz17"}
{"_id":{"$oid":"5d480d1a1918e212da2c9612"},"tweet_id":{"$numberLong":"1158332773624684544"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 11:03:48 +0000 2019","tweeted_by":"@Dappab"}
{"_id":{"$oid":"5d480d1b1918e212da2c9613"},"tweet_id":{"$numberLong":"1158332778259374080"},"content":"RT @BetterNG: If only these sophisticated guns were given to soldiers fighting Boko Haram, there would not be a need to bury 1000 of them s…","location":"Yenagoa, Nigeria","time_created":"Mon Aug 05 11:03:49 +0000 2019","tweeted_by":"@yeilagha"}
{"_id":{"$oid":"5d480d1b1918e212da2c9614"},"tweet_id":{"$numberLong":"1158332779148566528"},"content":"Kenya was an elite nation back in those days. We can get back that status when we deal with corruption and impunity","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:03:49 +0000 2019","tweeted_by":"@watu_saba"}
{"_id":{"$oid":"5d480d201918e212da2c9615"},"tweet_id":{"$numberLong":"1158332798043938816"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:03:54 +0000 2019","tweeted_by":"@louis_abah"}
{"_id":{"$oid":"5d480d261918e212da2c9616"},"tweet_id":{"$numberLong":"1158332823583055872"},"content":"Wow. A group of UN investigators were preparing to fly out of Yemen last year with evidence of corruption at the WH… https://t.co/nNzOxAxkVd","location":"Cairo, Egypt","time_created":"Mon Aug 05 11:04:00 +0000 2019","tweeted_by":"@glcarlstrom"}
{"_id":{"$oid":"5d480d261918e212da2c9617"},"tweet_id":{"$numberLong":"1158332825512415237"},"content":"RT @Tutsy22: A week in Brief:\n\n* 14 were kidnapped, including 5 RCCG pastors by Fulani herdsmen. \n\n* 60 persons killed by in Boko Haram.\n\n*…","location":"Bayelsa, Nigeria","time_created":"Mon Aug 05 11:04:01 +0000 2019","tweeted_by":"@JoshuaMaximes"}
{"_id":{"$oid":"5d480d371918e212da2c9618"},"tweet_id":{"$numberLong":"1158332894047342592"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:04:17 +0000 2019","tweeted_by":"@olabode_jnr"}
{"_id":{"$oid":"5d480d381918e212da2c9619"},"tweet_id":{"$numberLong":"1158332900200394752"},"content":"RT @iamsweetness_: Please vote for @bensonboris who has been abducted for trying to expose lies and corruption should be win this one. http…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:04:18 +0000 2019","tweeted_by":"@Imoemi_"}
{"_id":{"$oid":"5d480d521918e212da2c961a"},"tweet_id":{"$numberLong":"1158333011810750464"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Enugu, Nigeria","time_created":"Mon Aug 05 11:04:45 +0000 2019","tweeted_by":"@MercyOgo2"}
{"_id":{"$oid":"5d480d611918e212da2c961b"},"tweet_id":{"$numberLong":"1158333071999066112"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:04:59 +0000 2019","tweeted_by":"@eddygunners101"}
{"_id":{"$oid":"5d480d6c1918e212da2c961c"},"tweet_id":{"$numberLong":"1158333117318520833"},"content":"RT @Independent: Trump smirked at the idea of shooting migrants at a rally three months before the El Paso terror attack https://t.co/BjSj4…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:05:10 +0000 2019","tweeted_by":"@GabrielGrims"}
{"_id":{"$oid":"5d480d6c1918e212da2c961d"},"tweet_id":{"$numberLong":"1158333117792444416"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Multimedia University of Kenya","time_created":"Mon Aug 05 11:05:10 +0000 2019","tweeted_by":"@__jamesdavid"}
{"_id":{"$oid":"5d480d701918e212da2c961e"},"tweet_id":{"$numberLong":"1158333136398426112"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:05:15 +0000 2019","tweeted_by":"@Deepguy_Idagwu"}
{"_id":{"$oid":"5d480d7a1918e212da2c961f"},"tweet_id":{"$numberLong":"1158333179696209920"},"content":"RT @RepJimBanks: I deployed to Afghanistan as a response to radical Islamic terrorism. We now face a different enemy that has also emerged…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:05:25 +0000 2019","tweeted_by":"@mathekafk"}
{"_id":{"$oid":"5d480d821918e212da2c9620"},"tweet_id":{"$numberLong":"1158333212046893056"},"content":"RT @ewarren: I just talked to @Kasie Hunt about how white nationalism is domestic terrorism. And as Donald Trump has made one ugly statemen…","location":"Dahab, South Sinai, Egypt","time_created":"Mon Aug 05 11:05:33 +0000 2019","tweeted_by":"@BasiaSosnowska"}
{"_id":{"$oid":"5d480d891918e212da2c9621"},"tweet_id":{"$numberLong":"1158333238219350016"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:05:39 +0000 2019","tweeted_by":"@misss__audrey"}
{"_id":{"$oid":"5d480d8a1918e212da2c9622"},"tweet_id":{"$numberLong":"1158333239616032768"},"content":"In the middle of the storms and terror, he passes by to join me in my worst nightmares only to help me through, hmm… https://t.co/zE3M22C5VG","location":"Accra, Ghana","time_created":"Mon Aug 05 11:05:39 +0000 2019","tweeted_by":"@BarPreacher"}
{"_id":{"$oid":"5d480d931918e212da2c9623"},"tweet_id":{"$numberLong":"1158333279352717312"},"content":"RT @FreddieCampion: Remember last week when the director of the FBI said white supremacists were behind pretty much all domestic terrorism…","location":"Kambui, Kenya","time_created":"Mon Aug 05 11:05:49 +0000 2019","tweeted_by":"@ashley_waithera"}
{"_id":{"$oid":"5d480d941918e212da2c9624"},"tweet_id":{"$numberLong":"1158333283891122177"},"content":"RT @paulkrugman: A reminder: 10 years ago an internal Homeland Security report warned about the danger of right-wing domestic terrorism. Re…","location":"Dahab, South Sinai, Egypt","time_created":"Mon Aug 05 11:05:50 +0000 2019","tweeted_by":"@BasiaSosnowska"}
{"_id":{"$oid":"5d480d9e1918e212da2c9625"},"tweet_id":{"$numberLong":"1158333325838356480"},"content":"RT @CIPEAfrica: Last week, the CIPE-supported report on the impact of #insecurity on the national economy of #Mauritania was validated by t…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 11:06:00 +0000 2019","tweeted_by":"@_Africa24"}
{"_id":{"$oid":"5d480da61918e212da2c9626"},"tweet_id":{"$numberLong":"1158333359074009089"},"content":"#Unpopular_opinion: If Only Buhari and the so called Armed Forces of Nigeria! Reacted fiercely towards Boko Haram!… https://t.co/Q2AwRx4ss1","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:06:08 +0000 2019","tweeted_by":"@kali_Editz"}
{"_id":{"$oid":"5d480dc41918e212da2c9627"},"tweet_id":{"$numberLong":"1158333484731158528"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:06:38 +0000 2019","tweeted_by":"@dalhataminu"}
{"_id":{"$oid":"5d480dd51918e212da2c9628"},"tweet_id":{"$numberLong":"1158333555992334336"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:06:55 +0000 2019","tweeted_by":"@Comeback_snarky"}
{"_id":{"$oid":"5d480dd81918e212da2c9629"},"tweet_id":{"$numberLong":"1158333563244298240"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:06:56 +0000 2019","tweeted_by":"@Engr_Emma_Olay"}
{"_id":{"$oid":"5d480ddb1918e212da2c962a"},"tweet_id":{"$numberLong":"1158333584031305728"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Maiduguri, Nigeria","time_created":"Mon Aug 05 11:07:01 +0000 2019","tweeted_by":"@adamnuhu13"}
{"_id":{"$oid":"5d480ddf1918e212da2c962b"},"tweet_id":{"$numberLong":"1158333600758214656"},"content":"RT @MiddleEastEye: 11 commissions will be formed to work independently on issues of corruption and reformation of the civil service, as wel…","location":"Sudan","time_created":"Mon Aug 05 11:07:05 +0000 2019","tweeted_by":"@Mohamed61096976"}
{"_id":{"$oid":"5d480de31918e212da2c962c"},"tweet_id":{"$numberLong":"1158333617082458113"},"content":"RT @spazzle_: Remember to pray against the spirit of road carnage, cancer and corruption in this country... The number of lives they contin…","location":"Mombasa,Kenya","time_created":"Mon Aug 05 11:07:09 +0000 2019","tweeted_by":"@AMo_DeGuzu"}
{"_id":{"$oid":"5d480de41918e212da2c962d"},"tweet_id":{"$numberLong":"1158333621289308160"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Accra, Ghana","time_created":"Mon Aug 05 11:07:10 +0000 2019","tweeted_by":"@_emawk"}
{"_id":{"$oid":"5d480de61918e212da2c962e"},"tweet_id":{"$numberLong":"1158333626637045760"},"content":"@dr_spex @Johnpaul_ezeani @edechiene There's insecurity in enugu?","location":"Enugu, Nigeria","time_created":"Mon Aug 05 11:07:12 +0000 2019","tweeted_by":"@Deraah"}
{"_id":{"$oid":"5d480dfc1918e212da2c962f"},"tweet_id":{"$numberLong":"1158333724003577856"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos,Nigeria","time_created":"Mon Aug 05 11:07:35 +0000 2019","tweeted_by":"@Necato1"}
{"_id":{"$oid":"5d480e071918e212da2c9630"},"tweet_id":{"$numberLong":"1158333769151107074"},"content":"RT @Auxano01: SARS will arrest and extort you!\nBoko Haram is defeated yet Leah Sharibu is nowhere to be found!\nKiller Hersdmen still run ra…","location":"Nigeria","time_created":"Mon Aug 05 11:07:46 +0000 2019","tweeted_by":"@NobertDaniels"}
{"_id":{"$oid":"5d480e091918e212da2c9631"},"tweet_id":{"$numberLong":"1158333778911272960"},"content":"@Railajunior Corruption is a self decision mainly.\nFor corruption to end individuals must make the decision first.… https://t.co/LnITVJ7nua","location":"Kilifi, Kenya","time_created":"Mon Aug 05 11:07:48 +0000 2019","tweeted_by":"@NyakwarWangah"}
{"_id":{"$oid":"5d480e141918e212da2c9632"},"tweet_id":{"$numberLong":"1158333821391183872"},"content":"@AP That's corruption!","location":"Tarauni kano, Nigeria.","time_created":"Mon Aug 05 11:07:58 +0000 2019","tweeted_by":"@umarsonmediapub"}
{"_id":{"$oid":"5d480e231918e212da2c9633"},"tweet_id":{"$numberLong":"1158333887354941440"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 11:08:14 +0000 2019","tweeted_by":"@overhypeisaac"}
{"_id":{"$oid":"5d480e271918e212da2c9634"},"tweet_id":{"$numberLong":"1158333904828424192"},"content":"@realDonaldTrump Mr Trump your immigration policy is reinforcing domestic terrorism rather than dousing it.","location":"Nigeria","time_created":"Mon Aug 05 11:08:18 +0000 2019","tweeted_by":"@AlfredIbojo"}
{"_id":{"$oid":"5d480e281918e212da2c9635"},"tweet_id":{"$numberLong":"1158333907886116864"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:08:19 +0000 2019","tweeted_by":"@oritz___"}
{"_id":{"$oid":"5d480e2b1918e212da2c9636"},"tweet_id":{"$numberLong":"1158333919902797833"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria ","time_created":"Mon Aug 05 11:08:21 +0000 2019","tweeted_by":"@oluwafemioreyom"}
{"_id":{"$oid":"5d480e2b1918e212da2c9637"},"tweet_id":{"$numberLong":"1158333921446236161"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 11:08:22 +0000 2019","tweeted_by":"@overhypeisaac"}
{"_id":{"$oid":"5d480e2d1918e212da2c9638"},"tweet_id":{"$numberLong":"1158333927465132033"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:08:23 +0000 2019","tweeted_by":"@Don_Semaj"}
{"_id":{"$oid":"5d480e341918e212da2c9639"},"tweet_id":{"$numberLong":"1158333959505436675"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Rivers, Nigeria","time_created":"Mon Aug 05 11:08:31 +0000 2019","tweeted_by":"@AmDsparkle"}
{"_id":{"$oid":"5d480e401918e212da2c963a"},"tweet_id":{"$numberLong":"1158334010935971845"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Marrakesh-Tensift-El Haouz, Morocco","time_created":"Mon Aug 05 11:08:43 +0000 2019","tweeted_by":"@nanasada05"}
{"_id":{"$oid":"5d480e431918e212da2c963b"},"tweet_id":{"$numberLong":"1158334021421735942"},"content":"@realDonaldTrump Its not a situation Donald...its a bloodbath, an execution, a domestic terrorism, a mass murder. L… https://t.co/ssKnGjsvgw","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:08:46 +0000 2019","tweeted_by":"@Stanley_Mwaweru"}
{"_id":{"$oid":"5d480e481918e212da2c963c"},"tweet_id":{"$numberLong":"1158334042145775617"},"content":"RT @t_mangenam: We know corruption is a horrible monster, but now we also know it can kill the soul. Our souls are in peril now that the SA…","location":"Mzansi,Azania,or South Africa","time_created":"Mon Aug 05 11:08:51 +0000 2019","tweeted_by":"@khozak"}
{"_id":{"$oid":"5d480e4f1918e212da2c963d"},"tweet_id":{"$numberLong":"1158334066833408004"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:08:56 +0000 2019","tweeted_by":"@IamOjoye24"}
{"_id":{"$oid":"5d480e611918e212da2c963e"},"tweet_id":{"$numberLong":"1158334144981667840"},"content":"RT @nntaleb: @neiltyson 2/ Here I explain that one shd NEVER compare car accidents to terrorism (like these idiots Pinker or Tyson).\n\nhttps…","location":"Alexandria, Egypt","time_created":"Mon Aug 05 11:09:15 +0000 2019","tweeted_by":"@farid56"}
{"_id":{"$oid":"5d480e671918e212da2c963f"},"tweet_id":{"$numberLong":"1158334171015786496"},"content":"RT @MubiinH: When Edward Zuma was telling Pravin Gordhan the truth I thought he was just hiding his corruption kgante birds of same feather…","location":"Pretoria Lynwood South Africa","time_created":"Mon Aug 05 11:09:21 +0000 2019","tweeted_by":"@strellsonL"}
{"_id":{"$oid":"5d480e6b1918e212da2c9640"},"tweet_id":{"$numberLong":"1158334186740232194"},"content":"RT @glcarlstrom: Wow. A group of UN investigators were preparing to fly out of Yemen last year with evidence of corruption at the WHO. The…","location":"Cairo, Egypt","time_created":"Mon Aug 05 11:09:25 +0000 2019","tweeted_by":"@SimaDiab"}
{"_id":{"$oid":"5d480e9c1918e212da2c9641"},"tweet_id":{"$numberLong":"1158334391090929665"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Delta State, Nigeria.","time_created":"Mon Aug 05 11:10:14 +0000 2019","tweeted_by":"@Xopheeyah"}
{"_id":{"$oid":"5d480e9d1918e212da2c9642"},"tweet_id":{"$numberLong":"1158334395628978177"},"content":"RT @BambeniZikode: The real face of terrorism, worldwide. https://t.co/O01jzc7mtT","location":"Pretoria Lynwood South Africa","time_created":"Mon Aug 05 11:10:15 +0000 2019","tweeted_by":"@strellsonL"}
{"_id":{"$oid":"5d480e9f1918e212da2c9643"},"tweet_id":{"$numberLong":"1158334405406011393"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:10:17 +0000 2019","tweeted_by":"@priestogho"}
{"_id":{"$oid":"5d480ea51918e212da2c9644"},"tweet_id":{"$numberLong":"1158334429854670850"},"content":"@realDonaldTrump Its not an event Donald...its a bloodbath, an execution, a domestic terrorism, a mass murder. Less… https://t.co/Hed0Z4Vi1W","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:10:23 +0000 2019","tweeted_by":"@Stanley_Mwaweru"}
{"_id":{"$oid":"5d480ea81918e212da2c9645"},"tweet_id":{"$numberLong":"1158334445017063424"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:10:27 +0000 2019","tweeted_by":"@Micheal_Mirus"}
{"_id":{"$oid":"5d480eb21918e212da2c9646"},"tweet_id":{"$numberLong":"1158334486444224513"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:10:37 +0000 2019","tweeted_by":"@Phaamsaam"}
{"_id":{"$oid":"5d480ede1918e212da2c9647"},"tweet_id":{"$numberLong":"1158334672587362304"},"content":"@BrosJayNG @GEJonathan Sorry, I lost my mother at the height of Boko Haram's bomb explosions in Kano. I can only remember you with that.","location":"Abuja, Nigeria ","time_created":"Mon Aug 05 11:11:21 +0000 2019","tweeted_by":"@alpha1marine"}
{"_id":{"$oid":"5d480ee81918e212da2c9648"},"tweet_id":{"$numberLong":"1158334712181592064"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:11:30 +0000 2019","tweeted_by":"@OgbeniTayo"}
{"_id":{"$oid":"5d480eea1918e212da2c9649"},"tweet_id":{"$numberLong":"1158334720733851648"},"content":"@shaunmanzi @SpheDludla It's just mismanagement and corruption that's killing SABC. @DStv used to purchase games fr… https://t.co/GTsJMjQutR","location":"South Africa,Johannesburg","time_created":"Mon Aug 05 11:11:32 +0000 2019","tweeted_by":"@devikhumalo"}
{"_id":{"$oid":"5d480eed1918e212da2c964a"},"tweet_id":{"$numberLong":"1158334734340112385"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria 🇳🇬","time_created":"Mon Aug 05 11:11:36 +0000 2019","tweeted_by":"@Yitzchak89"}
{"_id":{"$oid":"5d480ef31918e212da2c964b"},"tweet_id":{"$numberLong":"1158334757920542721"},"content":"RT @Dispatch_DD: Inside Nessie Knight Hospital in pictures: \n\nPatients at a crumbling Nessie Knight Hospital in Qumbu live in terror that t…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 11:11:41 +0000 2019","tweeted_by":"@XhamelaK"}
{"_id":{"$oid":"5d480ef31918e212da2c964c"},"tweet_id":{"$numberLong":"1158334758356733952"},"content":"@RuqiaBotan This photos are incomparable. The mayor was killed by Alshabaab terror group while Mr. Khashoji was sl… https://t.co/ja8TYGnTmi","location":"Puntland State, Somalia","time_created":"Mon Aug 05 11:11:41 +0000 2019","tweeted_by":"@abdalla_jama"}
{"_id":{"$oid":"5d480f121918e212da2c964d"},"tweet_id":{"$numberLong":"1158334885418999813"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Mahlanyeng, South Africa","time_created":"Mon Aug 05 11:12:12 +0000 2019","tweeted_by":"@Ma_LoJ"}
{"_id":{"$oid":"5d480f291918e212da2c964e"},"tweet_id":{"$numberLong":"1158334983897006081"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ghana","time_created":"Mon Aug 05 11:12:35 +0000 2019","tweeted_by":"@officialeyram_"}
{"_id":{"$oid":"5d480f2b1918e212da2c964f"},"tweet_id":{"$numberLong":"1158334991916556288"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:12:37 +0000 2019","tweeted_by":"@Chijioke_ON"}
{"_id":{"$oid":"5d480f351918e212da2c9650"},"tweet_id":{"$numberLong":"1158335032966156288"},"content":"RT @iamsammolee: Nigeria is in chaos\nSars officers are killing \nBoko Haram are bombing \nFulani herdsmen are kidnapping and killing \nThe gov…","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 11:12:47 +0000 2019","tweeted_by":"@dansatty"}
{"_id":{"$oid":"5d480f3b1918e212da2c9651"},"tweet_id":{"$numberLong":"1158335056617902080"},"content":"@OluniyiGates I get your angle, but most of their frustration comes from a sense of insecurity and limiting systems… https://t.co/wddY2aobTe","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 11:12:52 +0000 2019","tweeted_by":"@OlakitanFagbuyi"}
{"_id":{"$oid":"5d480f3c1918e212da2c9652"},"tweet_id":{"$numberLong":"1158335061567135745"},"content":"@bmadiba7 It's such a shame to hear people defending corruption on the bases of who's implicated. Please get more i… https://t.co/kIhc6V2IGp","location":"Richard's Bay, South Africa","time_created":"Mon Aug 05 11:12:54 +0000 2019","tweeted_by":"@Psychomalope"}
{"_id":{"$oid":"5d480f451918e212da2c9653"},"tweet_id":{"$numberLong":"1158335102218317825"},"content":"I am also an advocate of #RevolutionIsNow we stand against insecurity, nepotism, corruption, tribalism, undevelopm… https://t.co/bTdgCZEovO","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:13:03 +0000 2019","tweeted_by":"@omodolapoyusuff"}
{"_id":{"$oid":"5d480f521918e212da2c9654"},"tweet_id":{"$numberLong":"1158335157251772416"},"content":"@JenMbhuri Go and learn how to speak English first before shading someone. Stop displaying insecurity like your fav. #bbnaija","location":"Nigeria","time_created":"Mon Aug 05 11:13:16 +0000 2019","tweeted_by":"@Emiliadoc1"}
{"_id":{"$oid":"5d480f5a1918e212da2c9655"},"tweet_id":{"$numberLong":"1158335188348407808"},"content":"RT @sapolnews: Why has @NPA_Prosecutes not arrested @Magashule_Ace for corruption ?","location":"South Africa","time_created":"Mon Aug 05 11:13:24 +0000 2019","tweeted_by":"@sapolnews"}
{"_id":{"$oid":"5d480f6e1918e212da2c9656"},"tweet_id":{"$numberLong":"1158335271735353346"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:13:44 +0000 2019","tweeted_by":"@viktoh_6ix"}
{"_id":{"$oid":"5d480f6f1918e212da2c9657"},"tweet_id":{"$numberLong":"1158335278290997248"},"content":"RT @ZoomTV: .@akshaykumar feels 'insecurity' is the reason why actors don't want to take up two-hero movies\n\nhttps://t.co/tylRepKtVP","location":"Kenya ✈","time_created":"Mon Aug 05 11:13:45 +0000 2019","tweeted_by":"@iam_chandni"}
{"_id":{"$oid":"5d480f811918e212da2c9658"},"tweet_id":{"$numberLong":"1158335354874863618"},"content":"RT @Wakabando: I find this “corruption is cancer” wrong. While Cancer is a disease, Corruption is sheer greed. CORRUPTION CAN CAUSE CANCER…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:14:04 +0000 2019","tweeted_by":"@NtaninP"}
{"_id":{"$oid":"5d480f8d1918e212da2c9659"},"tweet_id":{"$numberLong":"1158335403230945284"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 11:14:15 +0000 2019","tweeted_by":"@OnyisiJoseph"}
{"_id":{"$oid":"5d480fb21918e212da2c965a"},"tweet_id":{"$numberLong":"1158335558831214592"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:14:52 +0000 2019","tweeted_by":"@_king_salu"}
{"_id":{"$oid":"5d480fb51918e212da2c965b"},"tweet_id":{"$numberLong":"1158335572307566592"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Delta State, Nigeria.","time_created":"Mon Aug 05 11:14:55 +0000 2019","tweeted_by":"@Xopheeyah"}
{"_id":{"$oid":"5d480fba1918e212da2c965c"},"tweet_id":{"$numberLong":"1158335593664962561"},"content":"RT @MubiinH: When Edward Zuma was telling Pravin Gordhan the truth I thought he was just hiding his corruption kgante birds of same feather…","location":"Durban, South Africa","time_created":"Mon Aug 05 11:15:01 +0000 2019","tweeted_by":"@bigkoostar"}
{"_id":{"$oid":"5d480fbc1918e212da2c965d"},"tweet_id":{"$numberLong":"1158335603018207232"},"content":"RT @vusumuzikhoza: We can confirm that the Public Protector will investigate our complain re: corruption in the recent employment at @eThek…","location":"South Africa","time_created":"Mon Aug 05 11:15:03 +0000 2019","tweeted_by":"@Desimoodley"}
{"_id":{"$oid":"5d480fd51918e212da2c965e"},"tweet_id":{"$numberLong":"1158335701936726016"},"content":"RT @realMCBizzo: @realDonaldTrump Is President Trump going to finally mention the words white nationalist terrorism? If he doesn’t he shoul…","location":"Tarkwa, Ghana","time_created":"Mon Aug 05 11:15:26 +0000 2019","tweeted_by":"@BenjaminSennie"}
{"_id":{"$oid":"5d480fdf1918e212da2c965f"},"tweet_id":{"$numberLong":"1158335743703601158"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos or Ilorin, Nigeria","time_created":"Mon Aug 05 11:15:36 +0000 2019","tweeted_by":"@Beneetha22"}
{"_id":{"$oid":"5d4810001918e212da2c9660"},"tweet_id":{"$numberLong":"1158335883524878337"},"content":"RT @ajplus: The El Paso shooting is being treated as domestic terrorism, say officials.\n\n20 people were killed.\n\nIt was the 8th deadliest m…","location":"Centurion, South Africa","time_created":"Mon Aug 05 11:16:10 +0000 2019","tweeted_by":"@MarkR_21"}
{"_id":{"$oid":"5d4810021918e212da2c9661"},"tweet_id":{"$numberLong":"1158335896120451072"},"content":"RT @realMCBizzo: @realDonaldTrump Is President Trump going to finally mention the words white nationalist terrorism? If he doesn’t he shoul…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:16:13 +0000 2019","tweeted_by":"@awallexy"}
{"_id":{"$oid":"5d4810061918e212da2c9662"},"tweet_id":{"$numberLong":"1158335911081455616"},"content":"RT @whatonearthSA: Shows you how lawlessness \u0026amp; corruption is seemingly an accepted way of life for Black South Africans 🙄🙄 this is a journa…","location":"Boksburg, South Africa","time_created":"Mon Aug 05 11:16:16 +0000 2019","tweeted_by":"@SPARKY_GUY"}
{"_id":{"$oid":"5d48101b1918e212da2c9663"},"tweet_id":{"$numberLong":"1158335999023505408"},"content":"RT @SpheDludla: AfriForum says it be will laying criminal charges of money laundering and corruption against Transport Minister Fikile Mbal…","location":"Durban, South Africa","time_created":"Mon Aug 05 11:16:37 +0000 2019","tweeted_by":"@roger_JMD"}
{"_id":{"$oid":"5d4810211918e212da2c9664"},"tweet_id":{"$numberLong":"1158336026034790400"},"content":"RT @whatonearthSA: Shows you how lawlessness \u0026amp; corruption is seemingly an accepted way of life for Black South Africans 🙄🙄 this is a journa…","location":"FourWays, South Africa","time_created":"Mon Aug 05 11:16:44 +0000 2019","tweeted_by":"@crabracer"}
{"_id":{"$oid":"5d4810221918e212da2c9665"},"tweet_id":{"$numberLong":"1158336027720847360"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Warri, Nigeria","time_created":"Mon Aug 05 11:16:44 +0000 2019","tweeted_by":"@dara_soji"}
{"_id":{"$oid":"5d4810261918e212da2c9666"},"tweet_id":{"$numberLong":"1158336047010451502"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 11:16:49 +0000 2019","tweeted_by":"@ehigiejatto"}
{"_id":{"$oid":"5d4810281918e212da2c9667"},"tweet_id":{"$numberLong":"1158336055474626560"},"content":"RT @BambeniZikode: The real face of terrorism, worldwide. https://t.co/O01jzc7mtT","location":"South Africa","time_created":"Mon Aug 05 11:16:51 +0000 2019","tweeted_by":"@CeeTalking"}
{"_id":{"$oid":"5d4810301918e212da2c9668"},"tweet_id":{"$numberLong":"1158336086315347969"},"content":"RT @ewarren: We need to call out white nationalism for what it is—domestic terrorism. It is a threat to the United States, and we've seen i…","location":"Konza, Kenya","time_created":"Mon Aug 05 11:16:58 +0000 2019","tweeted_by":"@NgangaWaNgangan"}
{"_id":{"$oid":"5d48104e1918e212da2c9669"},"tweet_id":{"$numberLong":"1158336215923527681"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:17:29 +0000 2019","tweeted_by":"@salimdambam"}
{"_id":{"$oid":"5d48105e1918e212da2c966a"},"tweet_id":{"$numberLong":"1158336280985554944"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:17:44 +0000 2019","tweeted_by":"@Oficialfemzy"}
{"_id":{"$oid":"5d48105f1918e212da2c966b"},"tweet_id":{"$numberLong":"1158336285939044354"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:17:46 +0000 2019","tweeted_by":"@we_are_Willis"}
{"_id":{"$oid":"5d4810611918e212da2c966c"},"tweet_id":{"$numberLong":"1158336294642225152"},"content":"@AliyuYakubuH Revolution is as dangerous as terrorism. \n\nThe Government need to start strong. We have seen Sudan 🇸🇩… https://t.co/hcdLHZsC0Z","location":"Northeast Nigeria","time_created":"Mon Aug 05 11:17:48 +0000 2019","tweeted_by":"@ELMustaphaJ"}
{"_id":{"$oid":"5d4810671918e212da2c966d"},"tweet_id":{"$numberLong":"1158336319413768193"},"content":"RT @onyiforlife: See Buhari, see abacha... NO difference... Dictatorship, tyrant, terrorism, illiterate, no vision... Nothing but sorrow...…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:17:54 +0000 2019","tweeted_by":"@MzJacqueen"}
{"_id":{"$oid":"5d48106f1918e212da2c966e"},"tweet_id":{"$numberLong":"1158336350384533505"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:18:01 +0000 2019","tweeted_by":"@Rhafel_01"}
{"_id":{"$oid":"5d4810761918e212da2c966f"},"tweet_id":{"$numberLong":"1158336380315066368"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ikeja, Nigeria","time_created":"Mon Aug 05 11:18:08 +0000 2019","tweeted_by":"@segun36215736"}
{"_id":{"$oid":"5d4810801918e212da2c9670"},"tweet_id":{"$numberLong":"1158336422857904133"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:18:18 +0000 2019","tweeted_by":"@tunex_mighty"}
{"_id":{"$oid":"5d48108c1918e212da2c9671"},"tweet_id":{"$numberLong":"1158336470995914752"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:18:30 +0000 2019","tweeted_by":"@viktoh_6ix"}
{"_id":{"$oid":"5d4810911918e212da2c9672"},"tweet_id":{"$numberLong":"1158336494303612930"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:18:35 +0000 2019","tweeted_by":"@franko4me4real"}
{"_id":{"$oid":"5d48109e1918e212da2c9673"},"tweet_id":{"$numberLong":"1158336549026770944"},"content":"@SaharaReporters @UchebobAgala @YeleSowore They have this type of efficiency and Boko Haram and insurgents have bee… https://t.co/PAwLy8JUAl","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:18:48 +0000 2019","tweeted_by":"@kcnaija"}
{"_id":{"$oid":"5d4810b11918e212da2c9674"},"tweet_id":{"$numberLong":"1158336626218737664"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ghana-Accra","time_created":"Mon Aug 05 11:19:07 +0000 2019","tweeted_by":"@paschal_gh"}
{"_id":{"$oid":"5d4810bc1918e212da2c9675"},"tweet_id":{"$numberLong":"1158336672725110784"},"content":"RT @whatonearthSA: Shows you how lawlessness \u0026amp; corruption is seemingly an accepted way of life for Black South Africans 🙄🙄 this is a journa…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 11:19:18 +0000 2019","tweeted_by":"@PolonyStallony2"}
{"_id":{"$oid":"5d4810be1918e212da2c9676"},"tweet_id":{"$numberLong":"1158336683412209664"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:19:20 +0000 2019","tweeted_by":"@IceKing_Mikey"}
{"_id":{"$oid":"5d4810c41918e212da2c9677"},"tweet_id":{"$numberLong":"1158336708007604225"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos State, Nigeria","time_created":"Mon Aug 05 11:19:26 +0000 2019","tweeted_by":"@anjorin1001"}
{"_id":{"$oid":"5d4810ff1918e212da2c9678"},"tweet_id":{"$numberLong":"1158336956771647488"},"content":"@Belive_Kinuthia @mkenya_msafi @RailaOdinga Isome kwanza then we debate.\nWe want corruption thieves jailed for life… https://t.co/7aXCLU5Iit","location":"Kenya","time_created":"Mon Aug 05 11:20:26 +0000 2019","tweeted_by":"@Ziloopi"}
{"_id":{"$oid":"5d4811001918e212da2c9679"},"tweet_id":{"$numberLong":"1158336960974467074"},"content":"RT @mackio_: But parliament is corruption. https://t.co/gK7uvVbwli","location":"Nairobi , Kenya , Africa.","time_created":"Mon Aug 05 11:20:27 +0000 2019","tweeted_by":"@djmrc"}
{"_id":{"$oid":"5d4811241918e212da2c967a"},"tweet_id":{"$numberLong":"1158337112774758400"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos or Ilorin, Nigeria","time_created":"Mon Aug 05 11:21:03 +0000 2019","tweeted_by":"@Beneetha22"}
{"_id":{"$oid":"5d4811261918e212da2c967b"},"tweet_id":{"$numberLong":"1158337123050766337"},"content":"@Ms_Jmk And you saw it fit to terrorise the rest of us with it🙄","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:21:05 +0000 2019","tweeted_by":"@aarehimself"}
{"_id":{"$oid":"5d4811301918e212da2c967c"},"tweet_id":{"$numberLong":"1158337158207459329"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Enugu, Nigeria","time_created":"Mon Aug 05 11:21:14 +0000 2019","tweeted_by":"@EnuguLive"}
{"_id":{"$oid":"5d4811371918e212da2c967d"},"tweet_id":{"$numberLong":"1158337190591639554"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:21:21 +0000 2019","tweeted_by":"@funziekpubltd"}
{"_id":{"$oid":"5d48113a1918e212da2c967e"},"tweet_id":{"$numberLong":"1158337202306342914"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ikeja, Nigeria","time_created":"Mon Aug 05 11:21:24 +0000 2019","tweeted_by":"@Nusbaba_"}
{"_id":{"$oid":"5d48113d1918e212da2c967f"},"tweet_id":{"$numberLong":"1158337214197223424"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:21:27 +0000 2019","tweeted_by":"@blac_brook"}
{"_id":{"$oid":"5d4811411918e212da2c9680"},"tweet_id":{"$numberLong":"1158337228868935680"},"content":"RT @johnjibogu: #Nigeriaarmy trained to combat armed bandits, Boko Haram, armed herdsmen but on the streets of Lagos brandishing their weap…","location":"Nigeria and United Kingdom","time_created":"Mon Aug 05 11:21:30 +0000 2019","tweeted_by":"@employlawone"}
{"_id":{"$oid":"5d4811481918e212da2c9681"},"tweet_id":{"$numberLong":"1158337259051069440"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Akure, Nigeria","time_created":"Mon Aug 05 11:21:38 +0000 2019","tweeted_by":"@statmanAy"}
{"_id":{"$oid":"5d4811541918e212da2c9682"},"tweet_id":{"$numberLong":"1158337309969924096"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria.","time_created":"Mon Aug 05 11:21:50 +0000 2019","tweeted_by":"@mu_saofficial"}
{"_id":{"$oid":"5d4811591918e212da2c9683"},"tweet_id":{"$numberLong":"1158337333625794560"},"content":"RT @IlhanMN: Can we talk about mass shootings now? \n\nCan we start to condemn domestic terrorism now? \n\nCan we work together to safeguard Am…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 11:21:55 +0000 2019","tweeted_by":"@psychotalker"}
{"_id":{"$oid":"5d48115a1918e212da2c9684"},"tweet_id":{"$numberLong":"1158337334670176256"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:21:56 +0000 2019","tweeted_by":"@AliyuAtiku"}
{"_id":{"$oid":"5d4811731918e212da2c9685"},"tweet_id":{"$numberLong":"1158337440190537728"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"7 Holmark Pl, Durban North, 4051, South Africa","time_created":"Mon Aug 05 11:22:21 +0000 2019","tweeted_by":"@Sbhenesenala"}
{"_id":{"$oid":"5d4811791918e212da2c9686"},"tweet_id":{"$numberLong":"1158337467810033664"},"content":"RT @AOC: \u0026amp; again, this time asking the FBI.\n\nIt seems easier to label domestic, self-radicalized shooters who are Muslim as terrorists.\n\nYe…","location":"Nigeria","time_created":"Mon Aug 05 11:22:27 +0000 2019","tweeted_by":"@dellizing"}
{"_id":{"$oid":"5d48117e1918e212da2c9687"},"tweet_id":{"$numberLong":"1158337488274034688"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:22:32 +0000 2019","tweeted_by":"@eugene_sarah"}
{"_id":{"$oid":"5d48117e1918e212da2c9688"},"tweet_id":{"$numberLong":"1158337489414873089"},"content":"RT @woye1: Sad news: Insecurity, insecurity. Following up on previous govt, Zamfara Govt signed $1b MOU in the areas of AGRICULTURE, mining…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:22:33 +0000 2019","tweeted_by":"@kamilabdulganee"}
{"_id":{"$oid":"5d4811801918e212da2c9689"},"tweet_id":{"$numberLong":"1158337497136582657"},"content":"RT @RepAdamSchiff: The ugly truth is this:\n\nWhite supremacist terrorism is a real and present danger. \n\nWhen the President and other leader…","location":"Accra, Ghana","time_created":"Mon Aug 05 11:22:34 +0000 2019","tweeted_by":"@Kwaku_BO"}
{"_id":{"$oid":"5d4811841918e212da2c968a"},"tweet_id":{"$numberLong":"1158337513347604481"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Durban, South Africa","time_created":"Mon Aug 05 11:22:38 +0000 2019","tweeted_by":"@Casper_Qwabe"}
{"_id":{"$oid":"5d48118f1918e212da2c968b"},"tweet_id":{"$numberLong":"1158337556087545857"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:22:48 +0000 2019","tweeted_by":"@dellizing"}
{"_id":{"$oid":"5d4811991918e212da2c968c"},"tweet_id":{"$numberLong":"1158337603093106688"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 11:23:00 +0000 2019","tweeted_by":"@dellizing"}
{"_id":{"$oid":"5d48119a1918e212da2c968d"},"tweet_id":{"$numberLong":"1158337603894202368"},"content":"Private corruption in Pakistan's pharmaceutical sector is harming economic growth and public health. \n\nOur new work… https://t.co/OZ38l59IF0","location":"UK/Bangladesh/Tanzania/Nigeria","time_created":"Mon Aug 05 11:23:00 +0000 2019","tweeted_by":"@ACE_soas"}
{"_id":{"$oid":"5d4811a51918e212da2c968e"},"tweet_id":{"$numberLong":"1158337652850143233"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Greater Accra, Ghana","time_created":"Mon Aug 05 11:23:11 +0000 2019","tweeted_by":"@Haameedah"}
{"_id":{"$oid":"5d4811a81918e212da2c968f"},"tweet_id":{"$numberLong":"1158337663700819968"},"content":"RT @SpheDludla: AfriForum says it be will laying criminal charges of money laundering and corruption against Transport Minister Fikile Mbal…","location":"Durban, South Africa","time_created":"Mon Aug 05 11:23:14 +0000 2019","tweeted_by":"@Lungah__mkhize"}
{"_id":{"$oid":"5d4811b01918e212da2c9690"},"tweet_id":{"$numberLong":"1158337700082135041"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:23:23 +0000 2019","tweeted_by":"@sequejoggy"}
{"_id":{"$oid":"5d4811bc1918e212da2c9691"},"tweet_id":{"$numberLong":"1158337750770302976"},"content":"@romeocza @rozirozay The insecurity is not only in Uniuyo bro Abak Road by mechanic village is not safe but God dey save him people","location":"Nigeria","time_created":"Mon Aug 05 11:23:35 +0000 2019","tweeted_by":"@henry_wiziyke"}
{"_id":{"$oid":"5d4811d71918e212da2c9692"},"tweet_id":{"$numberLong":"1158337861671956480"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:24:01 +0000 2019","tweeted_by":"@oewonah"}
{"_id":{"$oid":"5d4811db1918e212da2c9693"},"tweet_id":{"$numberLong":"1158337879078330368"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Enugu, Nigeria","time_created":"Mon Aug 05 11:24:05 +0000 2019","tweeted_by":"@Pen_mex"}
{"_id":{"$oid":"5d4811de1918e212da2c9694"},"tweet_id":{"$numberLong":"1158337893955510272"},"content":"Note: “mental health situation” is euphemism for “white supremacist and misogynist domestic terrorism”","location":"Nigerian-American in Accra, GH","time_created":"Mon Aug 05 11:24:09 +0000 2019","tweeted_by":"@victoria_okoye"}
{"_id":{"$oid":"5d4811f01918e212da2c9695"},"tweet_id":{"$numberLong":"1158337964713398272"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:24:26 +0000 2019","tweeted_by":"@Matches__Jr"}
{"_id":{"$oid":"5d4812081918e212da2c9696"},"tweet_id":{"$numberLong":"1158338064256778240"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:24:50 +0000 2019","tweeted_by":"@patonyx1"}
{"_id":{"$oid":"5d4812121918e212da2c9697"},"tweet_id":{"$numberLong":"1158338107944706049"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:25:00 +0000 2019","tweeted_by":"@AhmadMakamaa"}
{"_id":{"$oid":"5d4812121918e212da2c9698"},"tweet_id":{"$numberLong":"1158338109978943488"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 11:25:00 +0000 2019","tweeted_by":"@AliyuAtiku"}
{"_id":{"$oid":"5d4812181918e212da2c9699"},"tweet_id":{"$numberLong":"1158338134461075456"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Owerri, Nigeria","time_created":"Mon Aug 05 11:25:06 +0000 2019","tweeted_by":"@iam_killjoy"}
{"_id":{"$oid":"5d4812331918e212da2c969a"},"tweet_id":{"$numberLong":"1158338245823991809"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria","time_created":"Mon Aug 05 11:25:33 +0000 2019","tweeted_by":"@JudithSalami"}
{"_id":{"$oid":"5d4812331918e212da2c969b"},"tweet_id":{"$numberLong":"1158338246943940608"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:25:33 +0000 2019","tweeted_by":"@AdamAbubakar"}
{"_id":{"$oid":"5d4812431918e212da2c969c"},"tweet_id":{"$numberLong":"1158338313956265986"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Eket, Nigeria","time_created":"Mon Aug 05 11:25:49 +0000 2019","tweeted_by":"@neupytech"}
{"_id":{"$oid":"5d4812451918e212da2c969d"},"tweet_id":{"$numberLong":"1158338324035264513"},"content":"RT @realFFK: America has to stand up to white nationalist, supremacist terrorism.They must CALL it what it is and DEAL with it. \n\nNigeria h…","location":"Accra, Ghana","time_created":"Mon Aug 05 11:25:51 +0000 2019","tweeted_by":"@McintyreLord"}
{"_id":{"$oid":"5d4812511918e212da2c969e"},"tweet_id":{"$numberLong":"1158338373200883712"},"content":"RT @StormIsUponUs: All of this all over a few days. FBI terror report, Alex Jones rant against Q, attacks on 8-chan, shooters history chang…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 11:26:03 +0000 2019","tweeted_by":"@Lou80377115"}
{"_id":{"$oid":"5d48128e1918e212da2c969f"},"tweet_id":{"$numberLong":"1158338630630420480"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Akwa Ibom, Nigeria","time_created":"Mon Aug 05 11:27:05 +0000 2019","tweeted_by":"@JeffreyEBassey"}
{"_id":{"$oid":"5d48128f1918e212da2c96a0"},"tweet_id":{"$numberLong":"1158338633352581120"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"uyo, Akwa Ibom State, Nigeria","time_created":"Mon Aug 05 11:27:05 +0000 2019","tweeted_by":"@KpeboThomas"}
{"_id":{"$oid":"5d4812931918e212da2c96a1"},"tweet_id":{"$numberLong":"1158338651014815745"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Otta, Nigeria","time_created":"Mon Aug 05 11:27:09 +0000 2019","tweeted_by":"@__Jibade"}
{"_id":{"$oid":"5d48129b1918e212da2c96a2"},"tweet_id":{"$numberLong":"1158338683558404096"},"content":"RT @new_engine: Dear @NBCNews I am the man who is being targeted with the terrorism hoax. Please help me clear my name!!!","location":"Lag🤡s, Nigeria","time_created":"Mon Aug 05 11:27:17 +0000 2019","tweeted_by":"@go_finger"}
{"_id":{"$oid":"5d4812a71918e212da2c96a3"},"tweet_id":{"$numberLong":"1158338732367519745"},"content":"RT @henry_wiziyke: @romeocza @rozirozay The insecurity is not only in Uniuyo bro Abak Road by mechanic village is not safe but God dey save…","location":"Uyo, Nigeria","time_created":"Mon Aug 05 11:27:29 +0000 2019","tweeted_by":"@rozirozay"}
{"_id":{"$oid":"5d4812a71918e212da2c96a4"},"tweet_id":{"$numberLong":"1158338733390929921"},"content":"RT @ChiomaChuka: Sowore is a bigger problem than the herdsmen crisis? Than the kidnappers who have made camp on our roads? Than Boko Haram,…","location":"Nigeria","time_created":"Mon Aug 05 11:27:29 +0000 2019","tweeted_by":"@Odutokun"}
{"_id":{"$oid":"5d4812a91918e212da2c96a5"},"tweet_id":{"$numberLong":"1158338740231839744"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 11:27:31 +0000 2019","tweeted_by":"@lfc_zino"}
{"_id":{"$oid":"5d4812aa1918e212da2c96a6"},"tweet_id":{"$numberLong":"1158338745671847937"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:27:32 +0000 2019","tweeted_by":"@DGbatsorun"}
{"_id":{"$oid":"5d4812b21918e212da2c96a7"},"tweet_id":{"$numberLong":"1158338779297538048"},"content":"RT @IsaacNathi: Everything that has to do with Cyril Ramaphosa is riddled with lies, corruption and money laundering, no matter how you loo…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 11:27:40 +0000 2019","tweeted_by":"@maibuyei"}
{"_id":{"$oid":"5d4812b61918e212da2c96a8"},"tweet_id":{"$numberLong":"1158338796640976896"},"content":"RT @IsaacNathi: Everything that has to do with Cyril Ramaphosa is riddled with lies, corruption and money laundering, no matter how you loo…","location":"Fourways,Gauteng, South Africa","time_created":"Mon Aug 05 11:27:44 +0000 2019","tweeted_by":"@Fezile05"}
{"_id":{"$oid":"5d4812b81918e212da2c96a9"},"tweet_id":{"$numberLong":"1158338804647903233"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"uyo, Akwa Ibom State, Nigeria","time_created":"Mon Aug 05 11:27:46 +0000 2019","tweeted_by":"@KpeboThomas"}
{"_id":{"$oid":"5d4812d41918e212da2c96aa"},"tweet_id":{"$numberLong":"1158338923409620993"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Bloemfontein, South Africa","time_created":"Mon Aug 05 11:28:14 +0000 2019","tweeted_by":"@Lindoku78716556"}
{"_id":{"$oid":"5d4812d81918e212da2c96ab"},"tweet_id":{"$numberLong":"1158338939591254016"},"content":"RT @YusufChambers: In these days of #DhulHijjah I call upon Allah to save the innocent people of Kashmir from being oppressed by terror sta…","location":"Abuja, Nigeria ","time_created":"Mon Aug 05 11:28:18 +0000 2019","tweeted_by":"@Abex20"}
{"_id":{"$oid":"5d4812f51918e212da2c96ac"},"tweet_id":{"$numberLong":"1158339062421512193"},"content":"RT @femiadegbulugbe: The French President is a youth. Much younger than Sowore or Kanu. He did not become President through terrorism or…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:28:48 +0000 2019","tweeted_by":"@Ijaya1"}
{"_id":{"$oid":"5d4813011918e212da2c96ad"},"tweet_id":{"$numberLong":"1158339112916664321"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Greater Accra, Ghana","time_created":"Mon Aug 05 11:29:00 +0000 2019","tweeted_by":"@Haameedah"}
{"_id":{"$oid":"5d4813091918e212da2c96ae"},"tweet_id":{"$numberLong":"1158339146542399488"},"content":"RT @pinkvilla: Kangana Ranaut on revoking Article 370 in J\u0026amp;K: It is a historic step in the direction of terrorism f… https://t.co/2PmQ7KVFTD","location":"Kenya ✈","time_created":"Mon Aug 05 11:29:08 +0000 2019","tweeted_by":"@iam_chandni"}
{"_id":{"$oid":"5d4813131918e212da2c96af"},"tweet_id":{"$numberLong":"1158339184689594369"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:29:17 +0000 2019","tweeted_by":"@ISuzyfavour"}
{"_id":{"$oid":"5d4813131918e212da2c96b0"},"tweet_id":{"$numberLong":"1158339185624920064"},"content":"RT @EhiagwinaJ: 2015 - Jonathan is a buffoon, thief, incompetent, weak. Boko Haram are killing us. Anyone but Jonathan. Buhari is a no-nons…","location":"Jos, Nigeria","time_created":"Mon Aug 05 11:29:17 +0000 2019","tweeted_by":"@Daudachanso"}
{"_id":{"$oid":"5d4813201918e212da2c96b1"},"tweet_id":{"$numberLong":"1158339242193563649"},"content":"RT @Nwafresh: Pride of the nation, the people's choice, man of his words, a true definition of integrity, job creator, corruption fighter,…","location":"Nigeria","time_created":"Mon Aug 05 11:29:30 +0000 2019","tweeted_by":"@princess_ebele"}
{"_id":{"$oid":"5d48132e1918e212da2c96b2"},"tweet_id":{"$numberLong":"1158339301114957824"},"content":"@HashtagSbo @Spokmathambo @Powerfm987 @mabena_bob Too much corruption and excessive high salaries","location":"Polokwane, South Africa","time_created":"Mon Aug 05 11:29:44 +0000 2019","tweeted_by":"@elias_ngwako"}
{"_id":{"$oid":"5d4813401918e212da2c96b3"},"tweet_id":{"$numberLong":"1158339375979225090"},"content":"@DailyPostNGR Ozekhome is always defending corruption politicians and other evil activities in the country. I just… https://t.co/OUy2KafkZv","location":"Nigeria","time_created":"Mon Aug 05 11:30:02 +0000 2019","tweeted_by":"@WadayahayaWada"}
{"_id":{"$oid":"5d4813411918e212da2c96b4"},"tweet_id":{"$numberLong":"1158339379573776390"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:30:03 +0000 2019","tweeted_by":"@blaqmagnum_"}
{"_id":{"$oid":"5d4813541918e212da2c96b5"},"tweet_id":{"$numberLong":"1158339460301492224"},"content":"Building collapse: Expert connects incidences in Nigeria to corruption https://t.co/J1PINHPkcT https://t.co/xNtJvb7gp2","location":"Nigeria, Benin, Ghana \u0026 Italy.","time_created":"Mon Aug 05 11:30:22 +0000 2019","tweeted_by":"@mp_maniac"}
{"_id":{"$oid":"5d4813551918e212da2c96b6"},"tweet_id":{"$numberLong":"1158339465615761408"},"content":"Building collapse: Expert connects incidences in Nigeria to corruption https://t.co/NXZBQQsBwb https://t.co/wtRbCicBoh","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:30:24 +0000 2019","tweeted_by":"@mpmaniadotcom"}
{"_id":{"$oid":"5d48136a1918e212da2c96b7"},"tweet_id":{"$numberLong":"1158339551896711169"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:30:44 +0000 2019","tweeted_by":"@Stephen_oyes"}
{"_id":{"$oid":"5d4813741918e212da2c96b8"},"tweet_id":{"$numberLong":"1158339593609068544"},"content":"@APCNigeria One Nigeria is a scam if u wnt us to be one den prosecute Fulani herdsmen u cnt call runaway Boko Haram… https://t.co/QHqUlHKGSY","location":"Anambra Nigeria","time_created":"Mon Aug 05 11:30:54 +0000 2019","tweeted_by":"@isiogu_kelvin"}
{"_id":{"$oid":"5d4813781918e212da2c96b9"},"tweet_id":{"$numberLong":"1158339604011016192"},"content":"RT @TheSun: Brit ISIS brides make jihadi salutes and refuse to denounce terror at Shamima Begum’s old refugee camp https://t.co/3DRDdsa4sU","location":"Nigeria, Africa.","time_created":"Mon Aug 05 11:30:57 +0000 2019","tweeted_by":"@AbelBishopH"}
{"_id":{"$oid":"5d48137a1918e212da2c96ba"},"tweet_id":{"$numberLong":"1158339617030103041"},"content":"The closest our politicians come to policy is when they make broad promises to 'sweep out corruption' or 'create ne… https://t.co/SWO2qQoG80","location":"Nigeria","time_created":"Mon Aug 05 11:31:00 +0000 2019","tweeted_by":"@StearsBusiness"}
{"_id":{"$oid":"5d4813811918e212da2c96bb"},"tweet_id":{"$numberLong":"1158339644033048576"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:31:06 +0000 2019","tweeted_by":"@ksolosultan3"}
{"_id":{"$oid":"5d4813841918e212da2c96bc"},"tweet_id":{"$numberLong":"1158339658406866945"},"content":"Boko Haram is at Sambisa forest, herdsmen kidnapping, raping \u0026amp; killing citizenry but u see no DSS officers going in… https://t.co/oXs4kMF6hc","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:31:10 +0000 2019","tweeted_by":"@ShehuBello"}
{"_id":{"$oid":"5d4813841918e212da2c96bd"},"tweet_id":{"$numberLong":"1158339659795226624"},"content":"RT @NBCNews: Texas Sen. Cruz denounced Saturday's shooting in El Paso as a “heinous act of terrorism and white supremacy.” https://t.co/MqB…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:31:10 +0000 2019","tweeted_by":"@egbesc0"}
{"_id":{"$oid":"5d4813881918e212da2c96be"},"tweet_id":{"$numberLong":"1158339678073962497"},"content":"RT @dailynation: Kenya's burden is in not in Parliament but in corruption, Senator Moses Wetangula tells Aukot. https://t.co/r2oojqriw3","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:31:14 +0000 2019","tweeted_by":"@NasaRevolution"}
{"_id":{"$oid":"5d4813891918e212da2c96bf"},"tweet_id":{"$numberLong":"1158339681664323584"},"content":"RT @YouthSupportPDP: #Nigeria is still in war with Boko Haram, Armed Militias, Kidnappers and Foreign Invaders...\n\nYet, @MBuhari deploys th…","location":"Ogogoro Village, Nigeria","time_created":"Mon Aug 05 11:31:15 +0000 2019","tweeted_by":"@chriscyton"}
{"_id":{"$oid":"5d4813941918e212da2c96c0"},"tweet_id":{"$numberLong":"1158339726073651200"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:31:26 +0000 2019","tweeted_by":"@Saratu75725679"}
{"_id":{"$oid":"5d4813a11918e212da2c96c1"},"tweet_id":{"$numberLong":"1158339781669085184"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Kaduna | Kano, Nigeria","time_created":"Mon Aug 05 11:31:39 +0000 2019","tweeted_by":"@mbsulaiman33"}
{"_id":{"$oid":"5d4813aa1918e212da2c96c2"},"tweet_id":{"$numberLong":"1158339817719115777"},"content":"When stealing was not corruption, no revolution.\n\n When poverty reached an all-time high of 112 million people in 2… https://t.co/OsKliOqC17","location":"Abuja. Nigeria","time_created":"Mon Aug 05 11:31:48 +0000 2019","tweeted_by":"@ovye12"}
{"_id":{"$oid":"5d4813c31918e212da2c96c3"},"tweet_id":{"$numberLong":"1158339925936414722"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:32:13 +0000 2019","tweeted_by":"@Lyrical_HD"}
{"_id":{"$oid":"5d4813cc1918e212da2c96c4"},"tweet_id":{"$numberLong":"1158339961566957570"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:32:22 +0000 2019","tweeted_by":"@TegaAjogun"}
{"_id":{"$oid":"5d4813e21918e212da2c96c5"},"tweet_id":{"$numberLong":"1158340053766160384"},"content":"This year marks 10 years of crisis in northeast Nigeria. \n\n10 years of food insecurity.\n\n10 years of marginal farmi… https://t.co/45BrQIDYtb","location":"Nigeria","time_created":"Mon Aug 05 11:32:44 +0000 2019","tweeted_by":"@WFP_Nigeria"}
{"_id":{"$oid":"5d4813f71918e212da2c96c6"},"tweet_id":{"$numberLong":"1158340143801131009"},"content":"RT @glcarlstrom: Wow. A group of UN investigators were preparing to fly out of Yemen last year with evidence of corruption at the WHO. The…","location":"Kenya","time_created":"Mon Aug 05 11:33:05 +0000 2019","tweeted_by":"@JimSiro"}
{"_id":{"$oid":"5d4814021918e212da2c96c7"},"tweet_id":{"$numberLong":"1158340192144691201"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Onitsha, Nigeria","time_created":"Mon Aug 05 11:33:17 +0000 2019","tweeted_by":"@driimchaser20"}
{"_id":{"$oid":"5d4814081918e212da2c96c8"},"tweet_id":{"$numberLong":"1158340216748433408"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:33:23 +0000 2019","tweeted_by":"@arcsamuel"}
{"_id":{"$oid":"5d4814161918e212da2c96c9"},"tweet_id":{"$numberLong":"1158340274269184000"},"content":"@johnteey Released Boko Haram? This tweet doesn't make any sense. You do realise that Boko Haram attacked his convo… https://t.co/VBbWpj52DD","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:33:36 +0000 2019","tweeted_by":"@LaoluBeckley"}
{"_id":{"$oid":"5d48141b1918e212da2c96ca"},"tweet_id":{"$numberLong":"1158340294762532864"},"content":"RT @RodRosenstein: George is right. Killing random civilians to spread a political message is terrorism. FBI classifies it as domestic terr…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:33:41 +0000 2019","tweeted_by":"@SeunEsq"}
{"_id":{"$oid":"5d4814211918e212da2c96cb"},"tweet_id":{"$numberLong":"1158340311367766016"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Pretoria, South Africa","time_created":"Mon Aug 05 11:33:45 +0000 2019","tweeted_by":"@naphkb"}
{"_id":{"$oid":"5d4814251918e212da2c96cc"},"tweet_id":{"$numberLong":"1158340330124718080"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Bloemfontein, South Africa","time_created":"Mon Aug 05 11:33:50 +0000 2019","tweeted_by":"@Lindoku78716556"}
{"_id":{"$oid":"5d4814271918e212da2c96cd"},"tweet_id":{"$numberLong":"1158340344100139008"},"content":"@SaharaReporters @MBuhari But if it's to fight Boko Haram now they would be running","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:33:53 +0000 2019","tweeted_by":"@kingofdeeds"}
{"_id":{"$oid":"5d4814331918e212da2c96ce"},"tweet_id":{"$numberLong":"1158340390522707969"},"content":"- South African economy, the companies of the corrupt elite have made a lot of corruption, which means the news dep… https://t.co/a4q8X8aPDF","location":"South Africa ","time_created":"Mon Aug 05 11:34:04 +0000 2019","tweeted_by":"@TheWordIsLife10"}
{"_id":{"$oid":"5d4814431918e212da2c96cf"},"tweet_id":{"$numberLong":"1158340459435036672"},"content":"@OBAKSOLO @SaharaReporters @YeleSowore What correlation does this have with Boko Haram? Do you have to contribute a… https://t.co/SKqJQ5gzT9","location":"Benin-City, Nigeria","time_created":"Mon Aug 05 11:34:21 +0000 2019","tweeted_by":"@RokamoBet"}
{"_id":{"$oid":"5d48144c1918e212da2c96d0"},"tweet_id":{"$numberLong":"1158340498081406976"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:34:30 +0000 2019","tweeted_by":"@chcblrk"}
{"_id":{"$oid":"5d48145d1918e212da2c96d1"},"tweet_id":{"$numberLong":"1158340567295766528"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ogun, Nigeria","time_created":"Mon Aug 05 11:34:46 +0000 2019","tweeted_by":"@TheReal_Hafeez"}
{"_id":{"$oid":"5d4814751918e212da2c96d2"},"tweet_id":{"$numberLong":"1158340669431341056"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:35:11 +0000 2019","tweeted_by":"@iamswayz"}
{"_id":{"$oid":"5d48147d1918e212da2c96d3"},"tweet_id":{"$numberLong":"1158340705208733696"},"content":"RT @NBCNews: Texas Sen. Cruz denounced Saturday's shooting in El Paso as a “heinous act of terrorism and white supremacy.” https://t.co/MqB…","location":"Nigeria","time_created":"Mon Aug 05 11:35:19 +0000 2019","tweeted_by":"@niyexx"}
{"_id":{"$oid":"5d4814bd1918e212da2c96d4"},"tweet_id":{"$numberLong":"1158340976466911233"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria,Rivers State,PH","time_created":"Mon Aug 05 11:36:24 +0000 2019","tweeted_by":"@uruahug"}
{"_id":{"$oid":"5d4814c31918e212da2c96d5"},"tweet_id":{"$numberLong":"1158340999091052546"},"content":"Messi banned for three months after CONMEBOL 'corruption' outburst https://t.co/WkqVJ84DYo","location":"South Africa","time_created":"Mon Aug 05 11:36:29 +0000 2019","tweeted_by":"@eNCA"}
{"_id":{"$oid":"5d4814c71918e212da2c96d6"},"tweet_id":{"$numberLong":"1158341016770043904"},"content":"So unemployment isn't the absence of money but corruption","location":"Ilorin, Nigeria","time_created":"Mon Aug 05 11:36:33 +0000 2019","tweeted_by":"@aliyu_solomon"}
{"_id":{"$oid":"5d4814db1918e212da2c96d7"},"tweet_id":{"$numberLong":"1158341100467302400"},"content":"RT @Tutsy22: A week in Brief:\n\n* 14 were kidnapped, including 5 RCCG pastors by Fulani herdsmen. \n\n* 60 persons killed by in Boko Haram.\n\n*…","location":"Nigeria","time_created":"Mon Aug 05 11:36:53 +0000 2019","tweeted_by":"@MaziOlisa"}
{"_id":{"$oid":"5d4815001918e212da2c96d8"},"tweet_id":{"$numberLong":"1158341251781074945"},"content":"@BashirAhmaad tell your boss to continue is slow motionless moves ignoring the sponsors of this evil insecurity,att… https://t.co/r3VKCMvI7k","location":"Nigeria","time_created":"Mon Aug 05 11:37:30 +0000 2019","tweeted_by":"@EmmanuelYakasai"}
{"_id":{"$oid":"5d4815011918e212da2c96d9"},"tweet_id":{"$numberLong":"1158341255564341248"},"content":"RT @DrCOmole: ...to our insecurity. There also has to be Socio-Economic measures put in place to block the pipeline of new criminality we n…","location":"Nigeria","time_created":"Mon Aug 05 11:37:30 +0000 2019","tweeted_by":"@EmekaEK"}
{"_id":{"$oid":"5d4815091918e212da2c96da"},"tweet_id":{"$numberLong":"1158341290666471424"},"content":"\u0026lt;b\u0026gt; Sorry mister president I've lived to cherish too much corruption. Democracy/Crazydemo. Demonstration of craze,… https://t.co/IcOfNZeIvs","location":"Abesewa ,Ashanti, Ghana","time_created":"Mon Aug 05 11:37:39 +0000 2019","tweeted_by":"@AnaneDesire"}
{"_id":{"$oid":"5d48150b1918e212da2c96db"},"tweet_id":{"$numberLong":"1158341297595387905"},"content":"RT @whatonearthSA: Shows you how lawlessness \u0026amp; corruption is seemingly an accepted way of life for Black South Africans 🙄🙄 this is a journa…","location":"South Africa","time_created":"Mon Aug 05 11:37:40 +0000 2019","tweeted_by":"@africa_ren"}
{"_id":{"$oid":"5d4815121918e212da2c96dc"},"tweet_id":{"$numberLong":"1158341330239668224"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:37:48 +0000 2019","tweeted_by":"@_onomeous"}
{"_id":{"$oid":"5d4815251918e212da2c96dd"},"tweet_id":{"$numberLong":"1158341408970989568"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:38:07 +0000 2019","tweeted_by":"@salimdambam"}
{"_id":{"$oid":"5d48152e1918e212da2c96de"},"tweet_id":{"$numberLong":"1158341445926998016"},"content":"RT @wmnjoya: The central question of corruption in healthcare and education in Kenya is this: who benefits? We already know who suffers. We…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:38:16 +0000 2019","tweeted_by":"@Manwa"}
{"_id":{"$oid":"5d4815371918e212da2c96df"},"tweet_id":{"$numberLong":"1158341486607523840"},"content":"If Ramaphosa is serious about fight state capture and corruption,he must lead by example and step aside to clear his name.","location":"Soweto, South Africa","time_created":"Mon Aug 05 11:38:26 +0000 2019","tweeted_by":"@sbusisomchunu9"}
{"_id":{"$oid":"5d48153e1918e212da2c96e0"},"tweet_id":{"$numberLong":"1158341508870922240"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:38:31 +0000 2019","tweeted_by":"@chcblrk"}
{"_id":{"$oid":"5d48153f1918e212da2c96e1"},"tweet_id":{"$numberLong":"1158341515699281920"},"content":"RT @TweetAtAustin: What you need to know about Boko Haram. https://t.co/hIZHHp4lqY","location":"Abeokuta, Nigeria","time_created":"Mon Aug 05 11:38:32 +0000 2019","tweeted_by":"@Omooba_A"}
{"_id":{"$oid":"5d48154f1918e212da2c96e2"},"tweet_id":{"$numberLong":"1158341585672777729"},"content":"We must call the El Paso shooting what it is: Trump-inspired terrorism | David Schanzer https://t.co/jn4A5eVMD0","location":"Nigeria","time_created":"Mon Aug 05 11:38:49 +0000 2019","tweeted_by":"@Maestro_Sky"}
{"_id":{"$oid":"5d4815521918e212da2c96e3"},"tweet_id":{"$numberLong":"1158341599849566209"},"content":"RT @woye1: Sad news: Insecurity, insecurity. Following up on previous govt, Zamfara Govt signed $1b MOU in the areas of AGRICULTURE, mining…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:38:53 +0000 2019","tweeted_by":"@akinmadeopeyem1"}
{"_id":{"$oid":"5d4815561918e212da2c96e4"},"tweet_id":{"$numberLong":"1158341614189891584"},"content":"RT @kcnaija: @SaharaReporters @UchebobAgala @YeleSowore They have this type of efficiency and Boko Haram and insurgents have been having a…","location":"All over Nigeria","time_created":"Mon Aug 05 11:38:56 +0000 2019","tweeted_by":"@ajosebbc"}
{"_id":{"$oid":"5d4815591918e212da2c96e5"},"tweet_id":{"$numberLong":"1158341629243273216"},"content":"RT @daily_trust: Authorities said two Alpha Jets of the Nigerian Air Force have bombed a Boko Haram terrorists’ hideout in Alafa area in Sa…","location":"Kaduna, Nigeria","time_created":"Mon Aug 05 11:39:00 +0000 2019","tweeted_by":"@AbuSaddiqsani"}
{"_id":{"$oid":"5d48155d1918e212da2c96e6"},"tweet_id":{"$numberLong":"1158341644976087040"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Accra, Ghana ","time_created":"Mon Aug 05 11:39:03 +0000 2019","tweeted_by":"@quame_charles"}
{"_id":{"$oid":"5d4815601918e212da2c96e7"},"tweet_id":{"$numberLong":"1158341660591480832"},"content":"I voted to save my country not to support corruption...if this is a signal to show #CyrilRamaphosa that he is not r… https://t.co/C6N2iIJ8qd","location":"Bush, South Africa","time_created":"Mon Aug 05 11:39:07 +0000 2019","tweeted_by":"@Sporothedj"}
{"_id":{"$oid":"5d4815631918e212da2c96e8"},"tweet_id":{"$numberLong":"1158341671635095552"},"content":"See what embattled WAITITU secretly did with his Deputy, NYORO, even after being barred from office over corruption… https://t.co/5ZAMXQ3Hdn","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:39:10 +0000 2019","tweeted_by":"@TheKenyanPost"}
{"_id":{"$oid":"5d48156f1918e212da2c96e9"},"tweet_id":{"$numberLong":"1158341720909787136"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:39:21 +0000 2019","tweeted_by":"@michael_asah"}
{"_id":{"$oid":"5d4815741918e212da2c96ea"},"tweet_id":{"$numberLong":"1158341740354576389"},"content":"@RobertAlai Small scale corruption,they should up their game,the corrupt are doing billions.millions is kindergarten stuff","location":"Nairobi Kenya","time_created":"Mon Aug 05 11:39:26 +0000 2019","tweeted_by":"@twendekavune"}
{"_id":{"$oid":"5d4815741918e212da2c96eb"},"tweet_id":{"$numberLong":"1158341740623007745"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:39:26 +0000 2019","tweeted_by":"@God_on_Standby"}
{"_id":{"$oid":"5d4815781918e212da2c96ec"},"tweet_id":{"$numberLong":"1158341758134235137"},"content":"RT @Tutsy22: A week in Brief:\n\n* 14 were kidnapped, including 5 RCCG pastors by Fulani herdsmen. \n\n* 60 persons killed by in Boko Haram.\n\n*…","location":"Abuja Nigeria","time_created":"Mon Aug 05 11:39:30 +0000 2019","tweeted_by":"@IamJudeCijeh"}
{"_id":{"$oid":"5d4815831918e212da2c96ed"},"tweet_id":{"$numberLong":"1158341804212854784"},"content":"RT @Sporothedj: I voted to save my country not to support corruption...if this is a signal to show #CyrilRamaphosa that he is not ready for…","location":"Bush, South Africa","time_created":"Mon Aug 05 11:39:41 +0000 2019","tweeted_by":"@Sporothedj"}
{"_id":{"$oid":"5d4815b01918e212da2c96ee"},"tweet_id":{"$numberLong":"1158341987575246848"},"content":"2 APC former Govs are currently serving jail terms for corruption, but my dear Mike here is ignorant of it.\n\nAnythi… https://t.co/8LQDNKxETD","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:40:25 +0000 2019","tweeted_by":"@Gbolahanguitar"}
{"_id":{"$oid":"5d4815b61918e212da2c96ef"},"tweet_id":{"$numberLong":"1158342016419414019"},"content":"RT @StearsBusiness: The closest our politicians come to policy is when they make broad promises to 'sweep out corruption' or 'create new jo…","location":"Kano, Nigeria","time_created":"Mon Aug 05 11:40:32 +0000 2019","tweeted_by":"@samirnuhu"}
{"_id":{"$oid":"5d4815bb1918e212da2c96f0"},"tweet_id":{"$numberLong":"1158342036547932160"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:40:37 +0000 2019","tweeted_by":"@dayotwanni"}
{"_id":{"$oid":"5d4815bb1918e212da2c96f1"},"tweet_id":{"$numberLong":"1158342037986525184"},"content":"RT @RepAdamSchiff: The ugly truth is this:\n\nWhite supremacist terrorism is a real and present danger. \n\nWhen the President and other leader…","location":"KenyanBorn NJBred VALiving","time_created":"Mon Aug 05 11:40:37 +0000 2019","tweeted_by":"@KenyanBunnie"}
{"_id":{"$oid":"5d4815bc1918e212da2c96f2"},"tweet_id":{"$numberLong":"1158342043690831872"},"content":"RT @RethOmari: Imagine the effort and preparation put into stopping a protest. Imagine if the same energy was put into combating insecurity…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:40:38 +0000 2019","tweeted_by":"@bowei_kay"}
{"_id":{"$oid":"5d4815c41918e212da2c96f3"},"tweet_id":{"$numberLong":"1158342078432256001"},"content":"RT @Independent: Trump smirked at the idea of shooting migrants at a rally three months before the El Paso terror attack https://t.co/BjSj4…","location":"South Africa","time_created":"Mon Aug 05 11:40:47 +0000 2019","tweeted_by":"@Take2tours"}
{"_id":{"$oid":"5d4815cb1918e212da2c96f4"},"tweet_id":{"$numberLong":"1158342103501561857"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Wa, Ghana","time_created":"Mon Aug 05 11:40:53 +0000 2019","tweeted_by":"@Iam_Fouad"}
{"_id":{"$oid":"5d4815ce1918e212da2c96f5"},"tweet_id":{"$numberLong":"1158342116667535360"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:40:56 +0000 2019","tweeted_by":"@dayotwanni"}
{"_id":{"$oid":"5d4815e01918e212da2c96f6"},"tweet_id":{"$numberLong":"1158342194048241664"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":" Nigeria","time_created":"Mon Aug 05 11:41:14 +0000 2019","tweeted_by":"@Abk_Shedullah"}
{"_id":{"$oid":"5d4815ee1918e212da2c96f7"},"tweet_id":{"$numberLong":"1158342253737316352"},"content":"RT @GMA: Since 9/11 more Americans have been killed by domestic terrorists than by foreign ones. @PierreTABC takes a look at white supremac…","location":"Egypt...Pharoes, pyramids","time_created":"Mon Aug 05 11:41:28 +0000 2019","tweeted_by":"@khalidaharash"}
{"_id":{"$oid":"5d4815f41918e212da2c96f8"},"tweet_id":{"$numberLong":"1158342281080049664"},"content":"RT @vusumuzikhoza: We can confirm that the Public Protector will investigate our complain re: corruption in the recent employment at @eThek…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 11:41:35 +0000 2019","tweeted_by":"@Odwa52362094"}
{"_id":{"$oid":"5d4815f51918e212da2c96f9"},"tweet_id":{"$numberLong":"1158342282975875072"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Kano, Nigeria.","time_created":"Mon Aug 05 11:41:35 +0000 2019","tweeted_by":"@s_adam01"}
{"_id":{"$oid":"5d4815f71918e212da2c96fa"},"tweet_id":{"$numberLong":"1158342291515465729"},"content":"RT @TrafficRTMC: JMPD officers sentenced to 8 yrs direct imprisonment for corruption and defeating the ends of justice https://t.co/fFMqgtf…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 11:41:37 +0000 2019","tweeted_by":"@Yoschkah"}
{"_id":{"$oid":"5d4815fa1918e212da2c96fb"},"tweet_id":{"$numberLong":"1158342303444066305"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Kano, Nigeria.","time_created":"Mon Aug 05 11:41:40 +0000 2019","tweeted_by":"@s_adam01"}
{"_id":{"$oid":"5d48161b1918e212da2c96fc"},"tweet_id":{"$numberLong":"1158342442409766912"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Benin-City, Nigeria","time_created":"Mon Aug 05 11:42:13 +0000 2019","tweeted_by":"@neefah_xx"}
{"_id":{"$oid":"5d4816311918e212da2c96fd"},"tweet_id":{"$numberLong":"1158342532335624192"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:42:35 +0000 2019","tweeted_by":"@mr_elsolomon7"}
{"_id":{"$oid":"5d4816361918e212da2c96fe"},"tweet_id":{"$numberLong":"1158342550220095488"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:42:39 +0000 2019","tweeted_by":"@ikore26"}
{"_id":{"$oid":"5d4816431918e212da2c96ff"},"tweet_id":{"$numberLong":"1158342603294875648"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Benin-City, Nigeria","time_created":"Mon Aug 05 11:42:52 +0000 2019","tweeted_by":"@neefah_xx"}
{"_id":{"$oid":"5d4816491918e212da2c9700"},"tweet_id":{"$numberLong":"1158342634081017858"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 11:42:59 +0000 2019","tweeted_by":"@franko4me4real"}
{"_id":{"$oid":"5d4816501918e212da2c9701"},"tweet_id":{"$numberLong":"1158342661478260736"},"content":"#PunguzaMizigoScam The proposal to try corruption suspects within 30 days is but a recipe for setting corruption su… https://t.co/KUxhCXJzSi","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:43:06 +0000 2019","tweeted_by":"@MiregwaThomas"}
{"_id":{"$oid":"5d4816501918e212da2c9702"},"tweet_id":{"$numberLong":"1158342663474728962"},"content":"If only this much gusto is put into tackling insecurity all over the country!🤔🤔","location":"Nigeria","time_created":"Mon Aug 05 11:43:06 +0000 2019","tweeted_by":"@Odutokun"}
{"_id":{"$oid":"5d4816571918e212da2c9703"},"tweet_id":{"$numberLong":"1158342690330808321"},"content":"RT @RepJoeKennedy: We are being broken by white male supremacy. And our President isn’t just ignoring this vicious terrorism. He’s giving i…","location":"Abuja Nigeria.","time_created":"Mon Aug 05 11:43:12 +0000 2019","tweeted_by":"@Alan_J_Damulira"}
{"_id":{"$oid":"5d4816621918e212da2c9704"},"tweet_id":{"$numberLong":"1158342737768398848"},"content":"RT @ajplus: The El Paso shooting is being treated as domestic terrorism, say officials.\n\n20 people were killed.\n\nIt was the 8th deadliest m…","location":"Nairobi,Kenya","time_created":"Mon Aug 05 11:43:24 +0000 2019","tweeted_by":"@Watiri_W"}
{"_id":{"$oid":"5d48166a1918e212da2c9705"},"tweet_id":{"$numberLong":"1158342772757291009"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:43:32 +0000 2019","tweeted_by":"@talkyurshyt"}
{"_id":{"$oid":"5d48166a1918e212da2c9706"},"tweet_id":{"$numberLong":"1158342773302595584"},"content":"@SpheDludla You can't have corruption and poor management of any entity then expect success. PSL is a private entit… https://t.co/IhzjnX8mBp","location":"Polokwane, South Africa","time_created":"Mon Aug 05 11:43:32 +0000 2019","tweeted_by":"@elias_ngwako"}
{"_id":{"$oid":"5d48167a1918e212da2c9707"},"tweet_id":{"$numberLong":"1158342839845183488"},"content":"RT @Dispatch_DD: Inside Nessie Knight Hospital in pictures: \n\nPatients at a crumbling Nessie Knight Hospital in Qumbu live in terror that t…","location":"Port Elizabeth, South Africa","time_created":"Mon Aug 05 11:43:48 +0000 2019","tweeted_by":"@SiibongiileE"}
{"_id":{"$oid":"5d48167e1918e212da2c9708"},"tweet_id":{"$numberLong":"1158342856576311296"},"content":"RT @guardian: We must call the El Paso shooting what it is: Trump-inspired terrorism | David Schanzer https://t.co/uHWgR3tbpT","location":"Nigeria","time_created":"Mon Aug 05 11:43:52 +0000 2019","tweeted_by":"@nurrency"}
{"_id":{"$oid":"5d4816981918e212da2c9709"},"tweet_id":{"$numberLong":"1158342967578509312"},"content":"RT @eNCA: Messi banned for three months after CONMEBOL 'corruption' outburst https://t.co/WkqVJ84DYo","location":"South Africa,Johannesburg ","time_created":"Mon Aug 05 11:44:19 +0000 2019","tweeted_by":"@mandy8424"}
{"_id":{"$oid":"5d4816991918e212da2c970a"},"tweet_id":{"$numberLong":"1158342968673218560"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:44:19 +0000 2019","tweeted_by":"@King_Blaise19"}
{"_id":{"$oid":"5d4817011918e212da2c970b"},"tweet_id":{"$numberLong":"1158343195014639616"},"content":"RT @MiregwaThomas: #PunguzaMizigoScam The proposal to try corruption suspects within 30 days is but a recipe for setting corruption suspect…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:45:13 +0000 2019","tweeted_by":"@MikeMarshallKE"}
{"_id":{"$oid":"5d4817011918e212da2c970c"},"tweet_id":{"$numberLong":"1158343210722369536"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"lagos Nigeria","time_created":"Mon Aug 05 11:45:17 +0000 2019","tweeted_by":"@adewaleyclassic"}
{"_id":{"$oid":"5d4817011918e212da2c970d"},"tweet_id":{"$numberLong":"1158343244838780928"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Port Harcourt,Nigeria","time_created":"Mon Aug 05 11:45:25 +0000 2019","tweeted_by":"@Holy_Mingy"}
{"_id":{"$oid":"5d4817011918e212da2c970e"},"tweet_id":{"$numberLong":"1158343279416623105"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:45:33 +0000 2019","tweeted_by":"@Akua_Johnson"}
{"_id":{"$oid":"5d4817011918e212da2c970f"},"tweet_id":{"$numberLong":"1158343309011705856"},"content":"RT @WalshFreedom: For eight years, many of us on the right demanded that Obama call out radical Islamic terror by name. Remember that? Well…","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 11:45:40 +0000 2019","tweeted_by":"@andyRoidO"}
{"_id":{"$oid":"5d4817011918e212da2c9710"},"tweet_id":{"$numberLong":"1158343316867600385"},"content":"RT @Oriadday: Welllllll, it's almost like Buhari's wife or children coming on here to speak against bad governance or corruption, see? http…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:45:42 +0000 2019","tweeted_by":"@choplifecreww"}
{"_id":{"$oid":"5d4817011918e212da2c9711"},"tweet_id":{"$numberLong":"1158343328229838848"},"content":"@Lexotan29 @saviorluv @black_taurus__ @obitexthentic_ We however thought that he had the liver to fight corruption… https://t.co/3Nf7DcJj38","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:45:45 +0000 2019","tweeted_by":"@adegokegalaxy"}
{"_id":{"$oid":"5d4817011918e212da2c9712"},"tweet_id":{"$numberLong":"1158343340896739328"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Wa, Ghana","time_created":"Mon Aug 05 11:45:48 +0000 2019","tweeted_by":"@Iam_Fouad"}
{"_id":{"$oid":"5d4817011918e212da2c9713"},"tweet_id":{"$numberLong":"1158343368352681984"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:45:54 +0000 2019","tweeted_by":"@theoga_nelson"}
{"_id":{"$oid":"5d4817011918e212da2c9714"},"tweet_id":{"$numberLong":"1158343380188966912"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:45:57 +0000 2019","tweeted_by":"@dampagne"}
{"_id":{"$oid":"5d4817031918e212da2c9715"},"tweet_id":{"$numberLong":"1158343411478323200"},"content":"RT @AOC: For months, we have been raising questions around how white supremacists have been able to escape terrorist labeling.\n\nHere’s one…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 11:46:04 +0000 2019","tweeted_by":"@realNtaraSibizo"}
{"_id":{"$oid":"5d48171e1918e212da2c9716"},"tweet_id":{"$numberLong":"1158343527279017985"},"content":"Welcome to a geographical location where protest are given more attention than terrorism and insecurities.","location":"Nigeria","time_created":"Mon Aug 05 11:46:32 +0000 2019","tweeted_by":"@realyossman"}
{"_id":{"$oid":"5d48171f1918e212da2c9717"},"tweet_id":{"$numberLong":"1158343529858514944"},"content":"RT @chetan_bhagat: Article 370 never gave Kashmiris freedom. It only created selfish leaders who created a terror filled society and robbed…","location":"Nairobi Kenya","time_created":"Mon Aug 05 11:46:33 +0000 2019","tweeted_by":"@georgeoketch12"}
{"_id":{"$oid":"5d4817361918e212da2c9718"},"tweet_id":{"$numberLong":"1158343625912266753"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:46:56 +0000 2019","tweeted_by":"@OgbukaEmmanuel"}
{"_id":{"$oid":"5d48173a1918e212da2c9719"},"tweet_id":{"$numberLong":"1158343646997032965"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:47:01 +0000 2019","tweeted_by":"@ad_mbo"}
{"_id":{"$oid":"5d48173e1918e212da2c971a"},"tweet_id":{"$numberLong":"1158343656992051200"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:47:03 +0000 2019","tweeted_by":"@OgbukaEmmanuel"}
{"_id":{"$oid":"5d4817461918e212da2c971b"},"tweet_id":{"$numberLong":"1158343693683892224"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Calabar, Nigeria","time_created":"Mon Aug 05 11:47:12 +0000 2019","tweeted_by":"@Buchee01"}
{"_id":{"$oid":"5d4817671918e212da2c971c"},"tweet_id":{"$numberLong":"1158343833878503424"},"content":"RT @jesang_: How about we punguza mzigo as other people deal with corruption https://t.co/WhTI3YjNCw","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:47:45 +0000 2019","tweeted_by":"@mistergitau"}
{"_id":{"$oid":"5d48177f1918e212da2c971d"},"tweet_id":{"$numberLong":"1158343931534434309"},"content":"RT @RepAdamSchiff: The ugly truth is this:\n\nWhite supremacist terrorism is a real and present danger. \n\nWhen the President and other leader…","location":"Manguzi, KZN, South Africa","time_created":"Mon Aug 05 11:48:08 +0000 2019","tweeted_by":"@InnocentManzini"}
{"_id":{"$oid":"5d4817901918e212da2c971e"},"tweet_id":{"$numberLong":"1158344007812075520"},"content":"RT @realyossman: Welcome to a geographical location where protest are given more attention than terrorism and insecurities.","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:48:27 +0000 2019","tweeted_by":"@Oba_Pelumi"}
{"_id":{"$oid":"5d4817a91918e212da2c971f"},"tweet_id":{"$numberLong":"1158344111902081025"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:48:51 +0000 2019","tweeted_by":"@Debs_opet"}
{"_id":{"$oid":"5d4817c41918e212da2c9720"},"tweet_id":{"$numberLong":"1158344225550942208"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:49:19 +0000 2019","tweeted_by":"@Danlab0307"}
{"_id":{"$oid":"5d4817c71918e212da2c9721"},"tweet_id":{"$numberLong":"1158344239241146368"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 11:49:22 +0000 2019","tweeted_by":"@EngrOWL"}
{"_id":{"$oid":"5d4817e31918e212da2c9722"},"tweet_id":{"$numberLong":"1158344351111622657"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Accra, Ghana","time_created":"Mon Aug 05 11:49:48 +0000 2019","tweeted_by":"@winiboy001"}
{"_id":{"$oid":"5d4817e61918e212da2c9723"},"tweet_id":{"$numberLong":"1158344365162553344"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:49:52 +0000 2019","tweeted_by":"@leewolfwriter"}
{"_id":{"$oid":"5d4817e71918e212da2c9724"},"tweet_id":{"$numberLong":"1158344371298873345"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:49:53 +0000 2019","tweeted_by":"@farouq_gm"}
{"_id":{"$oid":"5d4817e71918e212da2c9725"},"tweet_id":{"$numberLong":"1158344371395321859"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Morocco","time_created":"Mon Aug 05 11:49:53 +0000 2019","tweeted_by":"@MubarakKabeer10"}
{"_id":{"$oid":"5d4817e81918e212da2c9726"},"tweet_id":{"$numberLong":"1158344374448787457"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Nigeria","time_created":"Mon Aug 05 11:49:54 +0000 2019","tweeted_by":"@bensira_emeka"}
{"_id":{"$oid":"5d4817f11918e212da2c9727"},"tweet_id":{"$numberLong":"1158344411362799617"},"content":"A geographical location where protest and rallies are given more attention than terrorism and insecurities #RevolutionIsNow","location":"Nigeria","time_created":"Mon Aug 05 11:50:03 +0000 2019","tweeted_by":"@realyossman"}
{"_id":{"$oid":"5d4817f81918e212da2c9728"},"tweet_id":{"$numberLong":"1158344442249695232"},"content":"RT @Chxta: What has Sowore complained about? \n\nRise in violence, rise in kidnappings, pervasive corruption. \n\nHas the government addressed…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:50:10 +0000 2019","tweeted_by":"@SueKraz"}
{"_id":{"$oid":"5d48180a1918e212da2c9729"},"tweet_id":{"$numberLong":"1158344514983092225"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:50:28 +0000 2019","tweeted_by":"@Hemmanuelle65"}
{"_id":{"$oid":"5d4818101918e212da2c972a"},"tweet_id":{"$numberLong":"1158344541696614400"},"content":"@DTGamer92 @OneAngryGamerHD Regarding insecurity, media shapes the self worth, aspirations and wants of people. It’… https://t.co/KlCrvyhMGF","location":"Cape Town, South Africa","time_created":"Mon Aug 05 11:50:34 +0000 2019","tweeted_by":"@clashcorporate"}
{"_id":{"$oid":"5d48181c1918e212da2c972b"},"tweet_id":{"$numberLong":"1158344593341079552"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:50:46 +0000 2019","tweeted_by":"@khalypso911"}
{"_id":{"$oid":"5d48182e1918e212da2c972c"},"tweet_id":{"$numberLong":"1158344668616318977"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Rivers, Nigeria","time_created":"Mon Aug 05 11:51:04 +0000 2019","tweeted_by":"@d_adibe"}
{"_id":{"$oid":"5d4818301918e212da2c972d"},"tweet_id":{"$numberLong":"1158344676119896069"},"content":"RT @HEBobiwine: Today, Dr. Stella Nyanzi was convicted of cyber harassment! For using 'immoral words' against dictatorship, corruption and…","location":"Nairobi,Kenya","time_created":"Mon Aug 05 11:51:06 +0000 2019","tweeted_by":"@kgicheru"}
{"_id":{"$oid":"5d4818411918e212da2c972e"},"tweet_id":{"$numberLong":"1158344747288846336"},"content":"RT @MatthewTPage: For more on how abandoned projects fit in to my @CarnegieDCG taxonomy of corruption in Nigeria, see: https://t.co/w3mqeT5…","location":"All over Nigeria","time_created":"Mon Aug 05 11:51:23 +0000 2019","tweeted_by":"@ajosebbc"}
{"_id":{"$oid":"5d4818521918e212da2c972f"},"tweet_id":{"$numberLong":"1158344821188300801"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Lagos Nigeria","time_created":"Mon Aug 05 11:51:41 +0000 2019","tweeted_by":"@stantheguy"}
{"_id":{"$oid":"5d48186a1918e212da2c9730"},"tweet_id":{"$numberLong":"1158344922161917952"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 11:52:05 +0000 2019","tweeted_by":"@djhighbee"}
{"_id":{"$oid":"5d48186f1918e212da2c9731"},"tweet_id":{"$numberLong":"1158344943615848449"},"content":"Only in Nigeria will a government fighting corruption have the likes of Timipre Silva and Godswill Akpabio as minis… https://t.co/hkaUX1ZSo3","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:52:10 +0000 2019","tweeted_by":"@tomidearoso"}
{"_id":{"$oid":"5d4818831918e212da2c9732"},"tweet_id":{"$numberLong":"1158345026885378049"},"content":"So @advocatemahere represent and defends #MetBank in court? \n\nSuch hypocrisy cry corruption on social media while y… https://t.co/k5rUg2YOIH","location":"Pretoria, South Africa","time_created":"Mon Aug 05 11:52:30 +0000 2019","tweeted_by":"@Wekwajongwe"}
{"_id":{"$oid":"5d4818871918e212da2c9733"},"tweet_id":{"$numberLong":"1158345042286850048"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ilorin, Nigeria","time_created":"Mon Aug 05 11:52:33 +0000 2019","tweeted_by":"@Abbwabb"}
{"_id":{"$oid":"5d48188f1918e212da2c9734"},"tweet_id":{"$numberLong":"1158345076331941888"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria enugu","time_created":"Mon Aug 05 11:52:41 +0000 2019","tweeted_by":"@Montego_kay"}
{"_id":{"$oid":"5d4818931918e212da2c9735"},"tweet_id":{"$numberLong":"1158345094925312000"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria ","time_created":"Mon Aug 05 11:52:46 +0000 2019","tweeted_by":"@okobohstephen"}
{"_id":{"$oid":"5d48189a1918e212da2c9736"},"tweet_id":{"$numberLong":"1158345123375263744"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:52:53 +0000 2019","tweeted_by":"@MaduekweMichael"}
{"_id":{"$oid":"5d4818c21918e212da2c9737"},"tweet_id":{"$numberLong":"1158345287502565377"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Lekki, Nigeria","time_created":"Mon Aug 05 11:53:32 +0000 2019","tweeted_by":"@buildwithjosh"}
{"_id":{"$oid":"5d4818d11918e212da2c9738"},"tweet_id":{"$numberLong":"1158345352317218816"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:53:47 +0000 2019","tweeted_by":"@lilsaintyomi"}
{"_id":{"$oid":"5d4818e51918e212da2c9739"},"tweet_id":{"$numberLong":"1158345435322429441"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:54:07 +0000 2019","tweeted_by":"@Eric__Yero"}
{"_id":{"$oid":"5d4818ec1918e212da2c973a"},"tweet_id":{"$numberLong":"1158345462769958913"},"content":"Until domestic terrorism is recognised \u0026amp; named so by all, it will not be eradicated. White supremacy = Domestic Ter… https://t.co/i2cVP7rYcL","location":"South Africa","time_created":"Mon Aug 05 11:54:13 +0000 2019","tweeted_by":"@idefig"}
{"_id":{"$oid":"5d4818f21918e212da2c973b"},"tweet_id":{"$numberLong":"1158345489106067456"},"content":"RT @MazMHussain: Treating white nationalist terrorism like radical Islamic terrorism: putting lots of white people in jail who have nothing…","location":"Morocco","time_created":"Mon Aug 05 11:54:20 +0000 2019","tweeted_by":"@_SQ_77"}
{"_id":{"$oid":"5d4818fa1918e212da2c973c"},"tweet_id":{"$numberLong":"1158345525382569984"},"content":"RT @OfficialAbbaBe1: #RevolutionIsNow \nabuja\nBuhari\nNational stadium\nNigeria\n#FreeSoworeNow \nLagos\nEl zakzaky\nBoko Haram\nSurulere\n\nAll thes…","location":"Nigeria","time_created":"Mon Aug 05 11:54:28 +0000 2019","tweeted_by":"@Mazi_Okafor1"}
{"_id":{"$oid":"5d4819041918e212da2c973d"},"tweet_id":{"$numberLong":"1158345567413710848"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ibadan, Nigeria","time_created":"Mon Aug 05 11:54:38 +0000 2019","tweeted_by":"@JosephOdemakin"}
{"_id":{"$oid":"5d4819121918e212da2c973e"},"tweet_id":{"$numberLong":"1158345624225492992"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:54:52 +0000 2019","tweeted_by":"@JnrKezman"}
{"_id":{"$oid":"5d4819131918e212da2c973f"},"tweet_id":{"$numberLong":"1158345629338415104"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:54:53 +0000 2019","tweeted_by":"@Mojoyinola__"}
{"_id":{"$oid":"5d4819251918e212da2c9740"},"tweet_id":{"$numberLong":"1158345703728566273"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:55:11 +0000 2019","tweeted_by":"@AyeGentle"}
{"_id":{"$oid":"5d48192d1918e212da2c9741"},"tweet_id":{"$numberLong":"1158345722904928256"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Osun, Nigeria","time_created":"Mon Aug 05 11:55:16 +0000 2019","tweeted_by":"@Asiwaju_Valent"}
{"_id":{"$oid":"5d4819301918e212da2c9742"},"tweet_id":{"$numberLong":"1158345752969646081"},"content":"RT @adeyanjudeji: EYE WITNESS ACCOUNT OF HOW SOWORE WAS ARRESTED: Just read how our security agents abduct citizens like Boko Haram terrori…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:55:23 +0000 2019","tweeted_by":"@getmebayo"}
{"_id":{"$oid":"5d4819401918e212da2c9743"},"tweet_id":{"$numberLong":"1158345819386519552"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 11:55:39 +0000 2019","tweeted_by":"@w_tessus"}
{"_id":{"$oid":"5d4819491918e212da2c9744"},"tweet_id":{"$numberLong":"1158345855654608897"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:55:47 +0000 2019","tweeted_by":"@AdebisiRaheem10"}
{"_id":{"$oid":"5d48194e1918e212da2c9745"},"tweet_id":{"$numberLong":"1158345876353486848"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 11:55:52 +0000 2019","tweeted_by":"@khalypso911"}
{"_id":{"$oid":"5d4819501918e212da2c9746"},"tweet_id":{"$numberLong":"1158345886595989505"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:55:55 +0000 2019","tweeted_by":"@AdebisiRaheem10"}
{"_id":{"$oid":"5d4819581918e212da2c9747"},"tweet_id":{"$numberLong":"1158345918057463811"},"content":"RT @OfficialAbbaBe1: #RevolutionIsNow \nabuja\nBuhari\nNational stadium\nNigeria\n#FreeSoworeNow \nLagos\nEl zakzaky\nBoko Haram\nSurulere\n\nAll thes…","location":"Nigeria","time_created":"Mon Aug 05 11:56:02 +0000 2019","tweeted_by":"@Ugbo_ndioma"}
{"_id":{"$oid":"5d481a011918e212da2c9748"},"tweet_id":{"$numberLong":"1158345930527137793"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:56:05 +0000 2019","tweeted_by":"@efa101"}
{"_id":{"$oid":"5d481a011918e212da2c9749"},"tweet_id":{"$numberLong":"1158345962257100800"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"North, Nigeria","time_created":"Mon Aug 05 11:56:13 +0000 2019","tweeted_by":"@rilw_n"}
{"_id":{"$oid":"5d481a011918e212da2c974a"},"tweet_id":{"$numberLong":"1158345979105599489"},"content":"RT @realMCBizzo: @realDonaldTrump Is President Trump going to finally mention the words white nationalist terrorism? If he doesn’t he shoul…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:56:17 +0000 2019","tweeted_by":"@_kariukimaina"}
{"_id":{"$oid":"5d481a011918e212da2c974b"},"tweet_id":{"$numberLong":"1158346107732336640"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria/ UK","time_created":"Mon Aug 05 11:56:47 +0000 2019","tweeted_by":"@AguIfeanyiMB"}
{"_id":{"$oid":"5d481a011918e212da2c974c"},"tweet_id":{"$numberLong":"1158346166997852160"},"content":"RT @Chigold101: I love this place called Nigeria.\n#RevolutionNow is treason and an act of terrorism and it needs to be quashed.\n\nIn this sa…","location":"Nigeria","time_created":"Mon Aug 05 11:57:01 +0000 2019","tweeted_by":"@nickthomasng"}
{"_id":{"$oid":"5d481a011918e212da2c974d"},"tweet_id":{"$numberLong":"1158346174287536128"},"content":"RT @Wekwajongwe: So @advocatemahere represent and defends #MetBank in court? \n\nSuch hypocrisy cry corruption on social media while you repe…","location":"South Africa","time_created":"Mon Aug 05 11:57:03 +0000 2019","tweeted_by":"@TinofaMutevedzi"}
{"_id":{"$oid":"5d481a011918e212da2c974e"},"tweet_id":{"$numberLong":"1158346239081091073"},"content":"RT @MiregwaThomas: #PunguzaMizigoScam The proposal to try corruption suspects within 30 days is but a recipe for setting corruption suspect…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:57:19 +0000 2019","tweeted_by":"@PrettyAfricaKid"}
{"_id":{"$oid":"5d481a011918e212da2c974f"},"tweet_id":{"$numberLong":"1158346294039076865"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Kano, Nigeria","time_created":"Mon Aug 05 11:57:32 +0000 2019","tweeted_by":"@ShuaibuTimipre"}
{"_id":{"$oid":"5d481a011918e212da2c9750"},"tweet_id":{"$numberLong":"1158346295335165953"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 11:57:32 +0000 2019","tweeted_by":"@Phaemous_a"}
{"_id":{"$oid":"5d481a011918e212da2c9751"},"tweet_id":{"$numberLong":"1158346305866854401"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Accra, Ghana","time_created":"Mon Aug 05 11:57:35 +0000 2019","tweeted_by":"@manuchim_cj"}
{"_id":{"$oid":"5d481a011918e212da2c9752"},"tweet_id":{"$numberLong":"1158346352277016576"},"content":"RT @MatthewTPage: For more on how abandoned projects fit in to my @CarnegieDCG taxonomy of corruption in Nigeria, see: https://t.co/w3mqeT5…","location":"Lagos,Nigeria","time_created":"Mon Aug 05 11:57:46 +0000 2019","tweeted_by":"@Iyandajamiu"}
{"_id":{"$oid":"5d481a011918e212da2c9753"},"tweet_id":{"$numberLong":"1158346378847969280"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigerian.","time_created":"Mon Aug 05 11:57:52 +0000 2019","tweeted_by":"@kurreyday"}
{"_id":{"$oid":"5d481a021918e212da2c9754"},"tweet_id":{"$numberLong":"1158346422565113856"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:58:02 +0000 2019","tweeted_by":"@iamdamolatunji"}
{"_id":{"$oid":"5d481a021918e212da2c9755"},"tweet_id":{"$numberLong":"1158346428160389121"},"content":"RT @vusumuzikhoza: We can confirm that the Public Protector will investigate our complain re: corruption in the recent employment at @eThek…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 11:58:04 +0000 2019","tweeted_by":"@gm_mhlongo"}
{"_id":{"$oid":"5d481a021918e212da2c9756"},"tweet_id":{"$numberLong":"1158346431402520578"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:58:04 +0000 2019","tweeted_by":"@i_am_cheeboi"}
{"_id":{"$oid":"5d481a021918e212da2c9757"},"tweet_id":{"$numberLong":"1158346443209551872"},"content":"RT @ajplus: The El Paso shooting is being treated as domestic terrorism, say officials.\n\n20 people were killed.\n\nIt was the 8th deadliest m…","location":"Nigeria","time_created":"Mon Aug 05 11:58:07 +0000 2019","tweeted_by":"@loudandvocal"}
{"_id":{"$oid":"5d481a021918e212da2c9758"},"tweet_id":{"$numberLong":"1158346472007569408"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Jos, Nigeria","time_created":"Mon Aug 05 11:58:14 +0000 2019","tweeted_by":"@plateaupikin"}
{"_id":{"$oid":"5d481a021918e212da2c9759"},"tweet_id":{"$numberLong":"1158346551602929664"},"content":"RT @battletested5: Osama Bin Laden didn't fly planes in twin towers..He instead radicalized the terrorists\n\nSo yes trump didn't shoot up El…","location":"South Africa","time_created":"Mon Aug 05 11:58:33 +0000 2019","tweeted_by":"@NoniMsi"}
{"_id":{"$oid":"5d481a021918e212da2c975a"},"tweet_id":{"$numberLong":"1158346570082992128"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Kano, Nigeria","time_created":"Mon Aug 05 11:58:38 +0000 2019","tweeted_by":"@tht_blackgirl"}
{"_id":{"$oid":"5d481a021918e212da2c975b"},"tweet_id":{"$numberLong":"1158346613586313216"},"content":"The time is coming and i see it coming soon: when ordinary Kenyans will not entertain corruption any more. untill t… https://t.co/8Feb1BG2qp","location":"Nairobi, Kenya","time_created":"Mon Aug 05 11:58:48 +0000 2019","tweeted_by":"@kagirimburu"}
{"_id":{"$oid":"5d481a191918e212da2c975c"},"tweet_id":{"$numberLong":"1158346730624229377"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 11:59:16 +0000 2019","tweeted_by":"@aaakhigbe"}
{"_id":{"$oid":"5d481a381918e212da2c975d"},"tweet_id":{"$numberLong":"1158346857996783621"},"content":"been going on, he has been a terror in the house, stealing money and foodstuffs to give his girlfriend, even brough… https://t.co/MinUGWyWTh","location":"Lekki-Ajah, Nigeria","time_created":"Mon Aug 05 11:59:46 +0000 2019","tweeted_by":"@PumpkinTee95"}
{"_id":{"$oid":"5d481a4d1918e212da2c975e"},"tweet_id":{"$numberLong":"1158346945766801409"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:00:07 +0000 2019","tweeted_by":"@temmy_king"}
{"_id":{"$oid":"5d481a541918e212da2c975f"},"tweet_id":{"$numberLong":"1158346971154984961"},"content":"Mine is a terrorist attack at my workplace but OK.","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:00:13 +0000 2019","tweeted_by":"@muigai_Nywele"}
{"_id":{"$oid":"5d481a691918e212da2c9760"},"tweet_id":{"$numberLong":"1158347063899447296"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:00:35 +0000 2019","tweeted_by":"@lord_mannie"}
{"_id":{"$oid":"5d481a7f1918e212da2c9761"},"tweet_id":{"$numberLong":"1158347155679141888"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Kaduna, Nigeria","time_created":"Mon Aug 05 12:00:57 +0000 2019","tweeted_by":"@SutyYoung"}
{"_id":{"$oid":"5d481a9e1918e212da2c9762"},"tweet_id":{"$numberLong":"1158347281864769536"},"content":"RT @nowthisnews: .@AOC made a great point about white supremacist violence and the label of terrorism https://t.co/kc4bpr1MRN","location":"Nigeria","time_created":"Mon Aug 05 12:01:27 +0000 2019","tweeted_by":"@wizkinwizzy"}
{"_id":{"$oid":"5d481a9f1918e212da2c9763"},"tweet_id":{"$numberLong":"1158347288575651840"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Kano, Nigeria","time_created":"Mon Aug 05 12:01:29 +0000 2019","tweeted_by":"@Salmanlaure"}
{"_id":{"$oid":"5d481ab51918e212da2c9764"},"tweet_id":{"$numberLong":"1158347384075751425"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Nigeria","time_created":"Mon Aug 05 12:01:52 +0000 2019","tweeted_by":"@beebzy_"}
{"_id":{"$oid":"5d481ac31918e212da2c9765"},"tweet_id":{"$numberLong":"1158347441164472321"},"content":"RT @AOC: For months, we have been raising questions around how white supremacists have been able to escape terrorist labeling.\n\nHere’s one…","location":"Nigeria","time_created":"Mon Aug 05 12:02:05 +0000 2019","tweeted_by":"@wizkinwizzy"}
{"_id":{"$oid":"5d481add1918e212da2c9766"},"tweet_id":{"$numberLong":"1158347551617277963"},"content":"RT @DA_GPL: Since the DA-led multiparty government took over, crime and corruption have become public enemy number one in the City of Johan…","location":"South Africa","time_created":"Mon Aug 05 12:02:32 +0000 2019","tweeted_by":"@margiedgander"}
{"_id":{"$oid":"5d481add1918e212da2c9767"},"tweet_id":{"$numberLong":"1158347553051688960"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:02:32 +0000 2019","tweeted_by":"@Khalidami450"}
{"_id":{"$oid":"5d481ae41918e212da2c9768"},"tweet_id":{"$numberLong":"1158347579513614337"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Nigeria","time_created":"Mon Aug 05 12:02:38 +0000 2019","tweeted_by":"@kraziechain"}
{"_id":{"$oid":"5d481ae81918e212da2c9769"},"tweet_id":{"$numberLong":"1158347596634738688"},"content":"All what our bloggers in Ghana is good in broadcasting is leaked sex tape, murder and corruption.\nSo don't you know… https://t.co/dykEs8SyBY","location":"Ghana kumasi","time_created":"Mon Aug 05 12:02:42 +0000 2019","tweeted_by":"@MrChrisbrain1"}
{"_id":{"$oid":"5d481af31918e212da2c976a"},"tweet_id":{"$numberLong":"1158347643602579456"},"content":"RT @ItsMutai: If you ask over half of Africans: What is Boko Haram? They Don't know. Watch this video.\nThread in Part 1, 2 \n\nVideo: courtes…","location":"Onitsha, Nigeria","time_created":"Mon Aug 05 12:02:53 +0000 2019","tweeted_by":"@FemiClint"}
{"_id":{"$oid":"5d481af81918e212da2c976b"},"tweet_id":{"$numberLong":"1158347655308861445"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Maiduguri, Nigeria","time_created":"Mon Aug 05 12:02:56 +0000 2019","tweeted_by":"@ushet001"}
{"_id":{"$oid":"5d481af81918e212da2c976c"},"tweet_id":{"$numberLong":"1158347664725106689"},"content":"Wray says FBI has recorded about 100 domestic terrorism arrests in fiscal 2019 and many investigations involve whit… https://t.co/Dpp4kuLsqa","location":"U.S|Morocco","time_created":"Mon Aug 05 12:02:58 +0000 2019","tweeted_by":"@HoudaAbadi"}
{"_id":{"$oid":"5d481af81918e212da2c976d"},"tweet_id":{"$numberLong":"1158347655308861445"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Maiduguri, Nigeria","time_created":"Mon Aug 05 12:02:56 +0000 2019","tweeted_by":"@ushet001"}
{"_id":{"$oid":"5d481b071918e212da2c976e"},"tweet_id":{"$numberLong":"1158347724326088704"},"content":"RT @battletested5: Osama Bin Laden didn't fly planes in twin towers..He instead radicalized the terrorists\n\nSo yes trump didn't shoot up El…","location":"Mogale City, South Africa","time_created":"Mon Aug 05 12:03:13 +0000 2019","tweeted_by":"@trevason"}
{"_id":{"$oid":"5d481b101918e212da2c976f"},"tweet_id":{"$numberLong":"1158347761437294598"},"content":"All what our bloggers in Ghana is good in broadcasting is leaked sex tape, murder and corruption.\nSo don't you know… https://t.co/Lb0sbQIlxf","location":"Ghana kumasi","time_created":"Mon Aug 05 12:03:22 +0000 2019","tweeted_by":"@MrChrisbrain1"}
{"_id":{"$oid":"5d481b131918e212da2c9770"},"tweet_id":{"$numberLong":"1158347776578785281"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:03:25 +0000 2019","tweeted_by":"@antimayoskin"}
{"_id":{"$oid":"5d481b2a1918e212da2c9771"},"tweet_id":{"$numberLong":"1158347871374258176"},"content":"If you're a terrorist any protest from citizens is terrorism. If you're holding hammer anything you see is a nail,… https://t.co/377KM5lMOJ","location":"Rivers, Nigeria","time_created":"Mon Aug 05 12:03:48 +0000 2019","tweeted_by":"@Gloriousabel"}
{"_id":{"$oid":"5d481b381918e212da2c9772"},"tweet_id":{"$numberLong":"1158347932464222209"},"content":"RT @AOC: For months, we have been raising questions around how white supremacists have been able to escape terrorist labeling.\n\nHere’s one…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:04:02 +0000 2019","tweeted_by":"@DerrickWarinda"}
{"_id":{"$oid":"5d481b381918e212da2c9773"},"tweet_id":{"$numberLong":"1158347932678217728"},"content":"RT @BambeniZikode: The real face of terrorism, worldwide. https://t.co/O01jzc7mtT","location":"Pretoria, South Africa","time_created":"Mon Aug 05 12:04:02 +0000 2019","tweeted_by":"@SamMonyake"}
{"_id":{"$oid":"5d481b3a1918e212da2c9774"},"tweet_id":{"$numberLong":"1158347940408307713"},"content":"RT @ikivile_studio: And what is more pitiful, these men and women of the police are most hit negatively by the corruption and greed of the…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:04:04 +0000 2019","tweeted_by":"@OmonoOkonkwo"}
{"_id":{"$oid":"5d481b3c1918e212da2c9775"},"tweet_id":{"$numberLong":"1158347948901720065"},"content":"RT @FOnyeoziri: You are quick to grant Boko Haram members who were captured in combat amnesty. You turn a blind eye whenever herdsmen kill…","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 12:04:06 +0000 2019","tweeted_by":"@Ghandzo99"}
{"_id":{"$oid":"5d481b5b1918e212da2c9776"},"tweet_id":{"$numberLong":"1158348078438658048"},"content":"RT @battletested5: Osama Bin Laden didn't fly planes in twin towers..He instead radicalized the terrorists\n\nSo yes trump didn't shoot up El…","location":"Pretoria, South Africa","time_created":"Mon Aug 05 12:04:37 +0000 2019","tweeted_by":"@duduziler"}
{"_id":{"$oid":"5d481b651918e212da2c9777"},"tweet_id":{"$numberLong":"1158348120973033473"},"content":"All what our bloggers in Ghana is good in broadcasting is leaked sex tape, murder and corruption.\nSo don't you know… https://t.co/KMTsXbyWqy","location":"Ghana kumasi","time_created":"Mon Aug 05 12:04:47 +0000 2019","tweeted_by":"@MrChrisbrain1"}
{"_id":{"$oid":"5d481b7e1918e212da2c9778"},"tweet_id":{"$numberLong":"1158348225180512257"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:05:12 +0000 2019","tweeted_by":"@CapricornKingJo"}
{"_id":{"$oid":"5d481b7e1918e212da2c9779"},"tweet_id":{"$numberLong":"1158348226426232834"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:05:12 +0000 2019","tweeted_by":"@world_sfinest"}
{"_id":{"$oid":"5d481b8c1918e212da2c977a"},"tweet_id":{"$numberLong":"1158348284337041409"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ibadan, Oyo state Nigeria.","time_created":"Mon Aug 05 12:05:26 +0000 2019","tweeted_by":"@Jabamony"}
{"_id":{"$oid":"5d481b8d1918e212da2c977b"},"tweet_id":{"$numberLong":"1158348287751217152"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Accra,Ghana","time_created":"Mon Aug 05 12:05:27 +0000 2019","tweeted_by":"@KeliKyei"}
{"_id":{"$oid":"5d481b961918e212da2c977c"},"tweet_id":{"$numberLong":"1158348326196174849"},"content":"RT @skaalbgroup: @ovieali @tedlieu @realDonaldTrump Let PDP vuvuzelas and irresponsible media be headlining insecurity and be crying of lac…","location":"Ibadan City, Nigeria","time_created":"Mon Aug 05 12:05:36 +0000 2019","tweeted_by":"@Lanray_11"}
{"_id":{"$oid":"5d481b991918e212da2c977d"},"tweet_id":{"$numberLong":"1158348338590359555"},"content":"El Paso shooting: Trump demands immigration reform in wake of domestic terror attack – while admitting better gun c… https://t.co/CEidF9UZQs","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:05:39 +0000 2019","tweeted_by":"@Officialjoemaya"}
{"_id":{"$oid":"5d481b9f1918e212da2c977e"},"tweet_id":{"$numberLong":"1158348367296176133"},"content":"El Paso shooting: Trump demands immigration reform in wake of domestic terror attack – while admitting better gun c… https://t.co/ldaEhyvDo2","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:05:46 +0000 2019","tweeted_by":"@opennewswindow"}
{"_id":{"$oid":"5d481ba51918e212da2c977f"},"tweet_id":{"$numberLong":"1158348390541012995"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:05:52 +0000 2019","tweeted_by":"@UkaegbuGreatJnr"}
{"_id":{"$oid":"5d481baa1918e212da2c9780"},"tweet_id":{"$numberLong":"1158348413148303360"},"content":"Insecurity holds you behind a bar called self esteem.\n\nHow do you handle the self insecurity? \n\nJust do that which… https://t.co/hLyJDN3gLW","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:05:57 +0000 2019","tweeted_by":"@EOmorobe"}
{"_id":{"$oid":"5d481bc31918e212da2c9781"},"tweet_id":{"$numberLong":"1158348515678052352"},"content":"RT @dailynation: Kenya's burden is in not in Parliament but in corruption, Senator Moses Wetangula tells Aukot. https://t.co/r2oojqriw3","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:06:21 +0000 2019","tweeted_by":"@kagirimburu"}
{"_id":{"$oid":"5d481bd11918e212da2c9782"},"tweet_id":{"$numberLong":"1158348570489163778"},"content":"RT @adamshatz: Tapper's not alone. In the US the association of Arabs/Muslims and terrorism is so deep that white nationalist terrorism pre…","location":"Nairobi, Kenya ","time_created":"Mon Aug 05 12:06:34 +0000 2019","tweeted_by":"@firefuegomami"}
{"_id":{"$oid":"5d481bdf1918e212da2c9783"},"tweet_id":{"$numberLong":"1158348632921391105"},"content":"RT @EricHolder: Enough-time for real action. Pass a domestic terrorism bill. Ban assault weapons, high capacity magazines, body armor, sile…","location":"South Africa","time_created":"Mon Aug 05 12:06:49 +0000 2019","tweeted_by":"@Nahitoh19"}
{"_id":{"$oid":"5d481be41918e212da2c9784"},"tweet_id":{"$numberLong":"1158348651552477185"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Uyo, Nigeria","time_created":"Mon Aug 05 12:06:54 +0000 2019","tweeted_by":"@ime_mon"}
{"_id":{"$oid":"5d481bec1918e212da2c9785"},"tweet_id":{"$numberLong":"1158348684695879680"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:07:02 +0000 2019","tweeted_by":"@Yunglhaji"}
{"_id":{"$oid":"5d481bf01918e212da2c9786"},"tweet_id":{"$numberLong":"1158348700688818176"},"content":"RT @Ali_Manzu: Two mass shootings in less than 24 hours in the US. Is America safe? Talk of domestic terrorism.","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:07:05 +0000 2019","tweeted_by":"@kagirimburu"}
{"_id":{"$oid":"5d481bfa1918e212da2c9787"},"tweet_id":{"$numberLong":"1158348746192801792"},"content":"RT @ije12002: I am sympathizing with Nigerians that Boko Haram \u0026amp; Fulani herdsmen are killing, while @MBuhari is saying they should be pampe…","location":"Nigeria","time_created":"Mon Aug 05 12:07:16 +0000 2019","tweeted_by":"@samuche83"}
{"_id":{"$oid":"5d481c061918e212da2c9788"},"tweet_id":{"$numberLong":"1158348796188868608"},"content":"RT @dahunsirazaq: Ma oga once told me the only thing well organized in our country is corruption.... We at it again... 2face want revolutio…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:07:28 +0000 2019","tweeted_by":"@AadamBodunrin"}
{"_id":{"$oid":"5d481c251918e212da2c9789"},"tweet_id":{"$numberLong":"1158348924387766279"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:07:59 +0000 2019","tweeted_by":"@allenben_"}
{"_id":{"$oid":"5d481c3e1918e212da2c978a"},"tweet_id":{"$numberLong":"1158349029471903749"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Minna, Nigeria","time_created":"Mon Aug 05 12:08:24 +0000 2019","tweeted_by":"@DehLolah"}
{"_id":{"$oid":"5d481c421918e212da2c978b"},"tweet_id":{"$numberLong":"1158349047524220928"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:08:28 +0000 2019","tweeted_by":"@El_Fabricator"}
{"_id":{"$oid":"5d481c531918e212da2c978c"},"tweet_id":{"$numberLong":"1158349118533713923"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:08:45 +0000 2019","tweeted_by":"@tosin_oyesakin"}
{"_id":{"$oid":"5d481c6e1918e212da2c978d"},"tweet_id":{"$numberLong":"1158349231268225024"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:09:12 +0000 2019","tweeted_by":"@MrMjay4"}
{"_id":{"$oid":"5d481c711918e212da2c978e"},"tweet_id":{"$numberLong":"1158349241653321728"},"content":"We came into this Administration saying Goodluck Jonathan could not deal with Boko Haram.\n\nToday, we've not overcom… https://t.co/9abyam2xkA","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:09:14 +0000 2019","tweeted_by":"@segunabe"}
{"_id":{"$oid":"5d481c831918e212da2c978f"},"tweet_id":{"$numberLong":"1158349323748413440"},"content":"RT @B52Malmet: No one wants your condolences. Your hatred is evident every day. You own this level of domestic terrorism. You fuel it. We h…","location":"Nigeria","time_created":"Mon Aug 05 12:09:34 +0000 2019","tweeted_by":"@blsd100"}
{"_id":{"$oid":"5d481c8a1918e212da2c9790"},"tweet_id":{"$numberLong":"1158349352471007234"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:09:41 +0000 2019","tweeted_by":"@Adimchinobi6"}
{"_id":{"$oid":"5d481f9f1918e22356446786"},"tweet_id":{"$numberLong":"1158352657767174144"},"content":"RT @ChristinaStarbu: Several factors make South Africa an ideal setting to plan terror operations https://t.co/zL7XOqCSj1 via @ISSAfrica","location":"South Africa","time_created":"Mon Aug 05 12:22:49 +0000 2019","tweeted_by":"@AmandaNaude6"}
{"_id":{"$oid":"5d481fb21918e22356446787"},"tweet_id":{"$numberLong":"1158352738415235078"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:23:08 +0000 2019","tweeted_by":"@Krissyflirr"}
{"_id":{"$oid":"5d481fba1918e22356446788"},"tweet_id":{"$numberLong":"1158352769465671681"},"content":"Thousands of soldiers are killed by Boko Haram and they are buried secretly by the government, no pension for polic… https://t.co/G8bJ8p498D","location":"Nigeria","time_created":"Mon Aug 05 12:23:16 +0000 2019","tweeted_by":"@collinsatos"}
{"_id":{"$oid":"5d481fbd1918e22356446789"},"tweet_id":{"$numberLong":"1158352784296742912"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Port Harcourt / Warri, Nigeria","time_created":"Mon Aug 05 12:23:19 +0000 2019","tweeted_by":"@itzpre_"}
{"_id":{"$oid":"5d481fc11918e2235644678a"},"tweet_id":{"$numberLong":"1158352802797821952"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:23:23 +0000 2019","tweeted_by":"@imdanychris"}
{"_id":{"$oid":"5d481fd81918e2235644678b"},"tweet_id":{"$numberLong":"1158352894661468161"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:23:45 +0000 2019","tweeted_by":"@erhuvwu_"}
{"_id":{"$oid":"5d481fdb1918e2235644678c"},"tweet_id":{"$numberLong":"1158352909488283650"},"content":"RT @femiadegbulugbe: The French President is a youth. Much younger than Sowore or Kanu. He did not become President through terrorism or…","location":"Nigeria","time_created":"Mon Aug 05 12:23:49 +0000 2019","tweeted_by":"@slydoodo"}
{"_id":{"$oid":"5d481fdb1918e2235644678d"},"tweet_id":{"$numberLong":"1158352911249956864"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Awka, Nigeria","time_created":"Mon Aug 05 12:23:49 +0000 2019","tweeted_by":"@DJJABTICS"}
{"_id":{"$oid":"5d481fe41918e2235644678e"},"tweet_id":{"$numberLong":"1158352948742819840"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:23:58 +0000 2019","tweeted_by":"@Boleazy"}
{"_id":{"$oid":"5d481fee1918e2235644678f"},"tweet_id":{"$numberLong":"1158352992317399040"},"content":"RT @RepAdamSchiff: The ugly truth is this:\n\nWhite supremacist terrorism is a real and present danger. \n\nWhen the President and other leader…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 12:24:09 +0000 2019","tweeted_by":"@FrancesMay03"}
{"_id":{"$oid":"5d481ff71918e22356446790"},"tweet_id":{"$numberLong":"1158353031056035840"},"content":"RT @SpheDludla: AfriForum says it be will laying criminal charges of money laundering and corruption against Transport Minister Fikile Mbal…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 12:24:18 +0000 2019","tweeted_by":"@cci_network"}
{"_id":{"$oid":"5d4820041918e22356446791"},"tweet_id":{"$numberLong":"1158353085401567232"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"5H Lagos-Nigeria ","time_created":"Mon Aug 05 12:24:31 +0000 2019","tweeted_by":"@FifthHarmonyNig"}
{"_id":{"$oid":"5d4820151918e22356446792"},"tweet_id":{"$numberLong":"1158353151097024512"},"content":"RT @RodRosenstein: George is right. Killing random civilians to spread a political message is terrorism. FBI classifies it as domestic terr…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:24:47 +0000 2019","tweeted_by":"@MohamedMHaji"}
{"_id":{"$oid":"5d4820211918e22356446793"},"tweet_id":{"$numberLong":"1158353204138119169"},"content":"RT @vusumuzikhoza: We can confirm that the Public Protector will investigate our complain re: corruption in the recent employment at @eThek…","location":"Umhlanga, South Africa","time_created":"Mon Aug 05 12:24:59 +0000 2019","tweeted_by":"@bambos101"}
{"_id":{"$oid":"5d4820311918e22356446794"},"tweet_id":{"$numberLong":"1158353269586104320"},"content":"@AnnitahRaey Is borrowing money from your bae a crime or is it a form of corruption, at least we borrow and return… https://t.co/1QtbMzLF3W","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:25:15 +0000 2019","tweeted_by":"@were_franckie"}
{"_id":{"$oid":"5d4820331918e22356446795"},"tweet_id":{"$numberLong":"1158353277983047681"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Gold Coast Tamale Ghana ","time_created":"Mon Aug 05 12:25:17 +0000 2019","tweeted_by":"@bluecitygh"}
{"_id":{"$oid":"5d4820351918e22356446796"},"tweet_id":{"$numberLong":"1158353285880930304"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:25:19 +0000 2019","tweeted_by":"@Chukky15"}
{"_id":{"$oid":"5d4820351918e22356446797"},"tweet_id":{"$numberLong":"1158353286451171329"},"content":"Rihanna to Trump on El Paso, Dayton shootings: “Donald, you spelt ‘terrorism’ wrong”\nSinger slams POTUS for failing… https://t.co/0Q1n82vmDZ","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:25:19 +0000 2019","tweeted_by":"@tashtalkstv"}
{"_id":{"$oid":"5d48203c1918e22356446798"},"tweet_id":{"$numberLong":"1158353316906188801"},"content":"RT @dailynation: Kenya's burden is in not in Parliament but in corruption, Senator Moses Wetangula tells Aukot. https://t.co/r2oojqriw3","location":"Mwiki Nairobi, Kenya","time_created":"Mon Aug 05 12:25:26 +0000 2019","tweeted_by":"@Musa_Ndirangu"}
{"_id":{"$oid":"5d4820411918e22356446799"},"tweet_id":{"$numberLong":"1158353338972418048"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:25:31 +0000 2019","tweeted_by":"@kilonpop"}
{"_id":{"$oid":"5d4820431918e2235644679a"},"tweet_id":{"$numberLong":"1158353344857026562"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Nigeria","time_created":"Mon Aug 05 12:25:33 +0000 2019","tweeted_by":"@Rolex7Michael"}
{"_id":{"$oid":"5d48206f1918e2235644679b"},"tweet_id":{"$numberLong":"1158353530765414401"},"content":"RT @spunkynigga: If two of this guy enter Sambisa forest in Nigeria, Boko Haram will go to extinction. https://t.co/bynD7kPW6Y","location":"Nigeria yenagoa","time_created":"Mon Aug 05 12:26:17 +0000 2019","tweeted_by":"@thatizonboy"}
{"_id":{"$oid":"5d4820721918e2235644679c"},"tweet_id":{"$numberLong":"1158353542895345664"},"content":"RT @Sowore_AAC: 2. An effective and democratic end to insecurity and insurgency.\n\n3. An end to systemic corruption and for total system cha…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:26:20 +0000 2019","tweeted_by":"@Theboi_hitch"}
{"_id":{"$oid":"5d4820841918e2235644679d"},"tweet_id":{"$numberLong":"1158353618078187520"},"content":"RT @PeteButtigieg: Our president isn't just failing to confront and disarm these domestic terrorists, he is amplifying and condoning their…","location":"Dahab, South Sinai, Egypt","time_created":"Mon Aug 05 12:26:38 +0000 2019","tweeted_by":"@BasiaSosnowska"}
{"_id":{"$oid":"5d4820861918e2235644679e"},"tweet_id":{"$numberLong":"1158353628106805249"},"content":"Oh my the height of insecurity.......","location":"Nigeria","time_created":"Mon Aug 05 12:26:40 +0000 2019","tweeted_by":"@sugarsoniyke"}
{"_id":{"$oid":"5d48209d1918e2235644679f"},"tweet_id":{"$numberLong":"1158353725318152192"},"content":"@ShazieKe In that representation is where corruption comes in there is correlation between the two wacha tupunguze mzigo","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:27:03 +0000 2019","tweeted_by":"@Njengaa2"}
{"_id":{"$oid":"5d4820a01918e223564467a0"},"tweet_id":{"$numberLong":"1158353739390042113"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Plateau State, Nigeria","time_created":"Mon Aug 05 12:27:07 +0000 2019","tweeted_by":"@SethAzzuwut"}
{"_id":{"$oid":"5d4820bc1918e223564467a1"},"tweet_id":{"$numberLong":"1158353857442983936"},"content":"RT @ItsMutai: If you ask over half of Africans: What is Boko Haram? They Don't know. Watch this video.\nThread in Part 1, 2 \n\nVideo: courtes…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:27:35 +0000 2019","tweeted_by":"@benthetwist"}
{"_id":{"$oid":"5d4820c51918e223564467a2"},"tweet_id":{"$numberLong":"1158353892196982785"},"content":"RT @hezron_hezy: America is a hotbed of terror","location":"Kenya🇰🇪","time_created":"Mon Aug 05 12:27:43 +0000 2019","tweeted_by":"@Loteekua"}
{"_id":{"$oid":"5d4820d51918e223564467a3"},"tweet_id":{"$numberLong":"1158353956994715649"},"content":"@mickiebrownkie @atiku As you know thier interest is only to short change Nigerians and the anti corruption policy… https://t.co/ui2a7BthjT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:27:59 +0000 2019","tweeted_by":"@AMinjibr"}
{"_id":{"$oid":"5d4820da1918e223564467a4"},"tweet_id":{"$numberLong":"1158353976758296576"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Kaduna, Nigeria","time_created":"Mon Aug 05 12:28:03 +0000 2019","tweeted_by":"@Saliim_Mr"}
{"_id":{"$oid":"5d4820de1918e223564467a5"},"tweet_id":{"$numberLong":"1158353993527156736"},"content":"Kajuru crisis: Adara people proffer solution to insecurity in their area https://t.co/dRfE4byHh8 https://t.co/iw3EQ6trR9","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:28:07 +0000 2019","tweeted_by":"@spielngnews"}
{"_id":{"$oid":"5d4822721918e223564467a6"},"tweet_id":{"$numberLong":"1158355644510027777"},"content":"RT @RepAdamSchiff: The ugly truth is this:\n\nWhite supremacist terrorism is a real and present danger. \n\nWhen the President and other leader…","location":"South Africa","time_created":"Mon Aug 05 12:34:41 +0000 2019","tweeted_by":"@Linsey_Dyer"}
{"_id":{"$oid":"5d4822721918e223564467a7"},"tweet_id":{"$numberLong":"1158355645415997441"},"content":"RT @CharlesMBlow: This is not a “mental illness problem”! This is a white nationalist terrorism problem!!! https://t.co/jnP3fVICfR","location":"In Egypt On A Camels Back ","time_created":"Mon Aug 05 12:34:41 +0000 2019","tweeted_by":"@TrophyCase_"}
{"_id":{"$oid":"5d4822721918e223564467a8"},"tweet_id":{"$numberLong":"1158355654878334977"},"content":"@ManuelFGarcia1 @NRO @DavidAFrench you haven't heard of the war on terror?","location":"South Sudan","time_created":"Mon Aug 05 12:34:43 +0000 2019","tweeted_by":"@HotepHonky"}
{"_id":{"$oid":"5d4822721918e223564467a9"},"tweet_id":{"$numberLong":"1158355673161314304"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Nigeria","time_created":"Mon Aug 05 12:34:48 +0000 2019","tweeted_by":"@i_am_meZziah"}
{"_id":{"$oid":"5d4822721918e223564467aa"},"tweet_id":{"$numberLong":"1158355688739016704"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Jos, Nigeria","time_created":"Mon Aug 05 12:34:52 +0000 2019","tweeted_by":"@RyceDee"}
{"_id":{"$oid":"5d4822761918e223564467ab"},"tweet_id":{"$numberLong":"1158354047365189632"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:28:20 +0000 2019","tweeted_by":"@babsjoe1"}
{"_id":{"$oid":"5d4822761918e223564467ac"},"tweet_id":{"$numberLong":"1158354053828698113"},"content":"RT @ACE_soas: How is private corruption in Pakistan's pharmaceutical sector harming economic growth and public health?\n\nThis new working pa…","location":"Tanzania","time_created":"Mon Aug 05 12:28:22 +0000 2019","tweeted_by":"@mtanzania"}
{"_id":{"$oid":"5d4822761918e223564467ad"},"tweet_id":{"$numberLong":"1158354085663449088"},"content":"The brave women fighting Boko Haram in Nigeria https://t.co/FtF8jhtuLm https://t.co/TrqBKcF6ot","location":"Nigeria","time_created":"Mon Aug 05 12:28:29 +0000 2019","tweeted_by":"@TweetSumaiya"}
{"_id":{"$oid":"5d4822761918e223564467ae"},"tweet_id":{"$numberLong":"1158354097680125952"},"content":"RT @AMinjibr: @mickiebrownkie @atiku As you know thier interest is only to short change Nigerians and the anti corruption policy of PMB is…","location":"Nigeria","time_created":"Mon Aug 05 12:28:32 +0000 2019","tweeted_by":"@mickiebrownkie"}
{"_id":{"$oid":"5d4822761918e223564467af"},"tweet_id":{"$numberLong":"1158354108899889152"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Uyo, Nigeria","time_created":"Mon Aug 05 12:28:35 +0000 2019","tweeted_by":"@__dinor"}
{"_id":{"$oid":"5d4822771918e223564467b0"},"tweet_id":{"$numberLong":"1158354121914798081"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 12:28:38 +0000 2019","tweeted_by":"@erhuvwu_"}
{"_id":{"$oid":"5d4822771918e223564467b1"},"tweet_id":{"$numberLong":"1158354135978270720"},"content":"RT @RepAdamSchiff: The ugly truth is this:\n\nWhite supremacist terrorism is a real and present danger. \n\nWhen the President and other leader…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:28:41 +0000 2019","tweeted_by":"@habibrop"}
{"_id":{"$oid":"5d4822771918e223564467b2"},"tweet_id":{"$numberLong":"1158354158937870336"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"All over Nigeria","time_created":"Mon Aug 05 12:28:47 +0000 2019","tweeted_by":"@ajosebbc"}
{"_id":{"$oid":"5d4822771918e223564467b3"},"tweet_id":{"$numberLong":"1158354235681103872"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:29:05 +0000 2019","tweeted_by":"@scaredx"}
{"_id":{"$oid":"5d4822771918e223564467b4"},"tweet_id":{"$numberLong":"1158354300772503553"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"All over Nigeria","time_created":"Mon Aug 05 12:29:21 +0000 2019","tweeted_by":"@ajosebbc"}
{"_id":{"$oid":"5d4822771918e223564467b5"},"tweet_id":{"$numberLong":"1158354301003190273"},"content":"RT @CyberInAfrica: Hello folks! \n\nCheck out issue 2 of the #CyberScapeAfrica cybersecurity magazine\n\nIt explores virtual terrorism, critica…","location":"Kenya","time_created":"Mon Aug 05 12:29:21 +0000 2019","tweeted_by":"@Myk_Felix"}
{"_id":{"$oid":"5d4822771918e223564467b6"},"tweet_id":{"$numberLong":"1158354389419069442"},"content":"RT @HarunMaruf: BREAKING: 2 Al-Shabaabs executed today for terrorism in 2017/18. Anshour O. Abukar (in green) 23, Mohamed A. Borow, 25 were…","location":"Jijiga, Somalia","time_created":"Mon Aug 05 12:29:42 +0000 2019","tweeted_by":"@YoungMaliGuy"}
{"_id":{"$oid":"5d4822771918e223564467b7"},"tweet_id":{"$numberLong":"1158354466023858178"},"content":"GUYO: Judiciary must slay the dragon of corruption to save the nation https://t.co/f38irXWU0d","location":"Kenya","time_created":"Mon Aug 05 12:30:00 +0000 2019","tweeted_by":"@dailynation"}
{"_id":{"$oid":"5d4822771918e223564467b8"},"tweet_id":{"$numberLong":"1158354478694895622"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:30:03 +0000 2019","tweeted_by":"@kenzkidz1"}
{"_id":{"$oid":"5d4822771918e223564467b9"},"tweet_id":{"$numberLong":"1158354509707563014"},"content":"RT @Nwafresh: Pride of the nation, the people's choice, man of his words, a true definition of integrity, job creator, corruption fighter,…","location":"Sokoto, Nigeria","time_created":"Mon Aug 05 12:30:10 +0000 2019","tweeted_by":"@H_B_Mayana"}
{"_id":{"$oid":"5d4822771918e223564467ba"},"tweet_id":{"$numberLong":"1158354513624993792"},"content":"RT @FreddieCampion: Remember last week when the director of the FBI said white supremacists were behind pretty much all domestic terrorism…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 12:30:11 +0000 2019","tweeted_by":"@Mavumavu91"}
{"_id":{"$oid":"5d4822771918e223564467bb"},"tweet_id":{"$numberLong":"1158354524995817472"},"content":"@Asmali77 Narcissism, corruption, egocentrism, self-centred ness, unstraightness, excessive bureaucracy and the car… https://t.co/fHFA2DDTdo","location":"Kenya","time_created":"Mon Aug 05 12:30:14 +0000 2019","tweeted_by":"@SoulFestPro"}
{"_id":{"$oid":"5d4822771918e223564467bc"},"tweet_id":{"$numberLong":"1158354545707290624"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:30:19 +0000 2019","tweeted_by":"@faisaljalo"}
{"_id":{"$oid":"5d4822771918e223564467bd"},"tweet_id":{"$numberLong":"1158354678796738560"},"content":"RT @JamilFarouk: The fact that our leaders are “threatening” to expose corruption instead of doing it out of principle tells you everything…","location":"Pietermaritzburg, South Africa","time_created":"Mon Aug 05 12:30:51 +0000 2019","tweeted_by":"@zama_em"}
{"_id":{"$oid":"5d4822791918e223564467be"},"tweet_id":{"$numberLong":"1158354720618176513"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Federal Capital Territory, Nigeria","time_created":"Mon Aug 05 12:31:01 +0000 2019","tweeted_by":"@Gbolahan__"}
{"_id":{"$oid":"5d4822791918e223564467bf"},"tweet_id":{"$numberLong":"1158354830232104961"},"content":"RT @JerotichSeii: 7. WaKenya: remember that flows of funds from corruption \u0026amp; money laundering could have used US banking systems \u0026amp; therefor…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:31:27 +0000 2019","tweeted_by":"@PEREZMUNYAO"}
{"_id":{"$oid":"5d4822791918e223564467c0"},"tweet_id":{"$numberLong":"1158355047127764993"},"content":"RT @geertwilderspvv: India is a full democracy.\nPakistan is a 100% terror state. \n\nSo the choice is easy.\n\nWelcome home #Kashmir. \n\n#IndiaF…","location":"Somalia","time_created":"Mon Aug 05 12:32:19 +0000 2019","tweeted_by":"@amitDOTkr"}
{"_id":{"$oid":"5d4822791918e223564467c1"},"tweet_id":{"$numberLong":"1158355049225080832"},"content":"@CharlesEmeka007 @GenneyU @cee_de_man @atiku @OmasoroO Secondly let me tell you from ur earlier claim of corruption… https://t.co/WqG4L1jS2I","location":"Enugu, Nigeria","time_created":"Mon Aug 05 12:32:19 +0000 2019","tweeted_by":"@nwokoye6"}
{"_id":{"$oid":"5d4822791918e223564467c2"},"tweet_id":{"$numberLong":"1158355165734477824"},"content":"RT @CaldronPool: Leftist Logic:\n\n“Why are brown men carrying out more terrorism attacks?” Racist.\n\n“Why are white men carrying out more mas…","location":"Boksburg-South Africa","time_created":"Mon Aug 05 12:32:47 +0000 2019","tweeted_by":"@Appietrader"}
{"_id":{"$oid":"5d4822791918e223564467c3"},"tweet_id":{"$numberLong":"1158355242368393217"},"content":"RT @ItsMutai: If you ask over half of Africans: What is Boko Haram? They Don't know. Watch this video.\nThread in Part 1, 2 \n\nVideo: courtes…","location":"Nairobi,Kenya","time_created":"Mon Aug 05 12:33:05 +0000 2019","tweeted_by":"@IAmNickTyalus"}
{"_id":{"$oid":"5d4822791918e223564467c4"},"tweet_id":{"$numberLong":"1158355274178023426"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:33:13 +0000 2019","tweeted_by":"@Twickta"}
{"_id":{"$oid":"5d4822791918e223564467c5"},"tweet_id":{"$numberLong":"1158355383603404801"},"content":"@CNN Why still calling it 'an attack' instead of 'terrorism'????","location":"Nairobi, Kenya ","time_created":"Mon Aug 05 12:33:39 +0000 2019","tweeted_by":"@NkoroiKiogora"}
{"_id":{"$oid":"5d48227a1918e223564467c6"},"tweet_id":{"$numberLong":"1158355470404542467"},"content":"RT @FreddieCampion: Remember last week when the director of the FBI said white supremacists were behind pretty much all domestic terrorism…","location":"South Africa","time_created":"Mon Aug 05 12:34:00 +0000 2019","tweeted_by":"@deadbeatpako"}
{"_id":{"$oid":"5d48227a1918e223564467c7"},"tweet_id":{"$numberLong":"1158355472518455296"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Nigeria","time_created":"Mon Aug 05 12:34:00 +0000 2019","tweeted_by":"@gchild8701"}
{"_id":{"$oid":"5d48227c1918e223564467c8"},"tweet_id":{"$numberLong":"1158355734498873344"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:35:02 +0000 2019","tweeted_by":"@horla_enny"}
{"_id":{"$oid":"5d4822801918e223564467c9"},"tweet_id":{"$numberLong":"1158355750521049089"},"content":"@VieVy This one is more than insecurity. I pity the husband actually.","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:35:06 +0000 2019","tweeted_by":"@Tosenloo"}
{"_id":{"$oid":"5d48228c1918e223564467ca"},"tweet_id":{"$numberLong":"1158355800080965632"},"content":"@the_davidatta Sir, how does the fact that Sowore decided to protest against perceived corruption and incompetence… https://t.co/cO3zQ4sBkZ","location":"Mars, Nigeria ","time_created":"Mon Aug 05 12:35:18 +0000 2019","tweeted_by":"@Theo_radical"}
{"_id":{"$oid":"5d4822901918e223564467cb"},"tweet_id":{"$numberLong":"1158355816887521281"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:35:22 +0000 2019","tweeted_by":"@Mankind_officia"}
{"_id":{"$oid":"5d4822901918e223564467cc"},"tweet_id":{"$numberLong":"1158355817982255105"},"content":"The country is focused on politics and fight against corruption. Even our churches are deep into politics. No one i… https://t.co/t8nUQUo06J","location":"Mombasa, Kenya","time_created":"Mon Aug 05 12:35:22 +0000 2019","tweeted_by":"@naiblogger"}
{"_id":{"$oid":"5d4822911918e223564467cd"},"tweet_id":{"$numberLong":"1158355824055652353"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Lagos Nigeria","time_created":"Mon Aug 05 12:35:24 +0000 2019","tweeted_by":"@stantheguy"}
{"_id":{"$oid":"5d4822961918e223564467ce"},"tweet_id":{"$numberLong":"1158355841298440194"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria ","time_created":"Mon Aug 05 12:35:28 +0000 2019","tweeted_by":"@Hildash8"}
{"_id":{"$oid":"5d4822971918e223564467cf"},"tweet_id":{"$numberLong":"1158355845933125632"},"content":"@rassbvd @Zwelinzima1 @News24 Bro corruption and what what is superficial here, look at the trend from President TM… https://t.co/7SUAFS1VLu","location":"Pearly Beach, South Africa","time_created":"Mon Aug 05 12:35:29 +0000 2019","tweeted_by":"@trevorgumbo"}
{"_id":{"$oid":"5d4822981918e223564467d0"},"tweet_id":{"$numberLong":"1158355853231165440"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:35:31 +0000 2019","tweeted_by":"@seyi_aduroja"}
{"_id":{"$oid":"5d4822a21918e223564467d1"},"tweet_id":{"$numberLong":"1158355892854808582"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:35:40 +0000 2019","tweeted_by":"@gunningrasta"}
{"_id":{"$oid":"5d4822a41918e223564467d2"},"tweet_id":{"$numberLong":"1158355900484280321"},"content":"RT @femiadegbulugbe: The French President is a youth. Much younger than Sowore or Kanu. He did not become President through terrorism or…","location":"Minna, Nigeria","time_created":"Mon Aug 05 12:35:42 +0000 2019","tweeted_by":"@muhammedmusatak"}
{"_id":{"$oid":"5d4822ac1918e223564467d3"},"tweet_id":{"$numberLong":"1158355937838751744"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos Nigeria","time_created":"Mon Aug 05 12:35:51 +0000 2019","tweeted_by":"@The_sapper"}
{"_id":{"$oid":"5d4822b11918e223564467d4"},"tweet_id":{"$numberLong":"1158355955467378691"},"content":"RT @naiblogger: The country is focused on politics and fight against corruption. Even our churches are deep into politics. No one is giving…","location":"Mombasa, Kenya","time_created":"Mon Aug 05 12:35:55 +0000 2019","tweeted_by":"@ba_baraza"}
{"_id":{"$oid":"5d4822b61918e223564467d5"},"tweet_id":{"$numberLong":"1158355979265880064"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:36:01 +0000 2019","tweeted_by":"@PrincessSexyada"}
{"_id":{"$oid":"5d4822bb1918e223564467d6"},"tweet_id":{"$numberLong":"1158355998089863168"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:36:05 +0000 2019","tweeted_by":"@tyankabas"}
{"_id":{"$oid":"5d4822d11918e223564467d7"},"tweet_id":{"$numberLong":"1158356091719360512"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:36:28 +0000 2019","tweeted_by":"@Slimcruz2"}
{"_id":{"$oid":"5d4822e61918e223564467d8"},"tweet_id":{"$numberLong":"1158356178499493888"},"content":"RT @naiblogger: The country is focused on politics and fight against corruption. Even our churches are deep into politics. No one is giving…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:36:48 +0000 2019","tweeted_by":"@ItsMutisya"}
{"_id":{"$oid":"5d4822ea1918e223564467d9"},"tweet_id":{"$numberLong":"1158356194785943552"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:36:52 +0000 2019","tweeted_by":"@lawehilegbu"}
{"_id":{"$oid":"5d4822ed1918e223564467da"},"tweet_id":{"$numberLong":"1158356204156084224"},"content":"RT @johnnysleek: failure by OBJ led government to tell Nigerians the truth about allegations of corruption in the spending of $16 billion o…","location":"Port Harcourt, Nigeria","time_created":"Mon Aug 05 12:36:54 +0000 2019","tweeted_by":"@HWokocha"}
{"_id":{"$oid":"5d4822ee1918e223564467db"},"tweet_id":{"$numberLong":"1158356208274857985"},"content":"RT @naiblogger: The country is focused on politics and fight against corruption. Even our churches are deep into politics. No one is giving…","location":"Mombasa, Kenya","time_created":"Mon Aug 05 12:36:55 +0000 2019","tweeted_by":"@Sam_Lulli"}
{"_id":{"$oid":"5d4822f41918e223564467dc"},"tweet_id":{"$numberLong":"1158356233478426625"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Sokoto, Nigeria","time_created":"Mon Aug 05 12:37:01 +0000 2019","tweeted_by":"@sayfuuuu"}
{"_id":{"$oid":"5d48230d1918e223564467dd"},"tweet_id":{"$numberLong":"1158356340361912322"},"content":"RT @naiblogger: The country is focused on politics and fight against corruption. Even our churches are deep into politics. No one is giving…","location":"Mombasa, Kenya","time_created":"Mon Aug 05 12:37:27 +0000 2019","tweeted_by":"@naiblogger"}
{"_id":{"$oid":"5d4823131918e223564467de"},"tweet_id":{"$numberLong":"1158356365422862336"},"content":"RT @Iamllolade: We are battling insecurity, increased kidnapping, poverty giving us lap dance, most children are out of school, unemploymen…","location":"Ikeja, Nigeria","time_created":"Mon Aug 05 12:37:33 +0000 2019","tweeted_by":"@billionairebae_"}
{"_id":{"$oid":"5d4823231918e223564467df"},"tweet_id":{"$numberLong":"1158356434545008641"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:37:49 +0000 2019","tweeted_by":"@its_Mascot"}
{"_id":{"$oid":"5d48232f1918e223564467e0"},"tweet_id":{"$numberLong":"1158356485094727680"},"content":"RT @ParkerMolloy: Why won’t @realDonaldTrump use the words “white nationalist terrorism?”","location":"Kenyan!!","time_created":"Mon Aug 05 12:38:01 +0000 2019","tweeted_by":"@rae_muk"}
{"_id":{"$oid":"5d4823451918e223564467e1"},"tweet_id":{"$numberLong":"1158356578875166722"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:38:24 +0000 2019","tweeted_by":"@okeke_onyedika"}
{"_id":{"$oid":"5d4823481918e223564467e2"},"tweet_id":{"$numberLong":"1158356590237536256"},"content":"@CdeBathaDlamini @kabelodick You forgot to add the corruption within government","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 12:38:26 +0000 2019","tweeted_by":"@EloquentTash"}
{"_id":{"$oid":"5d4823741918e223564467e3"},"tweet_id":{"$numberLong":"1158356766733819906"},"content":"RT @Tutsy22: I have been wondering why too many people on Twitter are calling #Revolutionnow an act of terrorism. 😏 https://t.co/k76r84np4a","location":"Abuja Nigeria","time_created":"Mon Aug 05 12:39:09 +0000 2019","tweeted_by":"@IamJudeCijeh"}
{"_id":{"$oid":"5d4823851918e223564467e4"},"tweet_id":{"$numberLong":"1158356832227909632"},"content":"RT @BetterNG: If only these sophisticated guns were given to soldiers fighting Boko Haram, there would not be a need to bury 1000 of them s…","location":"Portharcourt, Nigeria ","time_created":"Mon Aug 05 12:39:24 +0000 2019","tweeted_by":"@ArikoHarry"}
{"_id":{"$oid":"5d48238d1918e223564467e5"},"tweet_id":{"$numberLong":"1158356868261130240"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Maidugri, Nigeria ","time_created":"Mon Aug 05 12:39:33 +0000 2019","tweeted_by":"@aminbubakar"}
{"_id":{"$oid":"5d4823941918e223564467e6"},"tweet_id":{"$numberLong":"1158356907880517634"},"content":"See forming! This man \u0026amp; colleagues couldn't face Boko Haram. Hence, the military was deployed. Even the so-called m… https://t.co/8i8zVQX9b6","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:39:42 +0000 2019","tweeted_by":"@BetaKoncept"}
{"_id":{"$oid":"5d4823a01918e223564467e7"},"tweet_id":{"$numberLong":"1158356949890740225"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:39:52 +0000 2019","tweeted_by":"@andrea_kach"}
{"_id":{"$oid":"5d4823a51918e223564467e8"},"tweet_id":{"$numberLong":"1158356976834945024"},"content":"@fimiletoks Truth be told, insecurity in ds Country, especially in d North is increasingly unhealthy. And d greates… https://t.co/S0lzkl9dVX","location":"Victoria Island, Nigeria","time_created":"Mon Aug 05 12:39:59 +0000 2019","tweeted_by":"@KolaBadejo3"}
{"_id":{"$oid":"5d4823d51918e223564467e9"},"tweet_id":{"$numberLong":"1158357167092748293"},"content":"You can't try to correct terrorism by engaging in riots which is a cousin to terrorism. The best way to revolutioni… https://t.co/RfEeRe7Lhz","location":"Lagos,Nigeria|Sheffield,U.K.","time_created":"Mon Aug 05 12:40:44 +0000 2019","tweeted_by":"@oluwamayowa_a"}
{"_id":{"$oid":"5d4823d51918e223564467ea"},"tweet_id":{"$numberLong":"1158357173023498240"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Nigeria","time_created":"Mon Aug 05 12:40:45 +0000 2019","tweeted_by":"@GODSNEAR1"}
{"_id":{"$oid":"5d4823d51918e223564467eb"},"tweet_id":{"$numberLong":"1158357173589696512"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:40:46 +0000 2019","tweeted_by":"@ussyalumma"}
{"_id":{"$oid":"5d4823d71918e223564467ec"},"tweet_id":{"$numberLong":"1158357187451920385"},"content":"@ItsBravin With the level of corruption in this country????? That's a dream.","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:40:49 +0000 2019","tweeted_by":"@felix4nelix1"}
{"_id":{"$oid":"5d4823dd1918e223564467ed"},"tweet_id":{"$numberLong":"1158357209258123265"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Nigeria","time_created":"Mon Aug 05 12:40:54 +0000 2019","tweeted_by":"@nnambudike"}
{"_id":{"$oid":"5d4823f21918e223564467ee"},"tweet_id":{"$numberLong":"1158357294612209666"},"content":"RT @naiblogger: The country is focused on politics and fight against corruption. Even our churches are deep into politics. No one is giving…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:41:14 +0000 2019","tweeted_by":"@ItsBravin"}
{"_id":{"$oid":"5d4824021918e223564467ef"},"tweet_id":{"$numberLong":"1158357366825463808"},"content":"No big leap to agree with jittery Kermit here. When asked if Trump should call it white supremacist terror \u0026amp; condem… https://t.co/q0gtrm2N6f","location":"Cape Town, South Africa","time_created":"Mon Aug 05 12:41:32 +0000 2019","tweeted_by":"@jpSebastian"}
{"_id":{"$oid":"5d4824041918e223564467f0"},"tweet_id":{"$numberLong":"1158357375444799488"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:41:34 +0000 2019","tweeted_by":"@yxngjosh_"}
{"_id":{"$oid":"5d48241a1918e223564467f1"},"tweet_id":{"$numberLong":"1158357466066776065"},"content":"RT @BambeniZikode: The real face of terrorism, worldwide. https://t.co/O01jzc7mtT","location":"Pretoria, South Africa","time_created":"Mon Aug 05 12:41:55 +0000 2019","tweeted_by":"@Masemola_S_G"}
{"_id":{"$oid":"5d48241e1918e223564467f2"},"tweet_id":{"$numberLong":"1158357488665686016"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:42:01 +0000 2019","tweeted_by":"@ItzOrols"}
{"_id":{"$oid":"5d4824211918e223564467f3"},"tweet_id":{"$numberLong":"1158357498853822464"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:42:03 +0000 2019","tweeted_by":"@Mrugoboss"}
{"_id":{"$oid":"5d48243e1918e223564467f4"},"tweet_id":{"$numberLong":"1158357623206535169"},"content":"RT @t_mangenam: We know corruption is a horrible monster, but now we also know it can kill the soul. Our souls are in peril now that the SA…","location":"Thohoyandou, South Africa","time_created":"Mon Aug 05 12:42:33 +0000 2019","tweeted_by":"@da_shai_guy"}
{"_id":{"$oid":"5d4824471918e223564467f5"},"tweet_id":{"$numberLong":"1158357659801804800"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:42:41 +0000 2019","tweeted_by":"@TalkwitUkpo"}
{"_id":{"$oid":"5d48244b1918e223564467f6"},"tweet_id":{"$numberLong":"1158357676713304064"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:42:46 +0000 2019","tweeted_by":"@TalkwitUkpo"}
{"_id":{"$oid":"5d4824521918e223564467f7"},"tweet_id":{"$numberLong":"1158357700943712256"},"content":"RT @Ipadeolageorge: @PoliceNG Is this violence? Or maybe terrorism?\n#RevolutionIsNow https://t.co/GVkBDGosMH","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:42:51 +0000 2019","tweeted_by":"@AgbaChrisNna"}
{"_id":{"$oid":"5d4824611918e223564467f8"},"tweet_id":{"$numberLong":"1158357768870535169"},"content":"Planning a revolution protest with state of insecurity now is questionable. Herdsmen kidnapping on the high side, s… https://t.co/cPqODnlGNC","location":"Nigeria ","time_created":"Mon Aug 05 12:43:08 +0000 2019","tweeted_by":"@ugbede1990"}
{"_id":{"$oid":"5d4824691918e223564467f9"},"tweet_id":{"$numberLong":"1158357804299825152"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:43:16 +0000 2019","tweeted_by":"@AdetunjiSalau"}
{"_id":{"$oid":"5d48246d1918e223564467fa"},"tweet_id":{"$numberLong":"1158357818027606016"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:43:19 +0000 2019","tweeted_by":"@crazinigerian"}
{"_id":{"$oid":"5d4824731918e223564467fb"},"tweet_id":{"$numberLong":"1158357843709452288"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Dar es Salaam, Tanzania","time_created":"Mon Aug 05 12:43:25 +0000 2019","tweeted_by":"@Nsimba__eric"}
{"_id":{"$oid":"5d4824851918e223564467fc"},"tweet_id":{"$numberLong":"1158357917726388224"},"content":"RT @naiblogger: The country is focused on politics and fight against corruption. Even our churches are deep into politics. No one is giving…","location":"Mombasa, Kenya","time_created":"Mon Aug 05 12:43:43 +0000 2019","tweeted_by":"@naiblogger"}
{"_id":{"$oid":"5d4824951918e223564467fd"},"tweet_id":{"$numberLong":"1158357983396552709"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Warri, Nigeria","time_created":"Mon Aug 05 12:43:59 +0000 2019","tweeted_by":"@choc_nova"}
{"_id":{"$oid":"5d4824971918e223564467fe"},"tweet_id":{"$numberLong":"1158357992145862661"},"content":"RT @naiblogger: The country is focused on politics and fight against corruption. Even our churches are deep into politics. No one is giving…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:44:01 +0000 2019","tweeted_by":"@KLUDORVICUS"}
{"_id":{"$oid":"5d4824a81918e223564467ff"},"tweet_id":{"$numberLong":"1158358066154409984"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:44:18 +0000 2019","tweeted_by":"@ukatoni_"}
{"_id":{"$oid":"5d4824b21918e22356446800"},"tweet_id":{"$numberLong":"1158358106935611392"},"content":"If that the government is proactive for the plight of Nigerians like they are now against #terrorism and #protest w… https://t.co/inlJncDSLY","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:44:28 +0000 2019","tweeted_by":"@piddy_dave"}
{"_id":{"$oid":"5d4824ba1918e22356446801"},"tweet_id":{"$numberLong":"1158358142079705090"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:44:36 +0000 2019","tweeted_by":"@LesboNaija"}
{"_id":{"$oid":"5d4824d01918e22356446802"},"tweet_id":{"$numberLong":"1158358234723495936"},"content":"RT @realMCBizzo: @realDonaldTrump Is President Trump going to finally mention the words white nationalist terrorism? If he doesn’t he shoul…","location":"Mmathethe Kanye Ghana","time_created":"Mon Aug 05 12:44:59 +0000 2019","tweeted_by":"@BenMcCupid"}
{"_id":{"$oid":"5d4824d81918e22356446803"},"tweet_id":{"$numberLong":"1158358265933287424"},"content":"RT @MubiinH: When Edward Zuma was telling Pravin Gordhan the truth I thought he was just hiding his corruption kgante birds of same feather…","location":"Pretoria, South Africa","time_created":"Mon Aug 05 12:45:06 +0000 2019","tweeted_by":"@Thokoza20330764"}
{"_id":{"$oid":"5d4824d91918e22356446804"},"tweet_id":{"$numberLong":"1158358270198898689"},"content":"RT @DeeOneAyekooto: The solution to insecurity in Nigeria:\nRelease Dasuki,stop corruption probe,free Diezani, release Intels, hand over pow…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:45:07 +0000 2019","tweeted_by":"@OlaOdunuga"}
{"_id":{"$oid":"5d4824e41918e22356446805"},"tweet_id":{"$numberLong":"1158358318026514432"},"content":"RT @DeeOneAyekooto: The solution to insecurity in Nigeria:\nRelease Dasuki,stop corruption probe,free Diezani, release Intels, hand over pow…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:45:18 +0000 2019","tweeted_by":"@jadasani44"}
{"_id":{"$oid":"5d4825051918e22356446806"},"tweet_id":{"$numberLong":"1158358455230586880"},"content":"RT @GPGGNigeria: Despite ravaging insecurity and economic challenges; Syria, Libya, Iraq and Pakistan all produce more electricity than Nig…","location":"Nigeria","time_created":"Mon Aug 05 12:45:51 +0000 2019","tweeted_by":"@BOGbadamosi"}
{"_id":{"$oid":"5d4825051918e22356446807"},"tweet_id":{"$numberLong":"1158358458351136769"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:45:52 +0000 2019","tweeted_by":"@chizobasamuelO1"}
{"_id":{"$oid":"5d4825081918e22356446808"},"tweet_id":{"$numberLong":"1158358468052553729"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:45:54 +0000 2019","tweeted_by":"@Ramzy899"}
{"_id":{"$oid":"5d4825551918e22356446809"},"tweet_id":{"$numberLong":"1158358794457550849"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:47:12 +0000 2019","tweeted_by":"@Medinah_a"}
{"_id":{"$oid":"5d48255e1918e2235644680a"},"tweet_id":{"$numberLong":"1158358828490133505"},"content":"RT @gidmj2010: @K_ONyamokami @surambaya @KEBS_ke You've a point.\nIts irritating that Kenyans have been auctioned at the altar of corruption.","location":"Narok, Kenya","time_created":"Mon Aug 05 12:47:20 +0000 2019","tweeted_by":"@K_ONyamokami"}
{"_id":{"$oid":"5d48256a1918e2235644680b"},"tweet_id":{"$numberLong":"1158358880247832576"},"content":"RT @DavidWohl: Remember when Obama gave the world's number one sponsor of Islamic terrorism - Iran - $150 billion, how THE MEDIA went off o…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:47:32 +0000 2019","tweeted_by":"@OlorunjeJ"}
{"_id":{"$oid":"5d48256b1918e2235644680c"},"tweet_id":{"$numberLong":"1158358885624885249"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"No address, Nigeria","time_created":"Mon Aug 05 12:47:34 +0000 2019","tweeted_by":"@sochimx"}
{"_id":{"$oid":"5d48257d1918e2235644680d"},"tweet_id":{"$numberLong":"1158358957255270400"},"content":"RT @henry_wiziyke: @romeocza @rozirozay The insecurity is not only in Uniuyo bro Abak Road by mechanic village is not safe but God dey save…","location":"Akwa Ibom state, Nigeria","time_created":"Mon Aug 05 12:47:51 +0000 2019","tweeted_by":"@romeocza"}
{"_id":{"$oid":"5d4825821918e2235644680e"},"tweet_id":{"$numberLong":"1158358978595893248"},"content":"RT @BLF_SouthAfrica: THIS IS A DISGRACE!!!\n\nAgain, BLF is clear! Ramaphosa must go! He said he is fighting corruption, whilst being the mos…","location":"Cape Town/South Africa","time_created":"Mon Aug 05 12:47:56 +0000 2019","tweeted_by":"@mytouchrecords"}
{"_id":{"$oid":"5d4825a31918e2235644680f"},"tweet_id":{"$numberLong":"1158359118215864320"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Nigeria","time_created":"Mon Aug 05 12:48:29 +0000 2019","tweeted_by":"@K_Basharr"}
{"_id":{"$oid":"5d4825b71918e22356446810"},"tweet_id":{"$numberLong":"1158359200172560384"},"content":"@seunonigbinde @YeleSowore Ending the Endemic systemic corruption enthroned by repetitive processes of selection or… https://t.co/acFriCZcFs","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:48:49 +0000 2019","tweeted_by":"@justsirLawrence"}
{"_id":{"$oid":"5d4825bd1918e22356446811"},"tweet_id":{"$numberLong":"1158359218795294720"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos Nigeria","time_created":"Mon Aug 05 12:48:53 +0000 2019","tweeted_by":"@FouRTune07"}
{"_id":{"$oid":"5d4825c41918e22356446812"},"tweet_id":{"$numberLong":"1158359252555182080"},"content":"RT @woye1: Sad news: Insecurity, insecurity. Following up on previous govt, Zamfara Govt signed $1b MOU in the areas of AGRICULTURE, mining…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:49:01 +0000 2019","tweeted_by":"@saheedlawal0234"}
{"_id":{"$oid":"5d4825e01918e22356446813"},"tweet_id":{"$numberLong":"1158359375041503238"},"content":"RT @BambeniZikode: The real face of terrorism, worldwide. https://t.co/O01jzc7mtT","location":"Durban, South Africa","time_created":"Mon Aug 05 12:49:30 +0000 2019","tweeted_by":"@6511nozi"}
{"_id":{"$oid":"5d4825e41918e22356446814"},"tweet_id":{"$numberLong":"1158359390434603010"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:49:34 +0000 2019","tweeted_by":"@Prettyfaze"}
{"_id":{"$oid":"5d4825f01918e22356446815"},"tweet_id":{"$numberLong":"1158359432255987713"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:49:44 +0000 2019","tweeted_by":"@Mr_Randeey"}
{"_id":{"$oid":"5d4825f21918e22356446816"},"tweet_id":{"$numberLong":"1158359439428263936"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:49:46 +0000 2019","tweeted_by":"@IbexToba"}
{"_id":{"$oid":"5d4826091918e22356446817"},"tweet_id":{"$numberLong":"1158359538111778817"},"content":"“Without strong watchdog institutions, impunity becomes the very foundation upon which systems of corruption are bu… https://t.co/GnudccmoQb","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:50:09 +0000 2019","tweeted_by":"@org_governance"}
{"_id":{"$oid":"5d4826091918e22356446818"},"tweet_id":{"$numberLong":"1158359540523577344"},"content":"RT @Chxta: What has Sowore complained about? \n\nRise in violence, rise in kidnappings, pervasive corruption. \n\nHas the government addressed…","location":"Lagos, Nigeria.","time_created":"Mon Aug 05 12:50:10 +0000 2019","tweeted_by":"@koluwasegun_"}
{"_id":{"$oid":"5d48260d1918e22356446819"},"tweet_id":{"$numberLong":"1158359563550298115"},"content":"@Ani75649761 @staceyoraeki @_ItsAnoosha Why is she this pained tho?? Her insecurity is showing. Seeing her self des… https://t.co/KZtG0B2Zpb","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:50:15 +0000 2019","tweeted_by":"@FrancoisMcallen"}
{"_id":{"$oid":"5d4826171918e2235644681a"},"tweet_id":{"$numberLong":"1158359604817997827"},"content":"@Moviemaniacng @IretiolaDoyle So Bandits should be allowed?\n\nSo Boko Haram should be allowed?","location":"All over Nigeria","time_created":"Mon Aug 05 12:50:25 +0000 2019","tweeted_by":"@ajosebbc"}
{"_id":{"$oid":"5d48261b1918e2235644681b"},"tweet_id":{"$numberLong":"1158359619682615302"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:50:29 +0000 2019","tweeted_by":"@sojiojeniyi"}
{"_id":{"$oid":"5d4826201918e2235644681c"},"tweet_id":{"$numberLong":"1158359643569238016"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 12:50:34 +0000 2019","tweeted_by":"@sojiojeniyi"}
{"_id":{"$oid":"5d4826331918e2235644681d"},"tweet_id":{"$numberLong":"1158359720777977859"},"content":"RT @tribelaw: ”Far more Americans have died at the hands of domestic terrorists than at the hands of Islamic extremists since 2001, accordi…","location":"Port Elizabeth, South Africa","time_created":"Mon Aug 05 12:50:53 +0000 2019","tweeted_by":"@Basiliskfire"}
{"_id":{"$oid":"5d4826381918e2235644681e"},"tweet_id":{"$numberLong":"1158359739841077249"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Cape town,South Africa","time_created":"Mon Aug 05 12:50:57 +0000 2019","tweeted_by":"@D_indlalJr"}
{"_id":{"$oid":"5d48263d1918e2235644681f"},"tweet_id":{"$numberLong":"1158359761907277825"},"content":"This is the kind of thinking that caused this country to have so much corruption its a known fact that White owed c… https://t.co/9rb95w1a5B","location":"Soweto, South Africa","time_created":"Mon Aug 05 12:51:03 +0000 2019","tweeted_by":"@KhehlaMkhwanaz1"}
{"_id":{"$oid":"5d48263d1918e22356446820"},"tweet_id":{"$numberLong":"1158359762217635840"},"content":"@RanaAyyub Hindu terrorism under BJP is taking root India. Indians throughout the world should be fighting this evil😡","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 12:51:03 +0000 2019","tweeted_by":"@harounpat"}
{"_id":{"$oid":"5d4826511918e22356446821"},"tweet_id":{"$numberLong":"1158359846099533825"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:51:23 +0000 2019","tweeted_by":"@Kudu_jnr"}
{"_id":{"$oid":"5d4826531918e22356446822"},"tweet_id":{"$numberLong":"1158359855234715648"},"content":"RT @alfonslopeztena: We must call the El Paso shooting what it is: Trump-inspired terrorism — White supremacists often move from being a pa…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:51:25 +0000 2019","tweeted_by":"@SeunEsq"}
{"_id":{"$oid":"5d4826551918e22356446823"},"tweet_id":{"$numberLong":"1158359863073935360"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Nigeria","time_created":"Mon Aug 05 12:51:27 +0000 2019","tweeted_by":"@enithecreator"}
{"_id":{"$oid":"5d4826581918e22356446824"},"tweet_id":{"$numberLong":"1158359876965416960"},"content":"RT @Tutsy22: A week in Brief:\n\n* 14 were kidnapped, including 5 RCCG pastors by Fulani herdsmen. \n\n* 60 persons killed by in Boko Haram.\n\n*…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:51:30 +0000 2019","tweeted_by":"@JhoneySOJA"}
{"_id":{"$oid":"5d4826601918e22356446825"},"tweet_id":{"$numberLong":"1158359908666023938"},"content":"RT @Nwafresh: Pride of the nation, the people's choice, man of his words, a true definition of integrity, job creator, corruption fighter,…","location":"Nigeria","time_created":"Mon Aug 05 12:51:38 +0000 2019","tweeted_by":"@Diixixme"}
{"_id":{"$oid":"5d4826641918e22356446826"},"tweet_id":{"$numberLong":"1158359928442146816"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:51:42 +0000 2019","tweeted_by":"@petres_007"}
{"_id":{"$oid":"5d4826651918e22356446827"},"tweet_id":{"$numberLong":"1158359929390010369"},"content":"@Railajunior Kenyan government has formed a lot of commission to handle specific area like; corruption, salaries an… https://t.co/PkwVj7lDAq","location":"Nakuru, Kenya","time_created":"Mon Aug 05 12:51:43 +0000 2019","tweeted_by":"@HilconQ"}
{"_id":{"$oid":"5d48266b1918e22356446828"},"tweet_id":{"$numberLong":"1158359954463633408"},"content":"RT @realTuckFrumper: #TuckFrump Andrew Gillum demands Trump apology for white nationalist terror attacks in fiery CNN blast https://t.co/GX…","location":"Port Elizabeth, South Africa","time_created":"Mon Aug 05 12:51:49 +0000 2019","tweeted_by":"@Basiliskfire"}
{"_id":{"$oid":"5d48266b1918e22356446829"},"tweet_id":{"$numberLong":"1158359956556537856"},"content":"RT @dondekojo: Just read the replies. The insecurity in these ones is Amazing. You can wear Brazilian hair and Thai wigs but no one can do…","location":"Accra, Ghana","time_created":"Mon Aug 05 12:51:49 +0000 2019","tweeted_by":"@ManicPandaa"}
{"_id":{"$oid":"5d4826701918e2235644682a"},"tweet_id":{"$numberLong":"1158359976756355073"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:51:54 +0000 2019","tweeted_by":"@lanre_jbello"}
{"_id":{"$oid":"5d4826851918e2235644682b"},"tweet_id":{"$numberLong":"1158360065042239488"},"content":"RT @legitngnews: The Nigerian activist, @HamzyCODE, is an anti-corruption activist and the founder of @4lowthemoney, a Pan-African grassroo…","location":"Yola Nigeria","time_created":"Mon Aug 05 12:52:15 +0000 2019","tweeted_by":"@AliyuTukur"}
{"_id":{"$oid":"5d48268f1918e2235644682c"},"tweet_id":{"$numberLong":"1158360107228499968"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:52:25 +0000 2019","tweeted_by":"@odbthegreat"}
{"_id":{"$oid":"5d4826981918e2235644682d"},"tweet_id":{"$numberLong":"1158360146264940545"},"content":"RT @MubiinH: When Edward Zuma was telling Pravin Gordhan the truth I thought he was just hiding his corruption kgante birds of same feather…","location":"Cape Town/South Africa","time_created":"Mon Aug 05 12:52:34 +0000 2019","tweeted_by":"@mytouchrecords"}
{"_id":{"$oid":"5d4826991918e2235644682e"},"tweet_id":{"$numberLong":"1158360148622155776"},"content":"RT @geertwilderspvv: India is a full democracy.\nPakistan is a 100% terror state. \n\nSo the choice is easy.\n\nWelcome home #Kashmir. \n\n#IndiaF…","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 12:52:35 +0000 2019","tweeted_by":"@div_dixit"}
{"_id":{"$oid":"5d4826b51918e2235644682f"},"tweet_id":{"$numberLong":"1158360268684050434"},"content":"RT @KhandaniM: Mmusi is a Pastor, he thought the fight against corruption is not only against Zuma or Gupta corruption, kanti the fight aga…","location":"Mamelodi, South Africa","time_created":"Mon Aug 05 12:53:04 +0000 2019","tweeted_by":"@ttbogoshi"}
{"_id":{"$oid":"5d4826bd1918e22356446830"},"tweet_id":{"$numberLong":"1158360302796320768"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Cape Town, South Africa","time_created":"Mon Aug 05 12:53:12 +0000 2019","tweeted_by":"@magadzev1"}
{"_id":{"$oid":"5d4826c11918e22356446831"},"tweet_id":{"$numberLong":"1158360320613715968"},"content":"RT @ChiomaChuka: Sowore is a bigger problem than the herdsmen crisis? Than the kidnappers who have made camp on our roads? Than Boko Haram,…","location":"Nigeria","time_created":"Mon Aug 05 12:53:16 +0000 2019","tweeted_by":"@ChinweOfoha2"}
{"_id":{"$oid":"5d4826cd1918e22356446832"},"tweet_id":{"$numberLong":"1158360369695526913"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Imo, Nigeria","time_created":"Mon Aug 05 12:53:28 +0000 2019","tweeted_by":"@DukorJohnbosco"}
{"_id":{"$oid":"5d4826d01918e22356446833"},"tweet_id":{"$numberLong":"1158360380160315394"},"content":"RT @Nwafresh: Pride of the nation, the people's choice, man of his words, a true definition of integrity, job creator, corruption fighter,…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:53:30 +0000 2019","tweeted_by":"@KelvinLion9"}
{"_id":{"$oid":"5d4826e31918e22356446834"},"tweet_id":{"$numberLong":"1158360463551471616"},"content":"RT @ramzpaul: Jewish Nationalists (Zionists) murdered 92 people in the bombing of the King David Hotel in 1946. Such terrorism helped to fo…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:53:50 +0000 2019","tweeted_by":"@Tabithak95"}
{"_id":{"$oid":"5d4826f01918e22356446835"},"tweet_id":{"$numberLong":"1158360514793226246"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Rustenburg, South Africa","time_created":"Mon Aug 05 12:54:02 +0000 2019","tweeted_by":"@oageng_george"}
{"_id":{"$oid":"5d4826f41918e22356446836"},"tweet_id":{"$numberLong":"1158360533369786370"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Delta, Nigeria","time_created":"Mon Aug 05 12:54:07 +0000 2019","tweeted_by":"@cwhyte08"}
{"_id":{"$oid":"5d4826f81918e22356446837"},"tweet_id":{"$numberLong":"1158360545734615040"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Akwa Ibom, Nigeria","time_created":"Mon Aug 05 12:54:10 +0000 2019","tweeted_by":"@_mlight"}
{"_id":{"$oid":"5d4827021918e22356446838"},"tweet_id":{"$numberLong":"1158360587509948416"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Akwa Ibom, Nigeria","time_created":"Mon Aug 05 12:54:20 +0000 2019","tweeted_by":"@_mlight"}
{"_id":{"$oid":"5d4827041918e22356446839"},"tweet_id":{"$numberLong":"1158360595495653378"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos Nigeria","time_created":"Mon Aug 05 12:54:21 +0000 2019","tweeted_by":"@i_amFIZZIE"}
{"_id":{"$oid":"5d4827071918e2235644683a"},"tweet_id":{"$numberLong":"1158360611199340544"},"content":"RT @KhandaniM: Mmusi is a Pastor, he thought the fight against corruption is not only against Zuma or Gupta corruption, kanti the fight aga…","location":"South Africa","time_created":"Mon Aug 05 12:54:25 +0000 2019","tweeted_by":"@ThembelihleR"}
{"_id":{"$oid":"5d4827181918e2235644683b"},"tweet_id":{"$numberLong":"1158360681047105536"},"content":"RT @yourspenfully: as we pambana na hali yet, ya cancer, poverty, insecurity etc there's a CS's slayqueen who gets 6M from undisclosed mini…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:54:42 +0000 2019","tweeted_by":"@KLUDORVICUS"}
{"_id":{"$oid":"5d4827231918e2235644683c"},"tweet_id":{"$numberLong":"1158360727717064705"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Enugu state Nigeria","time_created":"Mon Aug 05 12:54:53 +0000 2019","tweeted_by":"@ifeanyi_nwobodo"}
{"_id":{"$oid":"5d4827251918e2235644683d"},"tweet_id":{"$numberLong":"1158360737481482241"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ghana","time_created":"Mon Aug 05 12:54:55 +0000 2019","tweeted_by":"@_awariyah"}
{"_id":{"$oid":"5d4827581918e2235644683e"},"tweet_id":{"$numberLong":"1158360949843275776"},"content":"RT @ewarren: I just talked to @Kasie Hunt about how white nationalism is domestic terrorism. And as Donald Trump has made one ugly statemen…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:55:46 +0000 2019","tweeted_by":"@PurpleGreyMag"}
{"_id":{"$oid":"5d48275b1918e2235644683f"},"tweet_id":{"$numberLong":"1158360964259024901"},"content":"RT @realTuckFrumper: #TuckFrump ‘Outraged’ Mexico plans legal action against the US after 6 citizens killed in El Paso ‘act of terrorism’ h…","location":"Port Elizabeth, South Africa","time_created":"Mon Aug 05 12:55:49 +0000 2019","tweeted_by":"@Basiliskfire"}
{"_id":{"$oid":"5d4827641918e22356446840"},"tweet_id":{"$numberLong":"1158360994713878528"},"content":"Our heavily armed security guards are deployed against protesting civilian while we leave Boko Haram to God and ban… https://t.co/8YYKqID4rv","location":"Nigeria","time_created":"Mon Aug 05 12:55:57 +0000 2019","tweeted_by":"@Naijafamous"}
{"_id":{"$oid":"5d4827681918e22356446841"},"tweet_id":{"$numberLong":"1158361019594477568"},"content":"@realDonaldTrump Trump inspired terrorism, that's what it is.","location":"Egypt","time_created":"Mon Aug 05 12:56:03 +0000 2019","tweeted_by":"@hankor20"}
{"_id":{"$oid":"5d4827731918e22356446842"},"tweet_id":{"$numberLong":"1158361065622777858"},"content":"@drbanj The sad thing is when you stumble upon videos of soldiers combating Boko Haram, you will find out that they… https://t.co/GxUM7igrDr","location":"Ogun State, Nigeria","time_created":"Mon Aug 05 12:56:14 +0000 2019","tweeted_by":"@hemharnuel"}
{"_id":{"$oid":"5d48277a1918e22356446843"},"tweet_id":{"$numberLong":"1158361095771512832"},"content":"RT @jharmo: Is this the same Nigeria that cannot end terrorism, kidnapping, bandits and other security issues? They have just arrested 15…","location":"Benin-City, Nigeria","time_created":"Mon Aug 05 12:56:21 +0000 2019","tweeted_by":"@marrthings"}
{"_id":{"$oid":"5d4827821918e22356446844"},"tweet_id":{"$numberLong":"1158361129166475266"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 12:56:29 +0000 2019","tweeted_by":"@TakasworldGroup"}
{"_id":{"$oid":"5d48279c1918e22356446845"},"tweet_id":{"$numberLong":"1158361236289048577"},"content":"RT @dailynation: GUYO: Judiciary must slay the dragon of corruption to save the nation https://t.co/f38irXWU0d","location":"Nairobi_Kenya","time_created":"Mon Aug 05 12:56:54 +0000 2019","tweeted_by":"@OwenAbong"}
{"_id":{"$oid":"5d4827b31918e22356446846"},"tweet_id":{"$numberLong":"1158361334393819137"},"content":"@ThulaniManqele1 @Japhta17270837 @zolekam @KhandaniM I always stood with him but I was angry at his corruption yhooo kant lies","location":"South Africa","time_created":"Mon Aug 05 12:57:18 +0000 2019","tweeted_by":"@zinhlekheswa"}
{"_id":{"$oid":"5d4827be1918e22356446847"},"tweet_id":{"$numberLong":"1158361379151208450"},"content":"RT @ab_akam: You think they are stupid? Buhari and the APC only need to accuse them of corruption, send the EFCC to announce that Billions…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:57:28 +0000 2019","tweeted_by":"@Rx_Deyholar"}
{"_id":{"$oid":"5d4827ce1918e22356446848"},"tweet_id":{"$numberLong":"1158361444183957504"},"content":"@OlanrewajuFadai @RealSolaKuti Your president declared WAR on corruption. Why didn't you arrest him for declaring W… https://t.co/NajU94cXUP","location":"Lagos/Nigeria","time_created":"Mon Aug 05 12:57:44 +0000 2019","tweeted_by":"@aikmamah"}
{"_id":{"$oid":"5d4827d21918e22356446849"},"tweet_id":{"$numberLong":"1158361459107213313"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:57:47 +0000 2019","tweeted_by":"@juuba_stores"}
{"_id":{"$oid":"5d4827d51918e2235644684a"},"tweet_id":{"$numberLong":"1158361474433191936"},"content":"RT @ActionAid_Kenya: Isiolo County faces recurrent drought which leads to food insecurity. We educate them how to grow drought resistant cr…","location":"Nairobi, Kenya","time_created":"Mon Aug 05 12:57:51 +0000 2019","tweeted_by":"@RD_Omboto"}
{"_id":{"$oid":"5d4827de1918e2235644684b"},"tweet_id":{"$numberLong":"1158361511708057601"},"content":"RT @johnteey: Is Buhari a terrorist? A man who released Boko Haram? A man who ignored the fact that there are killer Herdsmen, a man who is…","location":"Nigeria","time_created":"Mon Aug 05 12:58:00 +0000 2019","tweeted_by":"@iam_dino"}
{"_id":{"$oid":"5d4827eb1918e2235644684c"},"tweet_id":{"$numberLong":"1158361566024261633"},"content":"RT @johnnysleek: failure by OBJ led government to tell Nigerians the truth about allegations of corruption in the spending of $16 billion o…","location":"Port-harcourt, Nigeria","time_created":"Mon Aug 05 12:58:13 +0000 2019","tweeted_by":"@korllyybobo"}
{"_id":{"$oid":"5d4828181918e2235644684d"},"tweet_id":{"$numberLong":"1158361758312148997"},"content":"RT @WalshFreedom: When I was in Congress 8 yrs ago, our biggest domestic terror threat was Muslim American men radicalized by Islamism.\n\nTo…","location":"Angola, Indiana","time_created":"Mon Aug 05 12:58:59 +0000 2019","tweeted_by":"@LaurenVogel10"}
{"_id":{"$oid":"5d4828271918e2235644684e"},"tweet_id":{"$numberLong":"1158361819418910720"},"content":"RT @movarsi: We must call the El Paso shooting what it is: Trump-inspired terrorism #RacistPresident #WhiteSupremacistInChief https://t.co…","location":"Port Elizabeth, South Africa","time_created":"Mon Aug 05 12:59:13 +0000 2019","tweeted_by":"@Basiliskfire"}
{"_id":{"$oid":"5d4828431918e2235644684f"},"tweet_id":{"$numberLong":"1158361935873826817"},"content":"It all starts and ends with ending corruption. Neither of these can be obtained if our living fear is that, if we a… https://t.co/1AOyWQlpBE","location":"All Over Kenya","time_created":"Mon Aug 05 12:59:41 +0000 2019","tweeted_by":"@RedVestsProtest"}
{"_id":{"$oid":"5d4828441918e22356446850"},"tweet_id":{"$numberLong":"1158361939678060544"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 12:59:42 +0000 2019","tweeted_by":"@OmonoOkonkwo"}
{"_id":{"$oid":"5d4828481918e22356446851"},"tweet_id":{"$numberLong":"1158361959076696064"},"content":"RT @iamsammolee: Nigeria is in chaos\nSars officers are killing \nBoko Haram are bombing \nFulani herdsmen are kidnapping and killing \nThe gov…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 12:59:47 +0000 2019","tweeted_by":"@rawlingsimpact"}
{"_id":{"$oid":"5d4828641918e22356446852"},"tweet_id":{"$numberLong":"1158362075149848577"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Adamawa, Nigeria","time_created":"Mon Aug 05 13:00:14 +0000 2019","tweeted_by":"@koolbash4"}
{"_id":{"$oid":"5d4828691918e22356446853"},"tweet_id":{"$numberLong":"1158362095945228293"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Nigeria","time_created":"Mon Aug 05 13:00:19 +0000 2019","tweeted_by":"@winnieprox"}
{"_id":{"$oid":"5d48286a1918e22356446854"},"tweet_id":{"$numberLong":"1158362100521209856"},"content":"@ogaten10 My point is Simple... Don't compare incompetences, after all GEJ was VP when Boko Haram was escalated by… https://t.co/RJeLOiqefm","location":"All over Nigeria","time_created":"Mon Aug 05 13:00:20 +0000 2019","tweeted_by":"@ajosebbc"}
{"_id":{"$oid":"5d4828791918e22356446855"},"tweet_id":{"$numberLong":"1158362165667147777"},"content":"RT @whatonearthSA: Shows you how lawlessness \u0026amp; corruption is seemingly an accepted way of life for Black South Africans 🙄🙄 this is a journa…","location":"South Africa","time_created":"Mon Aug 05 13:00:36 +0000 2019","tweeted_by":"@Charlot56256625"}
{"_id":{"$oid":"5d4828af1918e22356446856"},"tweet_id":{"$numberLong":"1158362387839406081"},"content":"RT @IamHashBury: Shameless Nigerian police that can fight insecurity but arm to the teeth to fight the populace #MondayMotivaton #MondayTho…","location":"Benin-City, Nigeria","time_created":"Mon Aug 05 13:01:29 +0000 2019","tweeted_by":"@marrthings"}
{"_id":{"$oid":"5d4828b11918e22356446857"},"tweet_id":{"$numberLong":"1158362397725401088"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Mon Aug 05 13:01:31 +0000 2019","tweeted_by":"@Tocynnys"}
{"_id":{"$oid":"5d4828b81918e22356446858"},"tweet_id":{"$numberLong":"1158362420127174656"},"content":"Following Lionel Messi's controversial comments about corruption at the 2019 Copa America, Diego Maradona has claim… https://t.co/tzR3PhX4PQ","location":"South Africa","time_created":"Mon Aug 05 13:01:36 +0000 2019","tweeted_by":"@Soccer_Laduma"}
{"_id":{"$oid":"5d4828c71918e22356446859"},"tweet_id":{"$numberLong":"1158362490587222016"},"content":"RT @whatonearthSA: Shows you how lawlessness \u0026amp; corruption is seemingly an accepted way of life for Black South Africans 🙄🙄 this is a journa…","location":"Cape Town, South Africa","time_created":"Mon Aug 05 13:01:53 +0000 2019","tweeted_by":"@ritterm07"}
{"_id":{"$oid":"5d4828d51918e2235644685a"},"tweet_id":{"$numberLong":"1158362548653240325"},"content":"RT @oluwaloninyo: Who is in charge of Boko Haram? https://t.co/oGS2tNnLOw","location":"Nigeria","time_created":"Mon Aug 05 13:02:07 +0000 2019","tweeted_by":"@Kudu_jnr"}
{"_id":{"$oid":"5d4828de1918e2235644685b"},"tweet_id":{"$numberLong":"1158362584480931843"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria ","time_created":"Mon Aug 05 13:02:16 +0000 2019","tweeted_by":"@kohbeetheart"}
{"_id":{"$oid":"5d4828e51918e2235644685c"},"tweet_id":{"$numberLong":"1158362615875297282"},"content":"RT @WalshFreedom: When I was in Congress 8 yrs ago, our biggest domestic terror threat was Muslim American men radicalized by Islamism.\n\nTo…","location":"Sudan","time_created":"Mon Aug 05 13:02:23 +0000 2019","tweeted_by":"@AminuSareena"}
{"_id":{"$oid":"5d4828e91918e2235644685d"},"tweet_id":{"$numberLong":"1158362631138398209"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Mon Aug 05 13:02:27 +0000 2019","tweeted_by":"@sliimTee09"}
{"_id":{"$oid":"5d4828eb1918e2235644685e"},"tweet_id":{"$numberLong":"1158362641523363840"},"content":"I can't afford the luxury of silence in the face of insecurity, high-level of poverty, literacy, injustice and impu… https://t.co/Qkg99Q1WU8","location":"Nigeria | Abu Dhabi | Lucknow","time_created":"Mon Aug 05 13:02:29 +0000 2019","tweeted_by":"@Abeypl1"}
{"_id":{"$oid":"5d4828ff1918e2235644685f"},"tweet_id":{"$numberLong":"1158362725950590977"},"content":"RT @ActionAid_Kenya: Isiolo County faces recurrent drought which leads to food insecurity. We educate them how to grow drought resistant cr…","location":"Isiolo, Kenya","time_created":"Mon Aug 05 13:02:49 +0000 2019","tweeted_by":"@theist_raageh"}
{"_id":{"$oid":"5d48290f1918e22356446860"},"tweet_id":{"$numberLong":"1158362794129051651"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"somewhere in Nigeria","time_created":"Mon Aug 05 13:03:06 +0000 2019","tweeted_by":"@paulozma222"}
{"_id":{"$oid":"5d4829101918e22356446861"},"tweet_id":{"$numberLong":"1158362796045848582"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Nigeria","time_created":"Mon Aug 05 13:03:06 +0000 2019","tweeted_by":"@JackChinemerem"}
{"_id":{"$oid":"5d4829151918e22356446862"},"tweet_id":{"$numberLong":"1158362817122185218"},"content":"RT @AishaYesufu: Muhammadu Buhari @MBuhari \nSallah celebrations was cancelled in your hometown due to the state of insecurity. District hea…","location":"Abuja, Nigeria","time_created":"Mon Aug 05 13:03:11 +0000 2019","tweeted_by":"@Tundela99331239"}
{"_id":{"$oid":"5d4829291918e22356446863"},"tweet_id":{"$numberLong":"1158362902652432384"},"content":"RT @FOnyeoziri: You are quick to grant Boko Haram members who were captured in combat amnesty. You turn a blind eye whenever herdsmen kill…","location":"Lagos, Nigeria","time_created":"Mon Aug 05 13:03:31 +0000 2019","tweeted_by":"@ogapatrique"}
{"_id":{"$oid":"5d4829361918e22356446864"},"tweet_id":{"$numberLong":"1158362957144895493"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Johannesburg, South Africa","time_created":"Mon Aug 05 13:03:44 +0000 2019","tweeted_by":"@karalelo2"}
{"_id":{"$oid":"5d4829371918e22356446865"},"tweet_id":{"$numberLong":"1158362961406242816"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Adamawa, Nigeria","time_created":"Mon Aug 05 13:03:45 +0000 2019","tweeted_by":"@Aiiabdullahi"}
{"_id":{"$oid":"5d490c906d95ad098644aff4"},"tweet_id":{"$numberLong":"1158607009282965505"},"content":"Holtz is crony of Pravin Ghordan they thought their corruption won't be uncovered. Werksmans, Cliff \u0026amp; Dekker, MNS… https://t.co/kmYqfHzrPK","location":"South Africa ","time_created":"Tue Aug 06 05:13:31 +0000 2019","tweeted_by":"@Phaswa111"}
{"_id":{"$oid":"5d490ec66d95ad0cd51eb788"},"tweet_id":{"$numberLong":"1158609446337204224"},"content":"RT @channelstv: The situation (insurgency fight) today is far better than it was some four or five years back. Boko Haram has now been more…","location":"Nigeria","time_created":"Tue Aug 06 05:23:12 +0000 2019","tweeted_by":"@shittu10"}
{"_id":{"$oid":"5d490ece6d95ad0cd51eb789"},"tweet_id":{"$numberLong":"1158609481527373825"},"content":"RT @AOC: \u0026amp; again, this time asking the FBI.\n\nIt seems easier to label domestic, self-radicalized shooters who are Muslim as terrorists.\n\nYe…","location":"Ghana","time_created":"Tue Aug 06 05:23:20 +0000 2019","tweeted_by":"@thywill_woname"}
{"_id":{"$oid":"5d490ed06d95ad0cd51eb78a"},"tweet_id":{"$numberLong":"1158609490910093312"},"content":"@DCI_Kenya Congrats for the good work you are doing..\nFor the bad sugar issue, corruption and any other matter, you… https://t.co/Rz4E8UkH8X","location":"Nairobi, Kenya","time_created":"Tue Aug 06 05:23:23 +0000 2019","tweeted_by":"@emdabliu2014"}
{"_id":{"$oid":"5d490eee6d95ad0cd51eb78b"},"tweet_id":{"$numberLong":"1158609616189710336"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Tue Aug 06 05:23:53 +0000 2019","tweeted_by":"@otega_okiri"}
{"_id":{"$oid":"5d490ef26d95ad0cd51eb78c"},"tweet_id":{"$numberLong":"1158609632589488128"},"content":"ECOWAS meets to review status of corruption fight https://t.co/jBBTRyQU7m https://t.co/cEgJaoUEMO","location":"Nigeria","time_created":"Tue Aug 06 05:23:56 +0000 2019","tweeted_by":"@GistAfri_com"}
{"_id":{"$oid":"5d490f056d95ad0cd51eb78d"},"tweet_id":{"$numberLong":"1158609707650736128"},"content":"RT @IsaacNathi: One of the biggest problem with Ramaphosa is that he knows the corruption that took place during @PresJGZuma tenure, but ca…","location":"Durban, South Africa","time_created":"Tue Aug 06 05:24:14 +0000 2019","tweeted_by":"@Nqobzin20"}
{"_id":{"$oid":"5d490f196d95ad0cd51eb78e"},"tweet_id":{"$numberLong":"1158609795622068226"},"content":"RT @farooqkperogi: These 3 undated videos (1 min. 22 secs in all) of Nigerian soldiers battling what seem like Boko Haram terrorists with o…","location":"Yola, Nigeria","time_created":"Tue Aug 06 05:24:35 +0000 2019","tweeted_by":"@spakoabdurazaq"}
{"_id":{"$oid":"5d490f236d95ad0cd51eb78f"},"tweet_id":{"$numberLong":"1158609840048136193"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria ","time_created":"Tue Aug 06 05:24:46 +0000 2019","tweeted_by":"@olanrewaj02"}
{"_id":{"$oid":"5d490f276d95ad0cd51eb790"},"tweet_id":{"$numberLong":"1158609855286001664"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Ile-Ife, Osun State, Nigeria","time_created":"Tue Aug 06 05:24:50 +0000 2019","tweeted_by":"@bernardaugusti2"}
{"_id":{"$oid":"5d490f476d95ad0cd51eb791"},"tweet_id":{"$numberLong":"1158609988211957760"},"content":"RT @AOC: What Congress can do about exploding white supremacist terrorism: pass gun safety laws, name WS as terrorism in statute, \u0026amp;more.\n\nT…","location":"Cape Town, South Africa","time_created":"Tue Aug 06 05:25:21 +0000 2019","tweeted_by":"@Organique"}
{"_id":{"$oid":"5d490f4b6d95ad0cd51eb792"},"tweet_id":{"$numberLong":"1158610005186220032"},"content":"Very interesting report on links between #BDSsouthAfrica and US and EU recognized terror organizations. Will SA med… https://t.co/hnYTN7FxFi","location":"Johannesburg, South Africa","time_created":"Tue Aug 06 05:25:25 +0000 2019","tweeted_by":"@mordechai7897"}
{"_id":{"$oid":"5d490f586d95ad0cd51eb793"},"tweet_id":{"$numberLong":"1158610059653521408"},"content":"@alain_kivuvu @LandNoli @News24 It was reported in the news that he lamented about rampant corruption, but nothing… https://t.co/LrrsUWELEQ","location":"Johannesburg, South Africa","time_created":"Tue Aug 06 05:25:38 +0000 2019","tweeted_by":"@Dongathegreat"}
{"_id":{"$oid":"5d490f5b6d95ad0cd51eb794"},"tweet_id":{"$numberLong":"1158610070743257093"},"content":"RT @ICPC_PE: Blocking leakages is one of our mandates. We have done a lot through our System Study and Review of corruption-prone Ministeri…","location":"Lagos Nigeria","time_created":"Tue Aug 06 05:25:41 +0000 2019","tweeted_by":"@sama_on_point"}
{"_id":{"$oid":"5d490f8b6d95ad0cd51eb795"},"tweet_id":{"$numberLong":"1158610272736698368"},"content":"More on Cairo mishap;\n\n▪︎Egypt calls deadly Cairo car blast 'terrorist incident'\n\n▪︎Government says car bomb was ca… https://t.co/NwVdzSn8dI","location":"Nigeria ","time_created":"Tue Aug 06 05:26:29 +0000 2019","tweeted_by":"@davidtalks772"}
{"_id":{"$oid":"5d490fa46d95ad0cd51eb796"},"tweet_id":{"$numberLong":"1158610379557232640"},"content":"RT @JayTise: There was #NoRevolution when many Schools in the North were shut down for years because Boko Haram controlled over 17 local go…","location":"Abuja, Nigeria","time_created":"Tue Aug 06 05:26:55 +0000 2019","tweeted_by":"@SirAbelAustine1"}
{"_id":{"$oid":"5d490fab6d95ad0cd51eb797"},"tweet_id":{"$numberLong":"1158610405729681408"},"content":"RT @SethAbramson: See, Trump isn't just advocating the racist theories and hateful rhetoric that are spurring domestic terrorism: he's *mas…","location":"Malibu, California","time_created":"Tue Aug 06 05:27:01 +0000 2019","tweeted_by":"@PModibe"}
{"_id":{"$oid":"5d490fb36d95ad0cd51eb798"},"tweet_id":{"$numberLong":"1158610441402224640"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Lagos, Nigeria","time_created":"Tue Aug 06 05:27:09 +0000 2019","tweeted_by":"@LomBruks"}
{"_id":{"$oid":"5d490fc56d95ad0cd51eb799"},"tweet_id":{"$numberLong":"1158610515368660992"},"content":"CCN condemns rising insecurity, urges FG to end killings | GCFRNG https://t.co/sNQUeIbB6M","location":"Abuja, Nigeria","time_created":"Tue Aug 06 05:27:27 +0000 2019","tweeted_by":"@GcfrNg"}
{"_id":{"$oid":"5d4910126d95ad0cd51eb79a"},"tweet_id":{"$numberLong":"1158610838053380096"},"content":"@SkyNews trying to sugarcoat terrorism!!! This is pure terrorism against innocent people. The guy is a terrorist.","location":"Nairobi-Kenya","time_created":"Tue Aug 06 05:28:44 +0000 2019","tweeted_by":"@EdwinNyongesa3"}
{"_id":{"$oid":"5d4910326d95ad0cd51eb79b"},"tweet_id":{"$numberLong":"1158610938490216449"},"content":"RT @JayTise: There was #NoRevolution when many Schools in the North were shut down for years because Boko Haram controlled over 17 local go…","location":"Lagos, Nigeria","time_created":"Tue Aug 06 05:29:08 +0000 2019","tweeted_by":"@Tamii_Dasilva"}
{"_id":{"$oid":"5d4910476d95ad0cd51eb79c"},"tweet_id":{"$numberLong":"1158611063891484672"},"content":"RT @gimbakakanda: They didn’t realize that Nigeria was too fragile for mass protests when, at the peak of Boko Haram insurgency in 2012, th…","location":"Nigeria","time_created":"Tue Aug 06 05:29:38 +0000 2019","tweeted_by":"@Austynzogs"}
{"_id":{"$oid":"5d49104a6d95ad0cd51eb79d"},"tweet_id":{"$numberLong":"1158611074255642625"},"content":"RT @ewarren: If we want to end gun violence, we need to tackle corruption in Washington head-on. \n\nRight now the gun manufacturers—the guys…","location":"Jijiga, Somalia","time_created":"Tue Aug 06 05:29:40 +0000 2019","tweeted_by":"@YoungMaliGuy"}
{"_id":{"$oid":"5d4910516d95ad0cd51eb79e"},"tweet_id":{"$numberLong":"1158611102995030016"},"content":"RT @renoomokri: Imagine the effect on insecurity in the SW if the large number of police that DESCENDED on protesters today had instead DES…","location":"Anambra, Nigeria","time_created":"Tue Aug 06 05:29:47 +0000 2019","tweeted_by":"@AmandianaezeF"}
{"_id":{"$oid":"5d4910516d95ad0cd51eb79f"},"tweet_id":{"$numberLong":"1158611106593685504"},"content":"RT @badmanteas: White supremacy is a form of terrorism","location":"Lagos, Nigeria","time_created":"Tue Aug 06 05:29:48 +0000 2019","tweeted_by":"@trybechief_"}
{"_id":{"$oid":"5d4910526d95ad0cd51eb7a0"},"tweet_id":{"$numberLong":"1158611110024634373"},"content":"RT @gimbakakanda: They didn’t realize that Nigeria was too fragile for mass protests when, at the peak of Boko Haram insurgency in 2012, th…","location":"Lagos, Nigeria","time_created":"Tue Aug 06 05:29:49 +0000 2019","tweeted_by":"@Ijomanta_Jnr"}
{"_id":{"$oid":"5d4910596d95ad0cd51eb7a1"},"tweet_id":{"$numberLong":"1158611134607495169"},"content":"RT @JerotichSeii: 7. WaKenya: remember that flows of funds from corruption \u0026amp; money laundering could have used US banking systems \u0026amp; therefor…","location":"Mombasa, Kenya","time_created":"Tue Aug 06 05:29:55 +0000 2019","tweeted_by":"@VictorMwambacha"}
{"_id":{"$oid":"5d49105f6d95ad0cd51eb7a2"},"tweet_id":{"$numberLong":"1158611162029789187"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Nigeria","time_created":"Tue Aug 06 05:30:01 +0000 2019","tweeted_by":"@ArutaJnr"}
{"_id":{"$oid":"5d4910626d95ad0cd51eb7a3"},"tweet_id":{"$numberLong":"1158611174742736896"},"content":"@BigPhil03 @mmtairo I agree that Jubillee gvt, sabotaged vision 2030 flagship projects and focused on corruption ri… https://t.co/s0PmqEfJ4r","location":"Nairobi, Kenya","time_created":"Tue Aug 06 05:30:04 +0000 2019","tweeted_by":"@CharlesNyadero"}
{"_id":{"$oid":"5d4910646d95ad0cd51eb7a4"},"tweet_id":{"$numberLong":"1158611184750383104"},"content":"RT @oluwaloninyo: What is Boko Haram? https://t.co/vyPMKgjXtT","location":"Abuja, Nigeria","time_created":"Tue Aug 06 05:30:07 +0000 2019","tweeted_by":"@Ibibio_Woman"}
{"_id":{"$oid":"5d49106e6d95ad0cd51eb7a5"},"tweet_id":{"$numberLong":"1158611225355464705"},"content":"RT @ChidiOdinkalu: The attack on #freespeech in #Nigeria is worrying, especially in a country where insecurity is demonstrably on the incre…","location":"Asaba, Nigeria","time_created":"Tue Aug 06 05:30:16 +0000 2019","tweeted_by":"@uzumemmaria"}
{"_id":{"$oid":"5d49108c6d95ad0cd51eb7a6"},"tweet_id":{"$numberLong":"1158611352329629696"},"content":"RT @gimbakakanda: They didn’t realize that Nigeria was too fragile for mass protests when, at the peak of Boko Haram insurgency in 2012, th…","location":"Port Harcourt, Nigeria","time_created":"Tue Aug 06 05:30:47 +0000 2019","tweeted_by":"@Fredric95376398"}
{"_id":{"$oid":"5d4910b36d95ad0cd51eb7a7"},"tweet_id":{"$numberLong":"1158611514066112513"},"content":"RT @HosamDakhakhni: Pics of the Onchology Institute immediate repairs after it was targeted by a #MuslimBrotherhood #terror group attack, y…","location":"Cairo, Egypt","time_created":"Tue Aug 06 05:31:25 +0000 2019","tweeted_by":"@ma7moudnabilr"}
{"_id":{"$oid":"5d4910c46d95ad0cd51eb7a8"},"tweet_id":{"$numberLong":"1158611585687883777"},"content":"@dkmaraga @ahmednasirlaw Kindly please on the corruption cases let's see speedy trials and convictions. The courts… https://t.co/x3C2lk1pQW","location":"Nairobi, Kenya","time_created":"Tue Aug 06 05:31:42 +0000 2019","tweeted_by":"@DavidDeekaris"}