-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposts-analysis.csv
We can't make this file beautiful and searchable because it's too large.
1247 lines (1247 loc) · 700 KB
/
posts-analysis.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
,level_0,index,page_name,page_id,status_id,attack_date,attacker_categorized,publication_datetime_str,status_type,status_message,link_name,status_link,num_likes,num_love,num_wow,num_haha,num_sad,num_angry,num_comments,num_shares,fatalities,injured,publication_datetime_dt,islamist_attack,left_attack,right_attack,sep_loy_attack,sep_rep_attack,separatist,photo,video,link,type_ord,YYYYMM,terror_mentioned,reactions_comb
0,3,666,SWR Aktuell,112906815414721.0,127083034050108,2011-07-22 00:00:00,RIGHT,2011-07-25 17:06:56,link,"b'In ""Landesschau aktuell RP"" 19.45 Uhr und 21.45 Uhr '",b'Mainz: SPD gedenkt der Anschlagsopfer in Norwegen',http://www.swr.de/nachrichten/rp/-/id=1682/nid=1682/did=8372284/lhz2rz/index.html,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,8.0,2011-07-25 17:06:56,0,0,1,0,0,0,0,0,1,0,201107,0,0.0
1,4,687,Channel 4 News,6622931938.0,132975663455955,2011-07-22 00:00:00,RIGHT,2011-07-26 11:24:16,video,b'Watch the video: the lawyer for Norway gunman Anders Behring Breivik says the case so far indicates his client is insane. ',"b""Norway gunman 'took drugs before attack'""",http://www.channel4.com/news/norway-gunman-took-drugs-before-attack,2.0,0.0,0.0,0.0,0.0,0.0,50.0,0.0,15.0,8.0,2011-07-26 11:24:16,0,0,1,0,0,0,0,1,0,1,201107,0,52.0
2,5,693,Sky News,164665060214766.0,135700663180992,2011-07-22 00:00:00,RIGHT,2011-07-23 07:03:17,link,"b""A 32-year-old Norwegian has been arrested in connection with Friday's bomb attack in Oslo and shootings by a lone gunman at an island youth camp where at least 80 people are known to have died.""",b'Norway: At Least 87 Dead In Youth Camp Shooting In Utoya And Bomb Attack In Oslo | World News | Sky.',https://news.sky.com/skynews/Home/World-News/Norway-At-Least-87-Dead-In-Youth-Camp-Shooting-In-Utoya-And-Bomb-Attack-In-Oslo/Article/201107416035907?lpos=World_News_Carousel_Region_0&lid=ARTICLE_16035907_Norway%3A_At_Least_87_Dead_In_Youth_Camp_Shooting_In_Utoya_And_Bomb_Attack_In_Oslo,44.0,0.0,0.0,0.0,0.0,0.0,135.0,0.0,15.0,8.0,2011-07-23 07:03:17,0,0,1,0,0,0,0,0,1,0,201107,0,179.0
3,6,705,Daily Mail,164305410295882.0,137933439623871,2011-07-22 00:00:00,RIGHT,2011-07-26 12:39:28,link,missing_value,b'Norway shooting: Anders Behring Breivik took drugs before bloody massacre',http://www.dailymail.co.uk/news/article-2018917/Norway-shooting-Anders-Behring-Breivik-took-drugs-bloody-massacre.html,4.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,15.0,8.0,2011-07-26 12:39:28,0,0,1,0,0,0,0,0,1,0,201107,0,7.0
4,7,765,Channel 4 News,6622931938.0,152415494833175,2011-07-22 00:00:00,RIGHT,2011-07-25 21:05:20,link,b'Tens of thousands lay flowers in Oslo to honour those killed in the Norway attacks. ',b'Norway mourns: Thousands rally against violence',http://www.channel4.com/news/norway-mourns-thousands-rally-against-violence,32.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,15.0,8.0,2011-07-25 21:05:20,0,0,1,0,0,0,0,0,1,0,201107,0,36.0
5,8,767,The Sun,161385360554578.0,152456094831134,2011-07-22 00:00:00,RIGHT,2011-07-24 23:31:46,link,"b""\nVICE girl Jenny Thompson fled in terror after trying to get into a trendy bar where Wayne Rooney's wife Coleen was on a night out with pals. \n""",b'Coleen Rooney\xe2\x80\x99s pals make hooker flee',http://www.thesun.co.uk/sol/homepage/news/3712109/Coleen-Rooneys-pals-make-hooker-Jenny-Thompson-flee.html,13.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,15.0,8.0,2011-07-24 23:31:46,0,0,1,0,0,0,0,0,1,0,201107,1,24.0
6,9,782,The Telegraph,143666524748.0,166596510079279,2011-07-22 00:00:00,RIGHT,2011-07-22 17:26:43,link,"b'Breaking: Two dead and 15 injured in bomb blast in the Norwegian capital Oslo. There has also been a shooting at a political youth camp on Utoya Island, roughly 20 miles north-west of Oslo. LIVE coverage here: http://tgr.ph/pjRXM0'",b'Oslo explosion: live coverage',http://www.telegraph.co.uk/news/worldnews/europe/norway/8655175/Oslo-explosion-live-coverage.html,19.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,15.0,8.0,2011-07-22 17:26:43,0,0,1,0,0,0,0,0,1,0,201107,0,39.0
7,10,783,JUNGE FREIHEIT,13479664941.0,166935406712894,2011-07-22 00:00:00,RIGHT,2011-07-22 08:57:03,link,b'Hier ein ganz aktuelles Beispiel f\xc3\xbcr linken Kampagnen-Journalismus:',b'Rchte bei der Truppe: Angriff auf Busen und Bundeswehr - Politik - Abendzeitung M\xc3\xbcnchen',http://www.abendzeitung-muenchen.de/inhalt.rchte-bei-der-truppe-angriff-auf-busen-und-bundeswehr.3d9d3e31-5b43-4d55-beca-5c514fee826c.html,5.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,15.0,8.0,2011-07-22 08:57:03,0,0,1,0,0,0,0,0,1,0,201107,0,13.0
8,11,797,BBC News,228735667216.0,169098079825782,2011-07-22 00:00:00,RIGHT,2011-07-23 15:09:02,link,b'Take a look at our special report on the attacks in Norway',b'BBC News - Norway attacks',http://www.bbc.co.uk/news/world-europe-14261716,115.0,0.0,0.0,0.0,0.0,0.0,311.0,0.0,15.0,8.0,2011-07-23 15:09:02,0,0,1,0,0,0,0,0,1,0,201107,0,426.0
9,12,951,Financial Times,8860325749.0,210441859003760,2011-07-22 00:00:00,RIGHT,2011-07-25 14:04:13,link,"b'""The city of my childhood is now scarred by terrorism, its streets patrolled by soldiers."" Read this comment piece on Norway by the FT\'s Martin Sandbu, who was born in Oslo. \n'",b'Norway lost its innocence a long time ago',https://www.ft.com/cms/s/0/cf96aff6-b61e-11e0-8bed-00144feabdc0.html,80.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,15.0,8.0,2011-07-25 14:04:13,0,0,1,0,0,0,0,0,1,0,201107,1,90.0
10,13,965,Daily Mail,164305410295882.0,214885125224689,2011-07-22 00:00:00,RIGHT,2011-07-23 12:03:09,link,missing_value,"b""'Paradise turned into hell': Death toll rises to 91 after twin terror attacks in Norway""",http://www.dailymail.co.uk/news/article-2017938/Paradise-turned-hell-Death-toll-rises-91-twin-terror-attacks-Norway.html,4.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,15.0,8.0,2011-07-23 12:03:09,0,0,1,0,0,0,0,0,1,0,201107,0,8.0
11,14,988,RP ONLINE,50327854366.0,223903180980646,2011-07-22 00:00:00,RIGHT,2011-07-25 08:21:59,link,"b'Leverkusen: Auf ein Mehrfamilienhaus, in dem Sinti und Roma leben, wurde in der Nacht ein Brandanschlag ver\xc3\xbcbt.'",b'Leverkusen: Brandanschlag auf Mehrfamilienhaus | RP ONLINE',http://www.rp-online.de/bergisches-land/leverkusen/nachrichten/brandanschlag-auf-mehrfamilienhaus-1.1340810,7.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,15.0,8.0,2011-07-25 08:21:59,0,0,1,0,0,0,0,0,1,0,201107,0,16.0
12,15,993,BBC News,228735667216.0,224268384282051,2011-07-22 00:00:00,RIGHT,2011-07-24 10:18:18,link,"b'What we know about Anders Behring Breivik, the 32-year-old accused of being behind the twin attacks in Norway'",b'Norway: Profile Anders Behring Breivik',http://www.bbc.co.uk/news/world-europe-14259989,102.0,0.0,0.0,0.0,0.0,0.0,397.0,1.0,15.0,8.0,2011-07-24 10:18:18,0,0,1,0,0,0,0,0,1,0,201107,0,500.0
13,16,1000,junge Welt,123292927706635.0,224908684211725,2011-07-22 00:00:00,RIGHT,2011-07-25 17:31:27,status,"b'Zitat des Tages:\n\nUnd letztlich sind auch die sogenannten Stra\xc3\x9fenk\xc3\xa4mpfe der Linksextremisten, ob bei den Mai-Krawallen in Berlin oder beim G-8-Gipfel in Rostock 2008, nichts anderes als Terror gegen eine offene Gesellschaft, die ihre Probleme und Konflikte friedlich, im Diskurs l\xc3\xb6sen will.\n\nKommentar von Michael Seidel zu den rassistischen Anschl\xc3\xa4gen in Oslo auf Nordkurier.de'",missing_value,missing_value,3.0,0.0,0.0,0.0,0.0,0.0,13.0,0.0,15.0,8.0,2011-07-25 17:31:27,0,0,1,0,0,0,0,0,0,0,201107,1,16.0
14,17,1006,junge Welt,123292927706635.0,225365224166071,2011-07-22 00:00:00,RIGHT,2011-07-26 16:53:07,status,"b'Zitat des Tages:\n\nIch m\xc3\xb6chte auf diese \xc3\x84u\xc3\x9ferung nicht n\xc3\xa4her eingehen, sie kommt von linker Seite.\n\nHans-Peter Uhl, innenpolitischer Sprecher der CDU/CSU-Fraktion, im Interview mit dem Deutschlandfunk zur Frage, wie wie ethisch es sei, den Doppelanschlag von Oslo mit 76 Toten als politischer Trittbrettfahrer zu benutzen. Uhl hat nach den Anschl\xc3\xa4gen in Norwegen eine st\xc3\xa4rkere Internet\xc3\xbcberwachung gefordert.'",missing_value,missing_value,15.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,15.0,8.0,2011-07-26 16:53:07,0,0,1,0,0,0,0,0,0,0,201107,0,19.0
15,18,1025,Metro,117118184990145.0,226647940705444,2011-07-22 00:00:00,RIGHT,2011-07-25 22:47:51,link,b'Howzat for good luck!',b'Cricketer survives heart attack as doctor team-mates come to the rescue',http://www.metro.co.uk/news/870401-cricketer-survives-heart-attack-as-doctor-team-mates-come-to-the-rescue,19.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,15.0,8.0,2011-07-25 22:47:51,0,0,1,0,0,0,0,0,1,0,201107,0,20.0
16,19,1073,ARD,48219766388.0,234361933264420,2011-07-22 00:00:00,RIGHT,2011-07-23 18:12:52,link,b'LIVE AB 20.15 Uhr: ARD-Brennpunkt zum Doppelanschlag in Norwegen',b'ARD Mediathek - Brennpunkt: Blutbad in Norwegen - Ein Land unter Schock | Das Erste',http://www.ardmediathek.de/ard/servlet/content/3517136?documentId=7750600,13.0,0.0,0.0,0.0,0.0,0.0,15.0,0.0,15.0,8.0,2011-07-23 18:12:52,0,0,1,0,0,0,0,0,1,0,201107,0,28.0
17,20,1099,ITV News,148007467671.0,237945426235799,2011-07-22 00:00:00,RIGHT,2011-07-23 12:58:08,link,b'Do you agree with David Cameron? Are you horrified by these attacks? But do you think we can learn lessons from them?',"b""Norway: Cameron's horror - ITV News""",http://itv.co/owSmti,9.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,15.0,8.0,2011-07-23 12:58:08,0,0,1,0,0,0,0,0,1,0,201107,0,33.0
18,21,1103,WDR,124207927630198.0,238466702851666,2011-07-22 00:00:00,RIGHT,2011-07-22 19:32:00,link,b'Viele Tote und Verletzte hat es bei einer Bombenexplosion in Oslo gegeben. Mehrere Geb\xc3\xa4ude wurden besch\xc3\xa4digt - auch das B\xc3\xbcro von Ministerpr\xc3\xa4sident Stoltenberg. Dieser war aber nicht anwesend. Wenig sp\xc3\xa4ter gab es einen weiteren Anschlag auf ein Jugendlager der norwegischen Jungsozialisten.',b'Tote bei Anschlagsserie in Norwegen | tagesschau.de',http://www.tagesschau.de/ausland/oslo132.html,3.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,15.0,8.0,2011-07-22 19:32:00,0,0,1,0,0,0,0,0,1,0,201107,0,9.0
19,22,1111,Freie Presse,375109771472.0,239325689421584,2011-07-22 00:00:00,RIGHT,2011-07-22 06:36:26,link,b' Nachbarschaftsstreit eskaliert',b'Rentnerin attackiert Mopedfahrer mit einem Glas Kirschen',http://www.freiepresse.de/NACHRICHTEN/SACHSEN/Rentnerin-attackiert-Mopedfahrer-mit-einem-Glas-Kirschen-artikel7709711.php,8.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,15.0,8.0,2011-07-22 06:36:26,0,0,1,0,0,0,0,0,1,0,201107,0,9.0
20,23,1119,RP ONLINE,50327854366.0,241587169197780,2011-07-22 00:00:00,RIGHT,2011-07-26 06:41:39,link,b'Ein Land trauert.',b'Heute Abend sind die Stra\xc3\x9fen voller Liebe: Rund 150.000 Menschen gedenken der Anschlagsopfer | RP ON',http://www.rp-online.de/panorama/ausland/norwegen/Rund-150000-Menschen-gedenken-der-Anschlagsopfer_aid_1015750.html,12.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,15.0,8.0,2011-07-26 06:41:39,0,0,1,0,0,0,0,0,1,0,201107,0,13.0
21,24,1134,DIE RHEINPFALZ,138065952884396.0,244975215526802,2011-07-22 00:00:00,RIGHT,2011-07-26 08:58:08,status,"b'Die RHEINPFALZ-Redaktion bedauert, dass am Montag ein Cartoon abgedruckt war, den man leicht mit dem Anschlag in Norwegen in Verbindung setzen konnte. Der Chef vom Dienst, Peter Leister, betont, dass dies keine Absicht war. ""Der Cartoon steht montags immer an der der gleichen Stelle. Er ist daher auf Wochen im Voraus bereits platziert. Deshalb hat auch vorgestern niemand mehr auf den Inhalt geschaut.""'",missing_value,missing_value,2.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,15.0,8.0,2011-07-26 08:58:08,0,0,1,0,0,0,0,0,0,0,201107,0,11.0
22,25,1144,BBC News,228735667216.0,245567402129687,2011-07-22 00:00:00,RIGHT,2011-07-25 09:54:43,link,b'Follow all the latest news today from Norway on our special LIVE page online',b'Norway attacks aftermath',http://www.bbc.co.uk/news/world-europe-14274908,64.0,0.0,0.0,0.0,0.0,0.0,293.0,0.0,15.0,8.0,2011-07-25 09:54:43,0,0,1,0,0,0,0,0,1,0,201107,0,357.0
23,26,1178,Bild,25604775729.0,249136798447287,2011-07-22 00:00:00,RIGHT,2011-07-27 08:59:17,link,b'W\xc3\xbcrdet Ihr Euch auch unters Messer legen?',"b'RTL 2-Show \xe2\x80\x9eExtrem sch\xc3\xb6n\xe2\x80\x9c : \xc3\x84rzte erkl\xc3\xa4ren die Operationen, Kosten und Risiken'",http://www.bild.de/ratgeber/gesund-fit/schoenheitsoperationen/extrem-schoen-rtl-2-vorher-nachher-bilder-kandidaten-aerzte-kosten-risiken-18977558.bild.html,205.0,0.0,0.0,0.0,0.0,0.0,308.0,0.0,15.0,8.0,2011-07-27 08:59:17,0,0,1,0,0,0,0,0,1,0,201107,0,513.0
24,27,1215,RP ONLINE,50327854366.0,254806511211760,2011-07-22 00:00:00,RIGHT,2011-07-25 10:18:52,link,b'Die nordischen L\xc3\xa4nder gedenken der Opfer mit einer Schweigeminute. ',b'Gedenken an Anschlagsopfer: Norwegen versammelt sich im Schweigen | RP ONLINE',http://www.rp-online.de/panorama/ausland/norwegen/Norwegen-versammelt-sich-im-Schweigen_aid_1015640.html,14.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,8.0,2011-07-25 10:18:52,0,0,1,0,0,0,0,0,1,0,201107,0,14.0
25,28,1239,NDR.de,182848831765655.0,258513574163569,2011-07-22 00:00:00,RIGHT,2011-07-26 11:54:54,link,"b'Die 23-j\xc3\xa4hrige Prableen Kaur war w\xc3\xa4hrend des Anschlags auf der Fjordinsel Ut\xc3\xb8ya. In ihrem Blog schildert sie bewegend, wie sie den Amoklauf \xc3\xbcberlebt hat.'","b'""Ich habe mich tot gestellt""'",http://www.n-joy.de/news_wissen/norwegenanschlaege101.html,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.0,8.0,2011-07-26 11:54:54,0,0,1,0,0,0,0,0,1,0,201107,0,1.0
26,29,1248,ITV News,148007467671.0,259344574082878,2011-07-22 00:00:00,RIGHT,2011-07-24 21:58:41,link,"b""The man who's confessed to the bomb and gun attacks in Norway says he's a Christian Fundamentalist who says his actions were 'necessary'. How do you respond to that?""",b'Norway: The survivors speak to ITV News',http://itv.co/pB36an,7.0,0.0,0.0,0.0,0.0,0.0,87.0,0.0,15.0,8.0,2011-07-24 21:58:41,0,0,1,0,0,0,0,0,1,0,201107,0,94.0
27,30,1249,WELT,97515118114.0,259425174071359,2011-07-22 00:00:00,RIGHT,2011-07-22 17:35:19,link,b'Die Lage in Norwegen stellt uns vor R\xc3\xa4tsel. Nach dem Anschlag in Oslo gab es auf einer Insel offenbar einen \xc3\x9cberfall mit weiteren Opfern.',b'Mann in Polizeiuniform schie\xc3\x9ft auf Jungsozialisten',http://www.welt.de/politik/ausland/article13502918/Mann-in-Polizeiuniform-schiesst-auf-Jungsozialisten.html,4.0,0.0,0.0,0.0,0.0,0.0,242.0,0.0,15.0,8.0,2011-07-22 17:35:19,0,0,1,0,0,0,0,0,1,0,201107,0,246.0
28,31,1266,Sky News,164665060214766.0,260674867280978,2011-07-22 00:00:00,RIGHT,2011-07-22 20:19:36,link,"b'Up to 30 dead in attack on young political activists in Norway, seven killed in related car bomb attack in nearby Oslo. One attacker may have been responsible for both attacks.'",b'As Many As 30 Feared Dead In Norway Camp Shooting After Bomb Attack In Capital Oslo Kills At Least 7',https://news.sky.com/skynews/Home/World-News/As-Many-As-30-Feared-Dead-In-Norway-Camp-Shooting-After-Bomb-Attack-In-Capital-Oslo-Kills-At-Least-7/Article/201107416035628?lpos=World_News_Carousel_Region_0&lid=ARTICLE_16035628_As_Many_As_30_Feared_Dead_In_Norway_Camp_Shooting_After_Bomb_Attack_In_Capital_Oslo_Kills_At_Least_7,35.0,0.0,0.0,0.0,0.0,0.0,228.0,1.0,15.0,8.0,2011-07-22 20:19:36,0,0,1,0,0,0,0,0,1,0,201107,0,264.0
29,32,1284,Sky News,164665060214766.0,263992296947513,2011-07-22 00:00:00,RIGHT,2011-07-28 18:58:09,link,b'The hotel maid who accused former IMF chief Dominique Strauss-Kahn of attempted rape says she has cried every day since the alleged attack. ',b'Hotel Maid Nafissatou Diallo Speaks Out About Dominique Strauss-Kahn Alleged Attack | World News | S',https://news.sky.com/home/world-news/article/16039355,31.0,0.0,0.0,0.0,0.0,0.0,67.0,0.0,15.0,8.0,2011-07-28 18:58:09,0,0,1,0,0,0,0,0,1,0,201107,0,98.0
30,33,1298,KSTA,141063022950.0,10150244720817951,2011-07-22 00:00:00,RIGHT,2011-07-27 17:59:14,photo,"b'Die neueste Ausgabe der KStA-App ist da \xe2\x80\x93 und das sind die Topthemen: Hunger in Somalia \xe2\x80\x93 Endlich kann die UN die Luftbr\xc3\xbccke starten. Terror in Norwegen \xe2\x80\x93 Ein Land sucht Antworten, wir sprechen mit Jostein Gaarder (""Sofies Welt""). Die wahren Urlaubsk\xc3\xb6nige \xe2\x80\x93 kein Land hat so viel Freizeit wie Deutschland. Brandanschlag auf K\xc3\xb6lner Pizzeria \xe2\x80\x93 ist die Mafia verantwortlich? Und: Bayer Leverkusen \xe2\x80\x93 die ambitionierten Ziele des Robin Dutt.'",b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10150244720787951/?type=3,2.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,15.0,8.0,2011-07-27 17:59:14,0,0,1,0,0,0,1,0,0,2,201107,1,5.0
31,34,1333,The Guardian,10513336322.0,10150326451971323,2011-07-22 00:00:00,RIGHT,2011-07-25 15:07:02,photo,b'25 July 2011\r\n\r\nAftermath of the Norway shootings leads the paper',b'Guardian front pages',https://www.facebook.com/theguardian/photos/a.10150320554301323.386037.10513336322/10150326451666323/?type=3,65.0,0.0,0.0,0.0,0.0,0.0,28.0,3.0,15.0,8.0,2011-07-25 15:07:02,0,0,1,0,0,0,1,0,0,2,201107,0,96.0
32,35,1370,City AM,213682385348579.0,132201966906939,2012-03-11 00:00:00,ISLAMIST,2012-03-13 10:35:55,link,b'http://www.cityam.com/latest-news/housing-plan-under-attack',b'Housing plan under attack | City A.M.',http://www.cityam.com/latest-news/housing-plan-under-attack,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2012-03-13 10:35:55,1,0,0,0,0,0,0,0,1,0,201203,0,0.0
33,36,1378,ProSieben,64694257920.0,134242153369443,2012-03-11 00:00:00,ISLAMIST,2012-03-15 20:53:54,link,b'Ein Fotoshooting mit Heidi steht auf dem Programm',b'Shooting mit Heidi - Video',http://www.prosieben.de/tv/germanys-next-topmodel/video/clip/284173-shooting-mit-heidi-1.3110115/,55.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,0.0,1.0,2012-03-15 20:53:54,1,0,0,0,0,0,0,0,1,0,201203,0,68.0
34,37,1443,ProSieben,64694257920.0,202585513178945,2012-03-11 00:00:00,ISLAMIST,2012-03-15 18:04:15,link,b'Auch heute Abend ab 22:30 Uhr ist red! wieder ganz nah dran an Heidi Klum und schaut beim gemeinsamen Fotoshooting der Model-Mama mit ihren Topmodel-Kandidatinnen hinter die Kulissen. Mit welchem Supermodel w\xc3\xbcrdet ihr euch gerne mal ablichten lassen? ',b'red! Trailer ansehen',http://www.prosieben.de/tv/red/video/clip/283755-red-trailer-vom-153-1.3109849/,74.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,0.0,1.0,2012-03-15 18:04:15,1,0,0,0,0,0,0,0,1,0,201203,0,87.0
35,38,1455,Sky News,164665060214766.0,205645086202647,2012-03-11 00:00:00,ISLAMIST,2012-03-17 14:51:41,link,"b""Unions have lined up to attack Chancellor George Osborne's reported plans to do away with national pay rates for public sector workers in his Budget on Wednesday.\n\nhttp://news.sky.com/home/politics/article/16190693""",b'Osborne Set To End National Public Sector Pay',https://news.sky.com/home/politics/article/16190693,50.0,0.0,0.0,0.0,0.0,0.0,57.0,15.0,0.0,1.0,2012-03-17 14:51:41,1,0,0,0,0,0,0,0,1,0,201203,0,122.0
36,39,1465,KSTA,141063022950.0,207491316019166,2012-03-11 00:00:00,ISLAMIST,2012-03-15 06:27:45,link,"b'Poizeirazzia im Vereinsheim der ""Wilden Horde"" an der Vogelsanger Stra\xc3\x9fe. Es geht um Attacke auf Borussia-Fanbus. '","b'Polizeirazzia gegen ""Wilde Horde""'",http://www.ksta.de/html/artikel/1331653404954.shtml,23.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,2012-03-15 06:27:45,1,0,0,0,0,0,0,0,1,0,201203,0,28.0
37,40,1469,SAT.1,145019618847447.0,208783209229800,2012-03-11 00:00:00,ISLAMIST,2012-03-15 11:43:26,link,b'Nachtruhe sieht anders aus: Cihan leidet unter den Schnarchattacken von Teamkollege Marc und ist mehr als genervt. ',b'Schlafentzug ist Folter',http://www.sat1.de/tv/the-biggest-loser/video/schlafentzug-ist-folter-clip,28.0,0.0,0.0,0.0,0.0,0.0,11.0,2.0,0.0,1.0,2012-03-15 11:43:26,1,0,0,0,0,0,0,0,1,0,201203,0,41.0
38,41,1578,NDR.de,182848831765655.0,291387804262599,2012-03-11 00:00:00,ISLAMIST,2012-03-16 20:18:13,link,"b'""Billstedt ist \xc3\xbcberall"": Das Erste zeigt am Sonnabend um 15.30 Uhr eine Reportage \xc3\xbcber Zivilfahnder, die in einem Hamburger Problemstadtteil Drogendealer und Messerstecher jagen.'","b'""Kiffen, klauen, zustechen""'",http://www.ndr.de/regional/hamburg/billstedt129.html,9.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,2012-03-16 20:18:13,1,0,0,0,0,0,0,0,1,0,201203,0,16.0
39,42,1888,RP ONLINE,50327854366.0,408308059196432,2012-03-11 00:00:00,ISLAMIST,2012-03-15 08:13:45,link,b'Die Fanbus-Attacke hat noch ein Nachspiel....',"b'Polizeirazzia gegen ""Wilde Horde"" | RP ONLINE'",http://www.rp-online.de/sport/fussball/bundesliga/polizeirazzia-gegen-wilde-horde-1.2753787,47.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,2012-03-15 08:13:45,1,0,0,0,0,0,0,0,1,0,201203,0,51.0
40,43,2016,City AM,213682385348579.0,132201966906939,2012-03-12 00:00:00,ISLAMIST,2012-03-13 10:35:55,link,b'http://www.cityam.com/latest-news/housing-plan-under-attack',b'Housing plan under attack | City A.M.',http://www.cityam.com/latest-news/housing-plan-under-attack,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2012-03-13 10:35:55,1,0,0,0,0,0,0,0,1,0,201203,0,0.0
41,44,2025,ProSieben,64694257920.0,134242153369443,2012-03-12 00:00:00,ISLAMIST,2012-03-15 20:53:54,link,b'Ein Fotoshooting mit Heidi steht auf dem Programm',b'Shooting mit Heidi - Video',http://www.prosieben.de/tv/germanys-next-topmodel/video/clip/284173-shooting-mit-heidi-1.3110115/,55.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,1.0,1.0,2012-03-15 20:53:54,1,0,0,0,0,0,0,0,1,0,201203,0,68.0
42,45,2095,ProSieben,64694257920.0,202585513178945,2012-03-12 00:00:00,ISLAMIST,2012-03-15 18:04:15,link,b'Auch heute Abend ab 22:30 Uhr ist red! wieder ganz nah dran an Heidi Klum und schaut beim gemeinsamen Fotoshooting der Model-Mama mit ihren Topmodel-Kandidatinnen hinter die Kulissen. Mit welchem Supermodel w\xc3\xbcrdet ihr euch gerne mal ablichten lassen? ',b'red! Trailer ansehen',http://www.prosieben.de/tv/red/video/clip/283755-red-trailer-vom-153-1.3109849/,74.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,1.0,1.0,2012-03-15 18:04:15,1,0,0,0,0,0,0,0,1,0,201203,0,87.0
43,46,2106,Sky News,164665060214766.0,205645086202647,2012-03-12 00:00:00,ISLAMIST,2012-03-17 14:51:41,link,"b""Unions have lined up to attack Chancellor George Osborne's reported plans to do away with national pay rates for public sector workers in his Budget on Wednesday.\n\nhttp://news.sky.com/home/politics/article/16190693""",b'Osborne Set To End National Public Sector Pay',https://news.sky.com/home/politics/article/16190693,50.0,0.0,0.0,0.0,0.0,0.0,57.0,15.0,1.0,1.0,2012-03-17 14:51:41,1,0,0,0,0,0,0,0,1,0,201203,0,122.0
44,47,2118,KSTA,141063022950.0,207491316019166,2012-03-12 00:00:00,ISLAMIST,2012-03-15 06:27:45,link,"b'Poizeirazzia im Vereinsheim der ""Wilden Horde"" an der Vogelsanger Stra\xc3\x9fe. Es geht um Attacke auf Borussia-Fanbus. '","b'Polizeirazzia gegen ""Wilde Horde""'",http://www.ksta.de/html/artikel/1331653404954.shtml,23.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,1.0,2012-03-15 06:27:45,1,0,0,0,0,0,0,0,1,0,201203,0,28.0
45,48,2123,SAT.1,145019618847447.0,208783209229800,2012-03-12 00:00:00,ISLAMIST,2012-03-15 11:43:26,link,b'Nachtruhe sieht anders aus: Cihan leidet unter den Schnarchattacken von Teamkollege Marc und ist mehr als genervt. ',b'Schlafentzug ist Folter',http://www.sat1.de/tv/the-biggest-loser/video/schlafentzug-ist-folter-clip,28.0,0.0,0.0,0.0,0.0,0.0,11.0,2.0,1.0,1.0,2012-03-15 11:43:26,1,0,0,0,0,0,0,0,1,0,201203,0,41.0
46,49,2240,NDR.de,182848831765655.0,291387804262599,2012-03-12 00:00:00,ISLAMIST,2012-03-16 20:18:13,link,"b'""Billstedt ist \xc3\xbcberall"": Das Erste zeigt am Sonnabend um 15.30 Uhr eine Reportage \xc3\xbcber Zivilfahnder, die in einem Hamburger Problemstadtteil Drogendealer und Messerstecher jagen.'","b'""Kiffen, klauen, zustechen""'",http://www.ndr.de/regional/hamburg/billstedt129.html,9.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,1.0,1.0,2012-03-16 20:18:13,1,0,0,0,0,0,0,0,1,0,201203,0,16.0
47,50,2544,RP ONLINE,50327854366.0,408308059196432,2012-03-12 00:00:00,ISLAMIST,2012-03-15 08:13:45,link,b'Die Fanbus-Attacke hat noch ein Nachspiel....',"b'Polizeirazzia gegen ""Wilde Horde"" | RP ONLINE'",http://www.rp-online.de/sport/fussball/bundesliga/polizeirazzia-gegen-wilde-horde-1.2753787,47.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1.0,1.0,2012-03-15 08:13:45,1,0,0,0,0,0,0,0,1,0,201203,0,51.0
48,51,2689,ProSieben,64694257920.0,134242153369443,2012-03-15 00:00:00,ISLAMIST,2012-03-15 20:53:54,link,b'Ein Fotoshooting mit Heidi steht auf dem Programm',b'Shooting mit Heidi - Video',http://www.prosieben.de/tv/germanys-next-topmodel/video/clip/284173-shooting-mit-heidi-1.3110115/,55.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,0.0,3.0,2012-03-15 20:53:54,1,0,0,0,0,0,0,0,1,0,201203,0,68.0
49,52,2700,SPIEGEL ONLINE,38246844868.0,137190026407774,2012-03-15 00:00:00,ISLAMIST,2012-03-21 18:59:21,video,"b'Die Muppets mal in ungewohnter Rolle: Im neuen Video der Band Anti-Flag spielen sie fiese Folterknechte. Mit dem Clip wollen die Punkrocker und Amnesty International das US-Terrorbek\xc3\xa4mpfungsgesetz NDAA kritisieren und wir uns verabschieden. Tsch\xc3\xbcs, bis morgen!\n'","b'Anti-Flag -- ""This Is The New Sound""'",https://www.youtube.com/watch?v=pFyMk0HsQik,296.0,0.0,0.0,0.0,0.0,0.0,17.0,115.0,0.0,3.0,2012-03-21 18:59:21,1,0,0,0,0,0,0,1,0,1,201203,1,428.0
50,53,2764,ProSieben,64694257920.0,202585513178945,2012-03-15 00:00:00,ISLAMIST,2012-03-15 18:04:15,link,b'Auch heute Abend ab 22:30 Uhr ist red! wieder ganz nah dran an Heidi Klum und schaut beim gemeinsamen Fotoshooting der Model-Mama mit ihren Topmodel-Kandidatinnen hinter die Kulissen. Mit welchem Supermodel w\xc3\xbcrdet ihr euch gerne mal ablichten lassen? ',b'red! Trailer ansehen',http://www.prosieben.de/tv/red/video/clip/283755-red-trailer-vom-153-1.3109849/,74.0,0.0,0.0,0.0,0.0,0.0,12.0,1.0,0.0,3.0,2012-03-15 18:04:15,1,0,0,0,0,0,0,0,1,0,201203,0,87.0
51,54,2774,Sky News,164665060214766.0,205645086202647,2012-03-15 00:00:00,ISLAMIST,2012-03-17 14:51:41,link,"b""Unions have lined up to attack Chancellor George Osborne's reported plans to do away with national pay rates for public sector workers in his Budget on Wednesday.\n\nhttp://news.sky.com/home/politics/article/16190693""",b'Osborne Set To End National Public Sector Pay',https://news.sky.com/home/politics/article/16190693,50.0,0.0,0.0,0.0,0.0,0.0,57.0,15.0,0.0,3.0,2012-03-17 14:51:41,1,0,0,0,0,0,0,0,1,0,201203,0,122.0
52,55,2787,KSTA,141063022950.0,207491316019166,2012-03-15 00:00:00,ISLAMIST,2012-03-15 06:27:45,link,"b'Poizeirazzia im Vereinsheim der ""Wilden Horde"" an der Vogelsanger Stra\xc3\x9fe. Es geht um Attacke auf Borussia-Fanbus. '","b'Polizeirazzia gegen ""Wilde Horde""'",http://www.ksta.de/html/artikel/1331653404954.shtml,23.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,2012-03-15 06:27:45,1,0,0,0,0,0,0,0,1,0,201203,0,28.0
53,56,2792,SAT.1,145019618847447.0,208783209229800,2012-03-15 00:00:00,ISLAMIST,2012-03-15 11:43:26,link,b'Nachtruhe sieht anders aus: Cihan leidet unter den Schnarchattacken von Teamkollege Marc und ist mehr als genervt. ',b'Schlafentzug ist Folter',http://www.sat1.de/tv/the-biggest-loser/video/schlafentzug-ist-folter-clip,28.0,0.0,0.0,0.0,0.0,0.0,11.0,2.0,0.0,3.0,2012-03-15 11:43:26,1,0,0,0,0,0,0,0,1,0,201203,0,41.0
54,57,2873,City AM,213682385348579.0,272588046152628,2012-03-15 00:00:00,ISLAMIST,2012-03-20 10:47:13,link,b'http://www.cityam.com/latest-news/non-doms-flee-uk-tax-attack\n',b'Non doms flee UKtax attack | City A.M.',http://www.cityam.com/latest-news/non-doms-flee-uk-tax-attack,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2012-03-20 10:47:13,1,0,0,0,0,0,0,0,1,0,201203,0,0.0
55,58,2904,NDR.de,182848831765655.0,291387804262599,2012-03-15 00:00:00,ISLAMIST,2012-03-16 20:18:13,link,"b'""Billstedt ist \xc3\xbcberall"": Das Erste zeigt am Sonnabend um 15.30 Uhr eine Reportage \xc3\xbcber Zivilfahnder, die in einem Hamburger Problemstadtteil Drogendealer und Messerstecher jagen.'","b'""Kiffen, klauen, zustechen""'",http://www.ndr.de/regional/hamburg/billstedt129.html,9.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,0.0,3.0,2012-03-16 20:18:13,1,0,0,0,0,0,0,0,1,0,201203,0,16.0
56,59,3048,Channel 4 News,6622931938.0,343513685684315,2012-03-15 00:00:00,ISLAMIST,2012-03-20 19:11:14,link,b'http://www.channel4.com/news/trayvon-martin-us-teenager-shooting-george-zimmerman',b'Investigation into shooting of US teenager Trayvon Martin',http://www.channel4.com/news/trayvon-martin-us-teenager-shooting-george-zimmerman,15.0,0.0,0.0,0.0,0.0,0.0,30.0,5.0,0.0,3.0,2012-03-20 19:11:14,1,0,0,0,0,0,0,0,1,0,201203,0,50.0
57,60,3222,RP ONLINE,50327854366.0,408308059196432,2012-03-15 00:00:00,ISLAMIST,2012-03-15 08:13:45,link,b'Die Fanbus-Attacke hat noch ein Nachspiel....',"b'Polizeirazzia gegen ""Wilde Horde"" | RP ONLINE'",http://www.rp-online.de/sport/fussball/bundesliga/polizeirazzia-gegen-wilde-horde-1.2753787,47.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,2012-03-15 08:13:45,1,0,0,0,0,0,0,0,1,0,201203,0,51.0
58,61,3327,WELT,97515118114.0,10150747963483115,2012-03-15 00:00:00,ISLAMIST,2012-03-21 20:12:46,photo,"b'Exklusive Reise durch Israel zu gewinnen: http://on.welt.de/GXn1I5\r\n\r\nStrandurlaube und St\xc3\xa4dtetrips, Wellness und Sport: Israel will mit einer neuen Kampagne seine M\xc3\xb6glichkeiten pr\xc3\xa4sentieren und sucht daf\xc3\xbcr zwei Werbegesichter. Wer sich bewirbt, kann eine exklusive Reise mit professionellen Fotoshootings in den sch\xc3\xb6nsten Gegenden des Landes gewinnen. Dazu gibt es ein Taschengeld von 5000 Euro.'",b'Timeline Photos',https://www.facebook.com/welt/photos/a.298879548114.181606.97515118114/10150747963438115/?type=3,19.0,0.0,0.0,0.0,0.0,0.0,24.0,5.0,0.0,3.0,2012-03-21 20:12:46,1,0,0,0,0,0,1,0,0,2,201203,0,48.0
59,62,3339,JUNGE FREIHEIT,13479664941.0,10150867661054942,2012-03-15 00:00:00,ISLAMIST,2012-03-20 18:08:29,status,"b'Die aktuelle Ausgabe ist fast fertig. In der aktuellen Ausgabe besch\xc3\xa4ftigen wir uns mit der Stasi 3.0 und den Gefahren durch Datenkraken wie zum Beispiel Google. Dazu gibt es auch ein Interview mit dem renommierten Datensch\xc3\xbctzer Thilo Weichert. Weitere Themen sind unter anderem die Neuwahlen in NRW, das sich langsam anbahnende NPD-Verbotsverfahren, eine kriminelle Ausl\xc3\xa4nderbande, die \xc3\x9clzen terrorisiert und Journalisten einsch\xc3\xbcchtert, eine Demonstration lettischer Waffen-SS-Veteranen, die f\xc3\xbcr allerlei Kritik sorgte und der Hundertste Geburtstag von Wernher von Braun.\n\nDies und vieles mehr ab Freitag am Kiosk. \n\nViel Spa\xc3\x9f beim lesen.'",missing_value,missing_value,9.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,3.0,2012-03-20 18:08:29,1,0,0,0,0,0,0,0,0,0,201203,1,14.0
60,63,3380,SPIEGEL ONLINE,38246844868.0,137190026407774,2012-03-19 00:00:00,ISLAMIST,2012-03-21 18:59:21,video,"b'Die Muppets mal in ungewohnter Rolle: Im neuen Video der Band Anti-Flag spielen sie fiese Folterknechte. Mit dem Clip wollen die Punkrocker und Amnesty International das US-Terrorbek\xc3\xa4mpfungsgesetz NDAA kritisieren und wir uns verabschieden. Tsch\xc3\xbcs, bis morgen!\n'","b'Anti-Flag -- ""This Is The New Sound""'",https://www.youtube.com/watch?v=pFyMk0HsQik,296.0,0.0,0.0,0.0,0.0,0.0,17.0,115.0,0.0,4.0,2012-03-21 18:59:21,1,0,0,0,0,0,0,1,0,1,201203,1,428.0
61,64,3425,ProSieben,64694257920.0,190806187702185,2012-03-19 00:00:00,ISLAMIST,2012-03-22 20:32:42,link,b'Wir haben die Original-Bilder vom Topmodel-Shooting online! Wie findet ihr eigentlich die neuen Frisuren der Models?',b'Das Shooting - die Originale - Gallery',http://www.prosieben.de/tv/germanys-next-topmodel/bilder-2012/bilder-episode-5/das-shooting-die-originale-1.3119281/,114.0,0.0,0.0,0.0,0.0,0.0,25.0,1.0,0.0,4.0,2012-03-22 20:32:42,1,0,0,0,0,0,0,0,1,0,201203,0,140.0
62,65,3556,City AM,213682385348579.0,272588046152628,2012-03-19 00:00:00,ISLAMIST,2012-03-20 10:47:13,link,b'http://www.cityam.com/latest-news/non-doms-flee-uk-tax-attack\n',b'Non doms flee UKtax attack | City A.M.',http://www.cityam.com/latest-news/non-doms-flee-uk-tax-attack,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2012-03-20 10:47:13,1,0,0,0,0,0,0,0,1,0,201203,0,0.0
63,66,3563,SWR Aktuell,112906815414721.0,274243292650644,2012-03-19 00:00:00,ISLAMIST,2012-03-22 12:03:44,link,"b'http://www.swr.de/landesschau-aktuell-rp/-/id=233240/yivic8/\n\nW\xc3\xa4hrend die ""Roten Teufel"" im Abstiegs-Kampf auf einen Neuen setzen, geht ein Islamist wegen seines Propaganda-Kampfes hinter Gitter. Dort soll auch der M\xc3\xb6rder ihrer Tochter nach 30 Jahren endlich landen: Im Kampf um Gerechtigkeit steigt eine Mutter in den Zeugenstand.'",b'Unsere Themen vom 22.03.2012',http://www.swr.de/landesschau-aktuell-rp/-/id=233240/yivic8/,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2012-03-22 12:03:44,1,0,0,0,0,0,0,0,1,0,201203,0,0.0
64,67,3630,KSTA,141063022950.0,311813842218578,2012-03-19 00:00:00,ISLAMIST,2012-03-23 12:47:34,link,b'Nach Lukas Podolski hat FC-Trainer Stale Solbakken schwere Vorw\xc3\xbcrfe gegen das DFB-Sportgericht erhoben. Der Norweger spricht von einer Katastrophe. http://www.ksta.de/html/artikel/1332436855701.shtml',b'Solbakken attackiert DFB-Sportgericht - K\xc3\xb6lner Stadt-Anzeiger',http://www.ksta.de/html/artikel/1332436855701.shtml,24.0,0.0,0.0,0.0,0.0,0.0,7.0,1.0,0.0,4.0,2012-03-23 12:47:34,1,0,0,0,0,0,0,0,1,0,201203,0,32.0
65,68,3655,Metro,117118184990145.0,319419301446643,2012-03-19 00:00:00,ISLAMIST,2012-03-22 11:53:32,link,"b'Toulouse gunman Mohammed Merah has been found dead, after he jumped from a window while shooting, the French Interior Minister has confirmed.'",b'Toulouse gunman Mohammed Merah dead after police storm house',http://www.metro.co.uk/news/893867-toulouse-gunman-mohammed-merah-dead-after-police-storm-house,45.0,0.0,0.0,0.0,0.0,0.0,118.0,14.0,0.0,4.0,2012-03-22 11:53:32,1,0,0,0,0,0,0,0,1,0,201203,0,177.0
66,69,3733,Channel 4 News,6622931938.0,343513685684315,2012-03-19 00:00:00,ISLAMIST,2012-03-20 19:11:14,link,b'http://www.channel4.com/news/trayvon-martin-us-teenager-shooting-george-zimmerman',b'Investigation into shooting of US teenager Trayvon Martin',http://www.channel4.com/news/trayvon-martin-us-teenager-shooting-george-zimmerman,15.0,0.0,0.0,0.0,0.0,0.0,30.0,5.0,0.0,4.0,2012-03-20 19:11:14,1,0,0,0,0,0,0,0,1,0,201203,0,50.0
67,70,4021,Daily Mirror,6149699161.0,10150686396239162,2012-03-19 00:00:00,ISLAMIST,2012-03-23 21:32:32,photo,"b""Saturday's front page features contrasting stories: The big Saturday night showdown between Britain's Got Talent and The Voice and the machine gun shooting of a top Russian banker in London.""",b'Timeline Photos',https://www.facebook.com/dailymirror/photos/a.394365354161.172272.6149699161/10150686396169162/?type=3,28.0,0.0,0.0,0.0,0.0,0.0,16.0,6.0,0.0,4.0,2012-03-23 21:32:32,1,0,0,0,0,0,1,0,0,2,201203,0,50.0
68,71,4025,Daily Mirror,6149699161.0,10150690495879162,2012-03-19 00:00:00,ISLAMIST,2012-03-25 21:52:29,photo,"b""Here's the front page of Monday's Daily Mirror featuring Simon Cowell's terror after an intruder breaks into his home and the latest on David Cameron's cash for favours scandal.""",b'Timeline Photos',https://www.facebook.com/dailymirror/photos/a.394365354161.172272.6149699161/10150690495879162/?type=3,28.0,0.0,0.0,0.0,0.0,0.0,18.0,10.0,0.0,4.0,2012-03-25 21:52:29,1,0,0,0,0,0,1,0,0,2,201203,1,56.0
69,72,4038,WELT,97515118114.0,10150747963483115,2012-03-19 00:00:00,ISLAMIST,2012-03-21 20:12:46,photo,"b'Exklusive Reise durch Israel zu gewinnen: http://on.welt.de/GXn1I5\r\n\r\nStrandurlaube und St\xc3\xa4dtetrips, Wellness und Sport: Israel will mit einer neuen Kampagne seine M\xc3\xb6glichkeiten pr\xc3\xa4sentieren und sucht daf\xc3\xbcr zwei Werbegesichter. Wer sich bewirbt, kann eine exklusive Reise mit professionellen Fotoshootings in den sch\xc3\xb6nsten Gegenden des Landes gewinnen. Dazu gibt es ein Taschengeld von 5000 Euro.'",b'Timeline Photos',https://www.facebook.com/welt/photos/a.298879548114.181606.97515118114/10150747963438115/?type=3,19.0,0.0,0.0,0.0,0.0,0.0,24.0,5.0,0.0,4.0,2012-03-21 20:12:46,1,0,0,0,0,0,1,0,0,2,201203,0,48.0
70,73,4046,WELT,97515118114.0,10150756300368115,2012-03-19 00:00:00,ISLAMIST,2012-03-25 21:58:56,photo,"b'Exklusive Reise durch Israel zu gewinnen: http://on.welt.de/GXn1I5\r\n\r\nIsrael sucht zwei neue Werbegesichter, die der Welt die Urlaubsm\xc3\xb6glichkeiten des Landes zeigen. Wer sich bewirbt, k\xc3\xb6nnte bald auf Israel-Reise gehen, mit Fotoshootings in den sch\xc3\xb6nsten Gegenden des Landes. Dazu ein Taschengeld von 5000 Euro.'",b'Timeline Photos',https://www.facebook.com/welt/photos/a.298879548114.181606.97515118114/10150756300368115/?type=3,30.0,0.0,0.0,0.0,0.0,0.0,9.0,2.0,0.0,4.0,2012-03-25 21:58:56,1,0,0,0,0,0,1,0,0,2,201203,0,41.0
71,74,4060,JUNGE FREIHEIT,13479664941.0,10150867661054942,2012-03-19 00:00:00,ISLAMIST,2012-03-20 18:08:29,status,"b'Die aktuelle Ausgabe ist fast fertig. In der aktuellen Ausgabe besch\xc3\xa4ftigen wir uns mit der Stasi 3.0 und den Gefahren durch Datenkraken wie zum Beispiel Google. Dazu gibt es auch ein Interview mit dem renommierten Datensch\xc3\xbctzer Thilo Weichert. Weitere Themen sind unter anderem die Neuwahlen in NRW, das sich langsam anbahnende NPD-Verbotsverfahren, eine kriminelle Ausl\xc3\xa4nderbande, die \xc3\x9clzen terrorisiert und Journalisten einsch\xc3\xbcchtert, eine Demonstration lettischer Waffen-SS-Veteranen, die f\xc3\xbcr allerlei Kritik sorgte und der Hundertste Geburtstag von Wernher von Braun.\n\nDies und vieles mehr ab Freitag am Kiosk. \n\nViel Spa\xc3\x9f beim lesen.'",missing_value,missing_value,9.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,4.0,2012-03-20 18:08:29,1,0,0,0,0,0,0,0,0,0,201203,1,14.0
72,75,4079,The Sun,161385360554578.0,120174761473564,2012-11-01 00:00:00,SEP-REP,2012-11-01 11:05:06,link,b'WOMAN who was pictured launching a \xe2\x80\x9chorrifying\xe2\x80\x9d racist attack on a stranger in front of her two kids has walked free from court. Is this country showing too much tolerance to this type of abuse by not jailing offenders?\n\nhttp://bit.ly/Ui7V5N',b'Mum in \xe2\x80\x98horrifying\xe2\x80\x99 racist attack dodges jail',http://www.thesun.co.uk/sol/homepage/news/4620123/amanda-lowe-racist-attack-walks-free.html,154.0,0.0,0.0,0.0,0.0,0.0,170.0,69.0,0.0,1.0,2012-11-01 11:05:06,0,0,0,0,1,1,0,0,1,0,201211,0,393.0
73,76,4111,Daily Express,129617873765147.0,134819566666272,2012-11-01 00:00:00,SEP-REP,2012-11-07 11:48:22,link,"b'The Prime Minister and German Chancellor will hold \'robust\' talks at Downing Street this evening to discuss the ""completely ludicrous"" EU budget...'",b'David Cameron vows to fight for taxpayers as he attacks',http://www.express.co.uk/posts/view/356681,12.0,0.0,0.0,0.0,0.0,0.0,15.0,7.0,0.0,1.0,2012-11-07 11:48:22,0,0,0,0,1,1,0,0,1,0,201211,0,34.0
74,77,4134,SR.de,139381656076338.0,171523366321525,2012-11-01 00:00:00,SEP-REP,2012-11-02 15:21:54,link,b'S\xc3\xbc\xc3\x9fes oder Saures an Halloween mit Folgen: Nach dem Klingeln an der Haust\xc3\xbcr \xc3\xb6ffnete statt den Bewohnern ein Rottweiler und biss einen achtj\xc3\xa4hrigen Jungen.',b'SR-online: Kind nach Hundeattacke verletzt',http://www.sr-online.de/sronline/nachrichten/panorama/hundeattacke_halloween100.html,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2012-11-02 15:21:54,0,0,0,0,1,1,0,0,1,0,201211,0,1.0
75,78,4184,Frankfurter Rundschau,134100583282150.0,276767942426201,2012-11-01 00:00:00,SEP-REP,2012-11-06 07:42:59,link,"b'Ein Jahr nach Aufdeckung des NSU-Terrors steigt Derege Wevelsiep in eine Frankfurter U-Bahn und wird von Polizisten verpr\xc3\xbcgelt. Eine Geschichte dar\xc3\xbcber, dass sich nichts ge\xc3\xa4ndert hat.'",b'Rassismus Polizei Frankfurt: Ihr seid hier nicht in Afrika',"http://www.fr-online.de/frankfurt/rassismus-polizei-frankfurt-ihr-seid-hier-nicht-in-afrika,1472798,20797476.html",21.0,0.0,0.0,0.0,0.0,0.0,16.0,88.0,0.0,1.0,2012-11-06 07:42:59,0,0,0,0,1,1,0,0,1,0,201211,1,125.0
76,79,4223,ARD,48219766388.0,300569726718710,2012-11-01 00:00:00,SEP-REP,2012-11-03 15:54:31,link,b'Vor einem Jahr ist die rechtsextreme Terrorzelle NSU aufgeflogen. Weshalb blieb die rassistische Mordserie so lange unbemerkt? HR 2 DER TAG und tagesschau \xc3\xbcber das Versagen der Sicherheitsbeh\xc3\xb6rden: http://www.ardmediathek.de/hr2/hr2-der-tag?documentId=12325626',b'Der vergessene Rechtsterrorismus | tagesschau.de',http://www.tagesschau.de/inland/einjahrnsu100.html,10.0,0.0,0.0,0.0,0.0,0.0,64.0,4.0,0.0,1.0,2012-11-03 15:54:31,0,0,0,0,1,1,0,0,1,0,201211,1,78.0
77,80,4305,The Morning Star,351763554897760.0,379743932099722,2012-11-01 00:00:00,SEP-REP,2012-11-04 22:02:36,link,b'Letters: Duncan Smith at helm of Tory attack on working-class: \nPaddy Mcguffin was right on the money in his pie... http://t.co/IifaRbtA',b'Duncan Smith at helm of Tory attack on working-class / Letters / Home - Morning Star',http://t.co/IifaRbtA,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2012-11-04 22:02:36,0,0,0,0,1,1,0,0,1,0,201211,0,0.0
78,81,4335,The Morning Star,351763554897760.0,380835395323909,2012-11-01 00:00:00,SEP-REP,2012-11-07 22:33:57,link,"b""Letters: Labour leaders stood by as miners were attacked: \nMick Appleyard's recollection of the battle for Orgre... http://t.co/bd3MS8YU""",b'Labour leaders stood by as miners were attacked / Letters / Home - Morning Star',http://t.co/bd3MS8YU,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2012-11-07 22:33:57,0,0,0,0,1,1,0,0,1,0,201211,0,0.0
79,82,4336,taz,171844246207985.0,381477068606904,2012-11-01 00:00:00,SEP-REP,2012-11-01 17:59:39,link,"b'Ein Jahr NSU\nMorgen erscheint in der taz ein sechseitiges Dossier zur rechtsextremen Terrorzelle NSU und einem beispiellosen Staatsversagen. Mit Analysen, Reportagen und Stimmen der Opferangeh\xc3\xb6rigen. Am Kiosk, eKiosk oder im Abo.\n\n\nJETZT um 19 Uhr beginnt eine Podiumsdiskussion \xe2\x80\x9eBrauner Terror \xe2\x80\x93 Ein Jahr Zwickau, Zwanzig Jahre M\xc3\xb6lln und Lichtenhagen\xe2\x80\x9c im Ballhaus Naunynstra\xc3\x9fe in Berlin-Kreuzberg. Eintritt frei.\n\nDen Livestream dazu findet ihr hier: http://www.boell.de/mediathek/mediathek-stream.html'",b'Sie h\xc3\xa4tten nur hinh\xc3\xb6ren m\xc3\xbcssen',http://www.taz.de/!104721/,36.0,0.0,0.0,0.0,0.0,0.0,11.0,14.0,0.0,1.0,2012-11-01 17:59:39,0,0,0,0,1,1,0,0,1,0,201211,1,61.0
80,83,4422,Daily Mail,164305410295882.0,436364866423267,2012-11-01 00:00:00,SEP-REP,2012-11-06 07:45:10,photo,"b""\xc2\xa3624 insult to a rape victim: That's all cruel internet bullies must pay after using Twitter to name and vilify girl attacked by footballer Ched Evans - http://bit.ly/SvXT1e\n\nControversial Tory MP Nadine Dorris - who branded Cameron and Osborne 'arrogant posh boys' - heads out to the I'm A Celebrity jungle - http://bit.ly/VPPLcB""",b'Timeline Photos',https://www.facebook.com/DailyMail/photos/a.217033488356407.54440.164305410295882/436364849756602/?type=3,10.0,0.0,0.0,0.0,0.0,0.0,6.0,5.0,0.0,1.0,2012-11-06 07:45:10,0,0,0,0,1,1,1,0,0,2,201211,0,21.0
81,84,4518,RTL,179133132098813.0,477358472287512,2012-11-01 00:00:00,SEP-REP,2012-11-04 16:39:32,link,"b'Hallo Leute,\nbei \xe2\x80\x9eSchwiegertochter gesucht\xe2\x80\x9c haben Kuschelb\xc3\xa4r Mikey und Herzdame Nadine viel Spa\xc3\x9f beim gemeinsamen Fotoshooting. Stefan und seine Damen freuen sich \xc3\xbcber ihre Zungenbrecher-Parade und Ingo ist gl\xc3\xbccklich \xc3\xbcber erste Erfolge bei Papa Lutz\xe2\x80\x98 Verkehrsunterricht. Nicht ganz so viel Grund zum Freuen haben dagegen Klaus und Maik, bei denen es nicht so rund l\xc3\xa4uft...'","b'Schwiegertochter gesucht: Nachhilfe in Sachen ""Verkehr"" f\xc3\xbcr Ingo'",http://www.rtl.de/video/channelplayer/index/id/242925,43.0,0.0,0.0,0.0,0.0,0.0,47.0,2.0,0.0,1.0,2012-11-04 16:39:32,0,0,0,0,1,1,0,0,1,0,201211,0,92.0
82,85,4705,KSTA,141063022950.0,10151112758607951,2012-11-01 00:00:00,SEP-REP,2012-11-02 18:53:00,photo,"b'NSU-Skandal: Ein Jahr nach der Aufdeckung der rechtsextremistischen Mordserie tun sich die Beh\xc3\xb6rden weiter schwer, die Hintergr\xc3\xbcnde der Taten aufzukl\xc3\xa4ren. Manche Fragen werden wohl nie beantwortet werden.\r\n\r\nRosenmontagszug: Der K\xc3\xb6lner Karneval beschreitet neue Wege. Wegen der Opern-Baustelle werden die Jecken im n\xc3\xa4chsten Jahr \xc3\xbcber die Ringe umgeleitet.\r\n\r\nAbsteiger gegen Aufsteiger: Am Sonntag geht des f\xc3\xbcr den 1. FC K\xc3\xb6ln gegen den VfR Aalen.\r\n\r\nUnd: Der Tabak-Krimi: Merkw\xc3\xbcrdige Vorkommnisse in der Zigarettenindustrie lassen die Macht der Tabak-Lobby erahnen.\r\n\r\nDas und mehr ab sofort in unserer aktuellen Tablet-Ausgabe.\r\nViel Spa\xc3\x9f beim Lesen!'",b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10151112758547951/?type=3,5.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,2012-11-02 18:53:00,0,0,0,0,1,1,1,0,0,2,201211,0,7.0
83,86,4844,ZDF heute,112784955679.0,10151241219075680,2012-11-01 00:00:00,SEP-REP,2012-11-04 09:03:15,photo,b'Jahrestag NSU-Terror: Die Aufarbeitung kommt nicht voran http://bit.ly/Tq7CqB \r\n\r\nIn unserer interaktiven Chronik zeigen wir die Spur des Versagens mit Blick auf die staatlichen Organe. Im Artikel gehen wir auf die Krise des Verfassungsschutzes und die politische Aufarbeitung ein.',b'Timeline Photos',https://www.facebook.com/ZDFheute/photos/a.275406990679.144521.112784955679/10151241219050680/?type=3,16.0,0.0,0.0,0.0,0.0,0.0,28.0,10.0,0.0,1.0,2012-11-04 09:03:15,0,0,0,0,1,1,1,0,0,2,201211,1,54.0
84,87,4848,ZDF heute,112784955679.0,10151245061105680,2012-11-01 00:00:00,SEP-REP,2012-11-06 07:34:14,photo,b'Unsere Themen des Tages (6.11.2012)\r\n\r\n\xe2\x80\x93 US-Wahl: Die Amerikaner bestimmen einen neuen Pr\xc3\xa4sidenten - wir berichten die ganze Nacht live\r\n\xe2\x80\x93 Auf dem Pr\xc3\xbcfstand: Karlsruhe verhandelt \xc3\xbcber die Anti-Terror-Datei\r\n\xe2\x80\x93 Google f\xc3\xbcr Minis: Wie suchen Kinder im Internet?\r\n\xe2\x80\x93 Champions League: Dortmund und Schalke k\xc3\xb6nnen Achtelfinale sichern\r\n\r\nhttp://www.heute.de/',b'Themen des Tages',https://www.facebook.com/ZDFheute/photos/a.10151362882745680.500680.112784955679/10151245061090680/?type=3,52.0,0.0,0.0,0.0,0.0,0.0,20.0,5.0,0.0,1.0,2012-11-06 07:34:14,0,0,0,0,1,1,1,0,0,2,201211,1,77.0
85,88,4871,WELT,97515118114.0,10151294688313115,2012-11-01 00:00:00,SEP-REP,2012-11-01 06:00:05,photo,"b'WAS HEUTE PASSIERT: Donnerstag, 1. November\r\nAlle Berichte im Laufe des Tages auf www.welt.de\r\n\r\n09.30 Uhr \xe2\x80\x93 Politik: Debatte \xc3\xbcber die Neonazi-Terrorzelle NSU \xe2\x80\x93 Ein Jahr nach der Enttarnung, \xe2\x80\x9eNSU \xe2\x80\x93 ein Jahr danach\xe2\x80\x9c, u.a. Mit dem Bundesvorsitzenden der T\xc3\xbcrkischen Gemeinde in Deutschland, Kenan Kolat und dem Vorsitzenden des Untersuchungsausschusses des Bundestages, Sebastian Edathy \r\n\r\n10.00 Uhr \xe2\x80\x93 Wirtschaft: Aufsichtsratssitzung der Flughafengesellschaft Berlin Brandenburg, u.a. zum Fortgang der Bauarbeiten am k\xc3\xbcnftigen Hauptstadtflughafen\r\n\r\n12.30 Uhr \xe2\x80\x93 Politik: Irischer Ministerpr\xc3\xa4sident Enda Kenny zu Besuch in Berlin, Empfang durch Bundeskanzlerin Angela Merkel (CDU)\r\n\r\n13.00 Uhr \xe2\x80\x93 Politik: Bundesjustizministerin Sabine Leutheusser-Schnarrenberger (FDP) in der T\xc3\xbcrkei (bis 02.11.2012), Besuch im Camp f\xc3\xbcr syrische Fl\xc3\xbcchtlinge in Kilos \r\n\r\n13.15 Uhr \xe2\x80\x93 Wissen: Geplanter Au\xc3\x9feneinsatz an der Internationalen Raumstation ISS\r\n\r\n15.15 Uhr \xe2\x80\x93 Fernsehen: PK zur ZDF-Fernsehshow \xe2\x80\x9eWetten, dass..?\xe2\x80\x9c aus Bremen mit Moderator Markus Lanz. Es ist die zweite Sendung von Lanz als Nachfolger von Thomas Gottschalk\r\n\r\n16.00 Uhr \xe2\x80\x93 Wirtschaft: US-Verbraucherzuversicht Oktober 2012\r\n\r\nPanorama: Moskau startet Pilotversuch f\xc3\xbcr Parkgeb\xc3\xbchren in der Innenstadt. Die neue Regelung soll die Parkplatz-Anarchie beheben und Geld f\xc3\xbcr Infrastrukturprojekte bringen. Doch Anwohner laufen gegen das Vorhaben Sturm.\r\n\r\nWirtschaft: Diverse Quartalszahlen \xe2\x80\x93 16.00 Uhr Exxon Mobil Zahlen 3. Quartal, 23.00 Uhr LinkedIn Zahlen 3. Quartal, 23.00 Uhr Starbucks Zahlen 3. Quartal, 15.30 Uhr Kellogg Zahlen 3. Quartal'",b'Timeline Photos',https://www.facebook.com/welt/photos/a.298879548114.181606.97515118114/10151294688288115/?type=3,6.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,2012-11-01 06:00:05,0,0,0,0,1,1,1,0,0,2,201211,1,8.0
86,89,4902,The Guardian,10513336322.0,10151300552676323,2012-11-01 00:00:00,SEP-REP,2012-11-03 18:00:00,photo,b'His jump from the edge of space was watched by millions. Now action man Felix Baumgartner wants to talk about the terror he overcame to break the sound barrier http://gu.com/p/3bhnm?CMP=NECNETTXT766',b'Timeline Photos',https://www.facebook.com/theguardian/photos/a.10150338151436323.391595.10513336322/10151299605861323/?type=3,203.0,0.0,0.0,0.0,0.0,0.0,25.0,42.0,0.0,1.0,2012-11-03 18:00:00,0,0,0,0,1,1,1,0,0,2,201211,1,270.0
87,90,5006,Daily Express,129617873765147.0,514133485313582,2013-04-29 00:00:00,RIGHT,2013-05-01 12:04:26,photo,b'Why can Britain not be more like France when dealing with extremists like Abu Qatada? \r\n\r\nhttp://www.express.co.uk/news/world/396206/Why-can-Britain-not-be-more-like-France-when-dealing-with-extremists-like-Abu-Qatada',b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/514133475313583/?type=3,53.0,0.0,0.0,0.0,0.0,0.0,43.0,34.0,0.0,1.0,2013-05-01 12:04:26,0,0,1,0,0,0,1,0,0,2,201305,0,130.0
88,91,5052,Metro,117118184990145.0,521586084543351,2013-04-29 00:00:00,RIGHT,2013-04-30 18:51:30,photo,b'Video: Mugging victim turns the tables on his shotgun-wielding attacker by snatching his gun and chasing him down the road.\r\n\r\nWatch here: http://metro.co.uk/shotgun',b'Timeline Photos',https://www.facebook.com/MetroUK/photos/a.198482223520407.44369.117118184990145/521586074543352/?type=3,272.0,0.0,0.0,0.0,0.0,0.0,26.0,69.0,0.0,1.0,2013-04-30 18:51:30,0,0,1,0,0,0,1,0,0,2,201304,0,367.0
89,92,5068,Metro,117118184990145.0,522641504437809,2013-04-29 00:00:00,RIGHT,2013-05-03 18:39:25,photo,"b""A five-week-old kitten set on fire in a cruel attack is on the road to recovery.\r\n\r\nVideo has emerged of Justin, as he is known now, playing with vets, who say he's not yet out of the woods.\r\n\r\nPictures, video and story: http://metro.co.uk/kittenrecovery""",b'Timeline Photos',https://www.facebook.com/MetroUK/photos/a.198482223520407.44369.117118184990145/522602564441703/?type=3,720.0,0.0,0.0,0.0,0.0,0.0,695.0,767.0,0.0,1.0,2013-05-03 18:39:25,0,0,1,0,0,0,1,0,0,2,201305,0,2182.0
90,93,5069,Metro,117118184990145.0,523202794381680,2013-04-29 00:00:00,RIGHT,2013-05-05 14:03:48,link,b'A man was forced to bite a dog to stop it from attacking his wife after it ripped off her nose in a horrific attack.',b'Man bites dog to save his wife after it rips off her nose',http://metro.co.uk/2013/05/05/man-bites-dog-to-save-his-wife-after-the-animal-rips-off-her-nose-3713469/,69.0,0.0,0.0,0.0,0.0,0.0,32.0,14.0,0.0,1.0,2013-05-05 14:03:48,0,0,1,0,0,0,0,0,1,0,201305,0,115.0
91,94,5104,Monitor,186702484702033.0,541260449246233,2013-04-29 00:00:00,RIGHT,2013-04-30 12:17:26,status,"b'Hier die geplanten Themen unserer Sendung am Donnerstag, den 02.05.2013 um 21:45 Uhr im Ersten:\n\n1. Chemiewaffen in Syrien: Wer profitiert von der PR des Krieges?\n\n2. Schuldenkrise: Ein Rechenfehler, der Deutschland teuer zu stehen kommt\n\n3. Krankenhauschaos: zwischen \xc3\x9cberversorgung und Pflegenotstand\n\n4. Entwicklungshilfeministerium: Ein Versorgungsparadies f\xc3\xbcr FDP-Mitglieder?\n\n5. Extremisten im Knast: Kein Geld f\xc3\xbcr Aussteigerprogramm'",missing_value,missing_value,64.0,0.0,0.0,0.0,0.0,0.0,8.0,27.0,0.0,1.0,2013-04-30 12:17:26,0,0,1,0,0,0,0,0,0,0,201304,0,99.0
92,95,5108,Monitor,186702484702033.0,542102149162063,2013-04-29 00:00:00,RIGHT,2013-05-02 14:12:26,link,"b'Hier unsere Themen heute Abend um 21:45 Uhr im Ersten:\n\n1. Chemiewaffen in Syrien: Wer profitiert von der PR des Krieges?\n\n2. Schuldenkrise: Ein Rechenfehler, der Deutschland teuer zu stehen kommt\n\n3. Entwicklungshilfeministerium: Ein Versorgungsparadies f\xc3\xbcr FDP-Mitglieder?\n\n4. Extremisten im Knast: Kein Geld f\xc3\xbcr Aussteigerprogramm\n\nMONITOR im Kreuzverh\xc3\xb6r live -> Direkt im Anschluss an die Sendung geht es auf www.monitor.de im Livestream weiter: Rufen Sie uns an! Stellen Sie Ihre Fragen und diskutieren Sie live mit den MONITOR-Autoren, die im Studio auf Sie warten. Kritisch, kontrovers, konstruktiv. Zuschauer-Telefon: 0221 - 56789 800 / E-Mail: monitor@wdr.de'",b'DasErste.de - Monitor',http://monitor.de/,93.0,0.0,0.0,0.0,0.0,0.0,18.0,33.0,0.0,1.0,2013-05-02 14:12:26,0,0,1,0,0,0,0,0,1,0,201305,0,144.0
93,96,5182,RTL,179133132098813.0,600052160006906,2013-04-29 00:00:00,RIGHT,2013-05-02 11:00:01,link,"b'Hallo DSDS-Fans,\n\nbei ""Deutschland sucht den Superstar"" geht es mit Riesenschritten in Richtung Finale. Die letzten drei Kandidaten, Beatrice, Ricardo und Lisa k\xc3\xa4mpfen um den Titel. Jetzt durften sie schon einmal kurz als Sieger posieren, bei einem Fotoshooting f\xc3\xbcr Deutschlands gr\xc3\xb6\xc3\x9fte Jugendzeitschrift, die Bravo.\n\nWas glaubt ihr, wer beim Shooting wohl schon das gr\xc3\xb6\xc3\x9fte Starpotential zeigte?'","b'DSDS: ""Bravo""-Shooting f\xc3\xbcr das Siegerfoto'",http://www.rtl.de/video/channelplayer/index/id/269972,111.0,0.0,0.0,0.0,0.0,0.0,32.0,2.0,0.0,1.0,2013-05-02 11:00:01,0,0,1,0,0,0,0,0,1,0,201305,0,145.0
94,97,5229,Sky News,164665060214766.0,643834298964504,2013-04-29 00:00:00,RIGHT,2013-04-30 12:15:29,video,b'An armed robber in New Orleans experienced what it was like to come under attack when the man he was trying to rob gave him a taste of his own medicine.\n\nhttp://news.sky.com/story/1084931/victim-fights-back-during-new-orleans-robbery',b'Victim Fights Back During New Orleans Robbery',https://www.facebook.com/skynews/videos/643834298964504/,779.0,0.0,0.0,0.0,0.0,0.0,147.0,421.0,0.0,1.0,2013-04-30 12:15:29,0,0,1,0,0,0,0,1,0,1,201304,0,1347.0
95,98,5309,KSTA,141063022950.0,10151403499507951,2013-04-29 00:00:00,RIGHT,2013-05-02 19:45:26,photo,"b'Mit der Er\xc3\xb6ffnung von bis zu 41 neuen Kitas will die Stadt das Betreuungsangebot f\xc3\xbcr Kleinkinder verbessern. Doch trotz der Ma\xc3\x9fnahme wird das Angebot wohl nicht ausreichen, um die enorme Nachfrage abzudecken. Wir haben f\xc3\xbcr die Titelgeschichte unserer aktuellen Tablet-Ausgabe den Kita-Check gemacht \xe2\x80\x93 f\xc3\xbcr jeden Stadtteil mit Zahlen und Fakten:\r\n\r\nhttp://tinyurl.com/crfgazt\r\n\r\nWeiterhin in der Ausgabe:\r\n\r\nVerhaftungen in Boston\r\nDie Ermittlungen nach dem Anschlag haben sich ausgeweitet. Drei Studenten sind in Haft. Sie sollen den j\xc3\xbcngeren der mutma\xc3\x9flichen Bombenleger gedeckt haben.\r\n \r\nDeutsches Finale\r\nZum ersten Mal in der Geschichte des Fu\xc3\x9fballs sind zwei deutsche Mannschaften in das Finale eingezogen. Erleben wir derzeit den Beginn einer neuen \xc3\x84ra?\r\n \r\nSpargelstechen im Selbstversuch\r\nAuf dem Bornheimer Hof von Bauer Ritter werden jedes Jahr 80 Tonnen Spargel geerntet. Unsere Autorin hat die Arbeit einen Tag lang begleitet.'",b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10151403499467951/?type=3,12.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,2013-05-02 19:45:26,0,0,1,0,0,0,1,0,0,2,201305,0,14.0
96,99,5313,KSTA,141063022950.0,10151407377602951,2013-04-29 00:00:00,RIGHT,2013-05-05 18:28:17,photo,b'Ab sofort in unserer aktuellen Tablet-Ausgabe:\r\n\r\nAm Montag beginnt der Prozess gegen Beate Zsch\xc3\xa4pe und vier mutma\xc3\x9fliche NSU-Unterst\xc3\xbctzer. Die Hinterbliebenen der Terror-Opfer haben hohe Erwartungen. Lesen Sie hier unsere Titelgeschichte: http://tinyurl.com/cy6pqcd\r\n\r\nAu\xc3\x9ferdem in unserer Ausgabe:\r\n\r\nK\xc3\xa4mpferische FDP: Beim Sonderparteitag in N\xc3\xbcrnberg treten die Liberalen geschlossen auf.\r\n\r\nBesuch im Beet: In Holweide entsteht seit einem Jahr die neue Kleingarten-Anlage \xe2\x80\x9eIm Merheimer Felde\xe2\x80\x9c.\r\n\r\nScherben der Saison: 365 Tage nach dem Abstieg hat der FC durch das 1:2 beim VfL Bochum den Wiederaufstieg so gut wie verspielt.\r\n\r\nUnd ein R\xc3\xbcckblick: 1943 zerst\xc3\xb6rten britische Bomben die M\xc3\xb6hnetalsperre \xe2\x80\x93 und l\xc3\xb6sten damit eine Flutkatastrophe aus.',b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10151407377562951/?type=3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2013-05-05 18:28:17,0,0,1,0,0,0,1,0,0,2,201305,1,2.0
97,100,5427,SPIEGEL ONLINE,38246844868.0,10151558791129869,2013-04-29 00:00:00,RIGHT,2013-05-04 08:40:32,link,"b'Israel hat Donnerstagnacht einen Angriff auf Syrien geflogen. Dabei soll eine Waffenlieferung f\xc3\xbcr die radikalislamische Hisbollah im Libanon zerst\xc3\xb6rt worden sein. US-Pr\xc3\xa4sident Obama hat indes eine Bodenoffensive seiner Truppen ausgeschlossen, weitere Entscheidungen stehen noch aus.'",b'B\xc3\xbcrgerkrieg in Syrien: Obama lehnt Einsatz von US-Bodentruppen ab - SPIEGEL ONLINE',http://www.spiegel.de/politik/ausland/buergerkrieg-in-syrien-obama-lehnt-einsatz-von-us-bodentruppen-ab-a-898047.html,47.0,0.0,0.0,0.0,0.0,0.0,31.0,14.0,0.0,1.0,2013-05-04 08:40:32,1,0,0,0,0,0,0,0,1,0,201305,0,92.0
98,101,5509,The Guardian,10513336322.0,10151627852876323,2013-04-29 00:00:00,RIGHT,2013-05-03 09:57:46,photo,"b'Jeff Hanneman, co-founder of Slayer, dies of liver failure following spider bite which had left him with necrotising fasciitis, a flesh-eating disease which attacks subcutaneous tissue.\r\n\r\nThe band was known as one of the ""big four"" thrash metal groups of the 1980s, along with Anthrax, Megadeth and Metallica.\r\n\r\nMore on the story: http://gu.com/p/3ft3c/tw?CMP=SOCNETTXT6966\r\n\r\nPhotograph: Shirlaine Forrest/WireImage'",b'Timeline Photos',https://www.facebook.com/theguardian/photos/a.10150338151436323.391595.10513336322/10151627852851323/?type=3,144.0,0.0,0.0,0.0,0.0,0.0,37.0,191.0,0.0,1.0,2013-05-03 09:57:46,0,0,1,0,0,0,1,0,0,2,201305,0,372.0
99,102,5554,ITV,299803460091.0,10152793227660092,2013-04-29 00:00:00,RIGHT,2013-04-29 08:52:15,video,"b""Monday, you're here again, but wait, we don't hate you, well not anymore...\n\nHere at ITV Towers we Laugh in the face of Mondays and end its reign of terror.""",b'Laugh In The Face Of Mondays',https://www.youtube.com/watch?v=Q4UOyLtc4MQ,8.0,0.0,0.0,0.0,0.0,0.0,8.0,1.0,0.0,1.0,2013-04-29 08:52:15,0,0,1,0,0,0,0,1,0,1,201304,1,17.0
100,103,5621,Daily Express,129617873765147.0,522353904491540,2013-05-22 00:00:00,ISLAMIST,2013-05-22 13:31:45,photo,"b'Ed Miliband wants Google to stop going to ""extraordinary lengths"" to avoid tax, and has also criticised David Cameron for not doing enough to close loop holes: http://www.express.co.uk/news/uk/401698/Ed-Miliband-attacks-Google-for-wrong-behaviour-on-tax-avoidance'",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/522353894491541/?type=3,8.0,0.0,0.0,0.0,0.0,0.0,13.0,2.0,0.0,1.0,2013-05-22 13:31:45,1,0,0,0,0,0,1,0,0,2,201305,0,23.0
101,104,5624,Daily Express,129617873765147.0,524670277593236,2013-05-22 00:00:00,ISLAMIST,2013-05-27 10:03:36,photo,"b'DAVID CAMERON last night faced calls for suspected Islamist fanatics to be rounded up and deported, jailed or put under house arrest. http://www.express.co.uk/news/uk/402900/Time-to-lock-up-hate-preachers'",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/524670270926570/?type=3,194.0,0.0,0.0,0.0,0.0,0.0,109.0,83.0,0.0,1.0,2013-05-27 10:03:36,1,0,0,0,0,0,1,0,0,2,201305,0,386.0
102,105,5626,Daily Express,129617873765147.0,524778994249031,2013-05-22 00:00:00,ISLAMIST,2013-05-27 14:08:26,photo,"b'Attacks on mosques are playing into the hands of terrorists, according to an MP who has had petrol bombs launched at an Islamic centre in his constituency. http://www.express.co.uk/news/uk/402970/MP-calls-attacks-on-mosques-simple-stupidity'",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/524778977582366/?type=3,17.0,0.0,0.0,0.0,0.0,0.0,35.0,9.0,0.0,1.0,2013-05-27 14:08:26,1,0,0,0,0,0,1,0,0,2,201305,1,61.0
103,106,5631,Daily Mail,164305410295882.0,525305827529170,2013-05-22 00:00:00,ISLAMIST,2013-05-23 08:00:08,photo,"b""'I wasn't scared. Better me than a child': Incredible courage of the woman Cub Scout leader who confronted knife-wielding Islamic fanatic moments after he had slaughtered soldier in London street http://bit.ly/120y43t\n\nDEBATE: Woolwich attack: Would you have been brave enough to intervene? http://bit.ly/13KRGmk""",b'Timeline Photos',https://www.facebook.com/DailyMail/photos/a.217033488356407.54440.164305410295882/525305827529170/?type=3,1014.0,0.0,0.0,0.0,0.0,0.0,217.0,435.0,0.0,1.0,2013-05-23 08:00:08,1,0,0,0,0,0,1,0,0,2,201305,0,1666.0
104,107,5645,Metro,117118184990145.0,529029977132295,2013-05-22 00:00:00,ISLAMIST,2013-05-22 17:12:06,link,b'Woolwich update:\n\nThe man who has died is believed to be a serving soldier.\n\nIt is understood that the incident is being regarded as a potential terrorist attack.\n\nDavid Cameron has called a meeting of the government\xe2\x80\x99s emergency committee.\n\nMore details here:',b'Woolwich killing \xe2\x80\x98terror links\xe2\x80\x99 probed as David Cameron calls Cobra meeting',http://metro.co.uk/2013/05/22/woolwich-killing-could-be-terror-attack-as-david-cameron-calls-cobra-meeting-3805203/?ITO=facebook,69.0,0.0,0.0,0.0,0.0,0.0,108.0,79.0,0.0,1.0,2013-05-22 17:12:06,1,0,0,0,0,0,0,0,1,0,201305,1,256.0
105,108,5647,Metro,117118184990145.0,529347600433866,2013-05-22 00:00:00,ISLAMIST,2013-05-23 16:16:24,photo,"b""The MOD has named the soldier who died in the Woolwich attack as 25-year-old Drummer Lee Rigby.\r\n\r\nColleagues say the father of a two-year-old was an 'extremely popular and witty soldier'.\r\n\r\nFull story here: http://bit.ly/13M8iKJ""",b'Timeline Photos',https://www.facebook.com/MetroUK/photos/a.198482223520407.44369.117118184990145/529347583767201/?type=3,2005.0,0.0,0.0,0.0,0.0,0.0,616.0,1669.0,0.0,1.0,2013-05-23 16:16:24,1,0,0,0,0,0,1,0,0,2,201305,0,4290.0
106,109,5653,Metro,117118184990145.0,530089650359661,2013-05-22 00:00:00,ISLAMIST,2013-05-25 16:47:23,link,"b'Racially aggravated abuse and assaults on Muslims has increased by more than ten times in the days since the Woolwich attack on soldier Lee Rigby, watchdog Faith Matters has claimed.'",b'Muslim abuses sky-rocket since Woolwich',http://metro.co.uk/2013/05/25/abuse-of-muslims-increases-tenfold-since-woolwich-attack-on-lee-rigby-claims-watchdog-3808485/,107.0,0.0,0.0,0.0,0.0,0.0,247.0,43.0,0.0,1.0,2013-05-25 16:47:23,1,0,0,0,0,0,0,0,1,0,201305,0,397.0
107,110,5655,Metro,117118184990145.0,530337690334857,2013-05-22 00:00:00,ISLAMIST,2013-05-26 09:29:20,photo,b'Victims of the Boston marathon bombings have been joined by thousands of athletes to finish the final mile of the famous race over a month after three people were killed in an attack on the event.\r\n\r\nRead on for more on the emotional scenes in Boston - http://bit.ly/10sKkqr',b'Timeline Photos',https://www.facebook.com/MetroUK/photos/a.198482223520407.44369.117118184990145/530337683668191/?type=3,420.0,0.0,0.0,0.0,0.0,0.0,8.0,36.0,0.0,1.0,2013-05-26 09:29:20,1,0,0,0,0,0,1,0,0,2,201305,0,464.0
108,111,5676,SWR Aktuell,112906815414721.0,543101942395204,2013-05-22 00:00:00,ISLAMIST,2013-05-24 15:43:28,link,b'Die 18-Uhr-Ausgabe von LS aktuell RP in 100 Sekunden mit den Themen:\n\nZwei Verd\xc3\xa4chtige nach Angriff auf Moscheeverein ++ Hochwasserschutz in der S\xc3\xbcdpfalz ++ Lkw auf A 61 umgekippt ++ FCK gibt sich k\xc3\xa4mpferisch',b'Landesschau aktuell RP in 100 Sekunden (18 Uhr)',http://www.swr.de/landesschau-aktuell-rp,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2013-05-24 15:43:28,1,0,0,0,0,0,0,0,1,0,201305,0,2.0
109,112,5690,WDR,124207927630198.0,547999995250987,2013-05-22 00:00:00,ISLAMIST,2013-05-25 10:18:55,link,b'Mehr als 50.000 BVB-Fans erwartet allein Dortmund heute Abend zum Rudelgucken. Und dann sorgt eine Terrorwarnung f\xc3\xbcr Aufregung ... (YD)',b'Dortmund vor dem Champions-League-Finale',http://www1.wdr.de/themen/sport/sp_clfinale/bvb403.html,15.0,0.0,0.0,0.0,0.0,0.0,5.0,4.0,0.0,1.0,2013-05-25 10:18:55,1,0,0,0,0,0,0,0,1,0,201305,1,24.0
110,113,5700,Monitor,186702484702033.0,552617151443896,2013-05-22 00:00:00,ISLAMIST,2013-05-27 07:38:41,link,"b'TV-Tipp! Heute Abend um 22 Uhr die story im WDR-Fernsehen: \n""Alle sind noch da, nur die Toten nicht - 20 Jahre nach dem Brandanschlag in Solingen""\n\nAm 29. Mai 1993 wurden bei dem Brandanschlag in Solingen f\xc3\xbcnf T\xc3\xbcrkinnen ermordet. Die T\xc3\xa4ter waren vier Jugendliche aus der Nachbarschaft. F\xc3\xbcr die Stadt und ihre Bewohner im Bergischen Land war diese Nacht ein tiefer Einschnitt.\n\nEin Film von Pagonis Pagonakis, Eva Sch\xc3\xb6tteldreier und Charlotte Schwalb.'","b'Alle sind noch da, nur die Toten nicht'",http://www.wdr.de/tv/diestory/sendungsbeitraege/2013/0527/solingen.jsp,21.0,0.0,0.0,0.0,0.0,0.0,1.0,13.0,0.0,1.0,2013-05-27 07:38:41,1,0,0,0,0,0,0,0,1,0,201305,0,35.0
111,114,5709,London Evening Standard,165348596842143.0,553818561328476,2013-05-22 00:00:00,ISLAMIST,2013-05-23 12:56:12,photo,"b'The heroism of three women who risked their lives to confront the Woolwich terrorists was today hailed by politicians calling for them to receive awards.\r\n\r\nIn a show of ""remarkable"" courage one was pictured shielding the fallen victim with her own body as another stood nearby: http://bit.ly/1883tlO'",b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/553818541328478/?type=3,164.0,0.0,0.0,0.0,0.0,0.0,20.0,67.0,0.0,1.0,2013-05-23 12:56:12,1,0,0,0,0,0,1,0,0,2,201305,1,251.0
112,115,5788,The Times and The Sunday Times,147384458624178.0,626844294011523,2013-05-22 00:00:00,ISLAMIST,2013-05-22 22:23:30,photo,"b""Thursday's Times front page:\r\n\r\nSoldier hacked to death in London terror attack\r\nhttp://thetim.es/12uHnUg\r\n\r\nFor the latest updates follow us on twitter: www.twitter.com/thetimes.""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/626844274011525/?type=3,38.0,0.0,0.0,0.0,0.0,0.0,41.0,61.0,0.0,1.0,2013-05-22 22:23:30,1,0,0,0,0,0,1,0,0,2,201305,1,140.0
113,116,5799,The Times and The Sunday Times,147384458624178.0,629785273717425,2013-05-22 00:00:00,ISLAMIST,2013-05-28 21:48:16,photo,"b""In tomorrow's Times: Lib Dems 'thwart terror Bill', Everest 60 years on and Louise Mensch - 'Why I really moved'""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/629785253717427/?type=3,19.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,2013-05-28 21:48:16,1,0,0,0,0,0,1,0,0,2,201305,1,25.0
114,117,5821,Sky News,164665060214766.0,654661164548484,2013-05-22 00:00:00,ISLAMIST,2013-05-23 09:02:46,photo,"b'A mother-of-two, who confronted one of the two suspected Woolwich killers, said he told her they wanted ""to start a war in London tonight.""\r\n\r\nIngrid Loyau-Kennett, who is a cub scout leader with training in first aid, told the pair to hand over their weapons and warned them: ""You are going to lose.""\r\n\r\nhttp://news.sky.com/story/1094551/woolwich-terror-woman-confronts-attackers'",b'Timeline Photos',https://www.facebook.com/skynews/photos/a.213165348698070.67079.164665060214766/654661154548485/?type=3,1146.0,0.0,0.0,0.0,0.0,0.0,380.0,339.0,0.0,1.0,2013-05-23 09:02:46,1,0,0,0,0,0,1,0,0,2,201305,1,1865.0
115,118,5901,ARD,48219766388.0,10151382731726389,2013-05-22 00:00:00,ISLAMIST,2013-05-22 07:39:59,photo,"b'Eine zentrale Frage zur NSU ist bis heute ungekl\xc3\xa4rt: Ab wann wussten Beh\xc3\xb6rden und Politik davon, dass in Deutschland eine rechtsextremistische Terrorgruppe unterwegs ist? ""Report Mainz"" \xc3\xbcber ein Dokument mit h\xc3\xb6chster Geheimhaltung, das diese Frage eindeutig beantwortet: Sie wussten es bereits, bevor der erste Mord geschehen ist: http://www.ardmediathek.de/das-erste/report-mainz/rechter-terror?documentId=14826754'",b'Timeline Photos',https://www.facebook.com/ARD/photos/a.10151382730646389.1073741826.48219766388/10151382731681389/?type=3,16.0,0.0,0.0,0.0,0.0,0.0,15.0,11.0,0.0,1.0,2013-05-22 07:39:59,1,0,0,0,0,0,1,0,0,2,201305,1,42.0
116,119,5914,ARD,48219766388.0,10151391834591389,2013-05-22 00:00:00,ISLAMIST,2013-05-28 13:47:54,link,"b'F\xc3\xbcnf Menschen starben beim Brandanschlag in Solingen am 29. Mai 1993, die T\xc3\xa4ter waren Jugendliche aus der Nachbarschaft. Ein R\xc3\xbcckblick - 20 Jahre danach.'","b'Alle sind noch da, nur die Toten nicht - 20 Jahre nach dem Brandanschlag in Solingen'",http://www.ardmediathek.de/wdr-fernsehen/die-story/alle-sind-noch-da-nur-die-toten-nicht-20-jahre-nach-dem?documentId=14924554,9.0,0.0,0.0,0.0,0.0,0.0,57.0,4.0,0.0,1.0,2013-05-28 13:47:54,1,0,0,0,0,0,0,0,1,0,201305,0,70.0
117,120,5936,KSTA,141063022950.0,10151439255707951,2013-05-22 00:00:00,ISLAMIST,2013-05-27 18:28:47,photo,b'Unsere neue Tablet-Ausgabe ist da:\r\n\r\nTopthema:\r\n\r\nSolingens Brandmal\r\nVor 20 Jahren kamen bei dem Anschlag auf das Haus der t\xc3\xbcrkischen Familie Genc f\xc3\xbcnf Menschen ums Leben. Eine Spurensuche\r\n\r\nhttp://tinyurl.com/ouz99lh\r\n\r\n\r\nAu\xc3\x9ferdem:\r\n\r\nAbenteuerpark in d\xc3\xbcnner Luft\r\nDer h\xc3\xb6chste Berg der Welt ist zur Touristenattraktion verkommen.\r\n\r\nDer erste Schritt zum Frieden\r\nDie FARC-Guerilla und die kolumbianische Regierung einigen sich auf eine Agrarreform.\r\n\r\nLeichte Angelegenheit\r\nHeute im Magazin: Rezepte und Tipps f\xc3\xbcr eine kalorienreduzierte Partyk\xc3\xbcche.',b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10151439255677951/?type=3,12.0,0.0,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,2013-05-27 18:28:47,1,0,0,0,0,0,1,0,0,2,201305,0,18.0
118,121,5945,Channel 4 News,6622931938.0,10151454631726939,2013-05-22 00:00:00,ISLAMIST,2013-05-22 15:58:23,photo,"b'""Machete"" attack victim in Woolwich, south London, a ""serving soldier"" - latest: http://www.channel4.com/news/machete-attack-soldier-woolwich-london'",b'Timeline Photos',https://www.facebook.com/Channel4News/photos/a.347140506938.153108.6622931938/10151454631496939/?type=3,12.0,0.0,0.0,0.0,0.0,0.0,51.0,40.0,0.0,1.0,2013-05-22 15:58:23,1,0,0,0,0,0,1,0,0,2,201305,0,103.0
119,122,5946,Channel 4 News,6622931938.0,10151454754346939,2013-05-22 00:00:00,ISLAMIST,2013-05-22 17:31:14,link,"b'An unfolding and serious incident in south-east London this afternoon which now appears to be an act of terrorism; a man reportedly attacked with a machete, the assailants then shot by police. The PM has called it ""truly shocking"" and Theresa May is chairing an emergency Cobra meeting. \nFor all the latest on the Woolwich attack, and to find out what\'s on Channel 4 News tonight at 7PM, sign up to Snowmail'",b'Snowmail - Channel 4 News',http://mailing.channel4.com/public/snowmail/remotebox.jsp,11.0,0.0,0.0,0.0,0.0,0.0,22.0,2.0,0.0,1.0,2013-05-22 17:31:14,1,0,0,0,0,0,0,0,1,0,201305,1,35.0
120,123,5947,Channel 4 News,6622931938.0,10151454761381939,2013-05-22 00:00:00,ISLAMIST,2013-05-22 17:38:59,link,"b'Latest from Woolwich - eyewitness who filmed attackers tells #C4news they said it was ""message to the British government""'","b""Woolwich knife attack: 'serving soldier' dead""",http://www.channel4.com/news/machete-attack-soldier-woolwich-london,4.0,0.0,0.0,0.0,0.0,0.0,32.0,25.0,0.0,1.0,2013-05-22 17:38:59,1,0,0,0,0,0,0,0,1,0,201305,0,61.0
121,124,5948,Channel 4 News,6622931938.0,10151454843486939,2013-05-22 00:00:00,ISLAMIST,2013-05-22 18:48:45,video,missing_value,"b""Woolwich attack 'appalling', says David Cameron""",https://www.youtube.com/watch?v=OSNwpzOtQTM,7.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,1.0,2013-05-22 18:48:45,1,0,0,0,0,0,0,1,0,1,201305,0,17.0
122,125,5952,Channel 4 News,6622931938.0,10151456069431939,2013-05-22 00:00:00,ISLAMIST,2013-05-23 12:16:50,link,missing_value,b'Woolwich attack: suspect known to banned Islamic group',http://www.channel4.com/news/woolwich-attack-who-are-suspects,8.0,0.0,0.0,0.0,0.0,0.0,22.0,6.0,0.0,1.0,2013-05-23 12:16:50,1,0,0,0,0,0,0,0,1,0,201305,0,36.0
123,126,5954,Channel 4 News,6622931938.0,10151456449151939,2013-05-22 00:00:00,ISLAMIST,2013-05-23 17:52:38,link,"b'The MoD has named the victim killed in yesterday\'s attack in Woolwich - Drummer Lee Rigby, known as ""Riggers"". Tonight on Channel4News, Jon Snow is live at the scene in South London. As police reveal the two suspects have been known to police for some time, Home Affairs Correspondent Simon Israel will be looking at how the police investigation is unfolding while Chief Correspondent Alex Thomson and Political Editor Gary Gibbon will have in-depth analysis of the social and political impact for Britain. For sneak previews of all our stories, sign up to Snowmail'",b'Snowmail - Channel 4 News',http://mailing.channel4.com/public/snowmail/remotebox.jsp,2.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,1.0,2013-05-23 17:52:38,1,0,0,0,0,0,0,0,1,0,201305,0,11.0
124,127,6006,RP ONLINE,50327854366.0,10151586574149367,2013-05-22 00:00:00,ISLAMIST,2013-05-22 20:05:05,link,b'Neue Terrorangst in London.',b'Mutma\xc3\x9fliche Islamisten t\xc3\xb6ten Mann mit Machete: Neue Terror-Angst in London',http://www.rp-online.de/panorama/ausland/neue-terror-angst-in-london-1.3415183,1.0,0.0,0.0,0.0,0.0,0.0,7.0,8.0,0.0,1.0,2013-05-22 20:05:05,1,0,0,0,0,0,0,0,1,0,201305,1,16.0
125,128,6023,SPIEGEL ONLINE,38246844868.0,10151593966144869,2013-05-22 00:00:00,ISLAMIST,2013-05-24 06:56:19,link,"b'In einer historischen Rede spricht Barack Obama von einer ""neuen Phase"" im Kampf gegen den Terror. Der US-Pr\xc3\xa4sident m\xc3\xb6chte den Drohnenkrieg einschr\xc3\xa4nken und Guantanamo schlie\xc3\x9fen.'",b'Obama-Rede: Verm\xc3\xa4chtnis eines Drohnenkriegers',http://www.spiegel.de/politik/ausland/us-praesident-obama-schraenkt-drohnenkrieg-ein-will-guantanamo-schliessen-a-901601.html,48.0,0.0,0.0,0.0,0.0,0.0,35.0,6.0,0.0,1.0,2013-05-24 06:56:19,1,0,0,0,0,0,0,0,1,0,201305,1,89.0
126,129,6054,Daily Mirror,6149699161.0,10151617445179162,2013-05-22 00:00:00,ISLAMIST,2013-05-27 21:55:16,photo,"b""Tuesday's front page features an exclusive on a jailed terrorist serving life, Angelina Jolie's new breast cancer heartache plus a mention for Springwatch as it returns to our screens.""",b'Timeline Photos',https://www.facebook.com/dailymirror/photos/a.394365354161.172272.6149699161/10151617445114162/?type=3,141.0,0.0,0.0,0.0,0.0,0.0,90.0,97.0,0.0,1.0,2013-05-27 21:55:16,1,0,0,0,0,0,1,0,0,2,201305,1,328.0
127,130,6102,The Guardian,10513336322.0,10151660432626323,2013-05-22 00:00:00,ISLAMIST,2013-05-23 07:45:29,photo,"b""Today's front page: Woolwich attack: 'you people will never be safe' http://gu.com/p/3g3f5/tw\r\n\r\nInterview: woman who challenged attackers http://gu.com/p/3g3dn/tw\r\n\r\nWitnesses: 'They were hacking at him' http://gu.com/p/3g3d2/tw""",b'Timeline Photos',https://www.facebook.com/theguardian/photos/a.10150338151436323.391595.10513336322/10151660432581323/?type=3,290.0,0.0,0.0,0.0,0.0,0.0,333.0,288.0,0.0,1.0,2013-05-23 07:45:29,1,0,0,0,0,0,1,0,0,2,201305,0,911.0
128,131,6107,The Guardian,10513336322.0,10151662500526323,2013-05-22 00:00:00,ISLAMIST,2013-05-24 15:00:02,photo,b'Stockholm rioting continues for fifth night\r\n\r\nSwedish police seek reinforcements after youths set ablaze cars and attack property and schools in poorer suburbs of capital\r\n\r\nhttp://bit.ly/132BrSV\r\n\r\nPhotograph: Scanpix Sweden/Reuters',b'Timeline Photos',https://www.facebook.com/theguardian/photos/a.10150338151436323.391595.10513336322/10151662290446323/?type=3,133.0,0.0,0.0,0.0,0.0,0.0,49.0,185.0,0.0,1.0,2013-05-24 15:00:02,1,0,0,0,0,0,1,0,0,2,201305,0,367.0
129,132,6134,HNA,237702348824.0,10151708851533825,2013-05-22 00:00:00,ISLAMIST,2013-05-23 07:25:50,link,b'(bas) Das gestrige Attentat ersch\xc3\xbcttert London. Die Terrorangst ist gro\xc3\x9f - und das kurz vor dem Champions League-Finale in Wembley. Was meint ihr dazu?',b'Terrorakt? Attacke mit Machete und Schie\xc3\x9ferei',http://www.hna.de/nachrichten/panorama/schiesserei-london-angreifer-zr-2918987.html,3.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,1.0,2013-05-23 07:25:50,1,0,0,0,0,0,0,0,1,0,201305,1,14.0
130,133,6174,RP ONLINE,50327854366.0,482814258482555,2013-10-08 00:00:00,SEP-REP,2013-10-08 09:54:08,link,"b'D\xc3\xbcsseldorf diskutiert weiter \xc3\xbcber die Kantholz-Attacke in Unterrath. Eine Frage, die dabei eine zentrale Rolle spielt: Was ist eigentlich Notwehr?'",b'Brutale Kantholz-Attacke in D\xc3\xbcsseldorf: Notwehr - was ist erlaubt?',http://www.rp-online.de/region-duesseldorf/duesseldorf/nachrichten/notwehr-was-ist-erlaubt-1.3729980,13.0,0.0,0.0,0.0,0.0,0.0,26.0,4.0,0.0,1.0,2013-10-08 09:54:08,0,0,0,0,1,1,0,0,1,0,201310,0,43.0
131,134,6203,SWR Aktuell,112906815414721.0,585377138190479,2013-10-08 00:00:00,SEP-REP,2013-10-08 09:03:35,link,b'Der Ton im Streit um den Bau des neuen Bisschofssitzes in Limburg wird immer sch\xc3\xa4rfer. Nach Bekanntwerden der Kostenexplosion auf 31 Millionen Euro attackierte ein Mitglied des Verm\xc3\xb6gens- und Verwaltungsrats den Bischof aufs Heftigste.',b'Verwaltungsrat nennt Tebartz-van Elst einen L\xc3\xbcgner',http://www.swr.de/landesschau-aktuell/rp/limburger-bischofsresidenz-teurer/-/id=1682/nid=1682/did=12183276/1c9s8l7/index.html,11.0,0.0,0.0,0.0,0.0,0.0,9.0,5.0,0.0,1.0,2013-10-08 09:03:35,0,0,0,0,1,1,0,0,1,0,201310,0,25.0
132,135,6256,Daily Express,129617873765147.0,596816427045287,2013-10-08 00:00:00,SEP-REP,2013-10-14 14:37:08,photo,"b'Police have arrested a man after he attempted to enter Buckingham Palace with a knife this morning, Scotland Yard confirmed...\r\n\r\nhttp://www.express.co.uk/news/uk/436677/Man-carrying-a-knife-is-arrested-after-incident-at-Buckingham-Palace'",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/596816413711955/?type=3,147.0,0.0,0.0,0.0,0.0,0.0,41.0,33.0,0.0,1.0,2013-10-14 14:37:08,0,0,0,0,1,1,1,0,0,2,201310,0,221.0
133,136,6385,The Daily Star,161612017189003.0,728757273807805,2013-10-08 00:00:00,SEP-REP,2013-10-08 15:19:52,photo,b'VIDEO: Is this amazing knife ping pong clip real or a cleverly done fake? \r\n\r\nWatch and let us know what you think.\r\n\r\nhttp://www.dailystar.co.uk/news/latest-news/343790/VIDEO-Fake-or-real-Is-this-incredible-knife-ping-pong-video-a-fake-You-decide',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/728757267141139/?type=3,6.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,2013-10-08 15:19:52,0,0,0,0,1,1,1,0,0,2,201310,0,8.0
134,137,6392,Sky News,164665060214766.0,729246703756596,2013-10-08 00:00:00,SEP-REP,2013-10-11 14:48:04,photo,"b""'White Widow' Samantha Lewthwaite 'Key' In Al Shabaab. \r\nSky News has obtained a Kenyan intelligence report suggesting the British woman is an important figure in the terror outfit.\r\n\r\nhttp://news.sky.com/story/1152971/white-widow-lewthwaite-key-in-al-shabaab""",b'Timeline Photos',https://www.facebook.com/skynews/photos/a.213165348698070.67079.164665060214766/729246657089934/?type=3,81.0,0.0,0.0,0.0,0.0,0.0,36.0,26.0,0.0,1.0,2013-10-11 14:48:04,0,0,0,0,1,1,1,0,0,2,201310,1,143.0
135,138,6425,The Daily Star,161612017189003.0,732509643432568,2013-10-08 00:00:00,SEP-REP,2013-10-14 20:58:09,photo,"b'Charlotte Church launches scathing attack on the music industry and brands Miley Cyrus and Rihanna as ""unattainable sexbots"".\r\n\r\nhttp://www.dailystar.co.uk/showbiz/345088/Charlotte-Church-brands-Rihanna-and-Miley-Cyrus-unattainable-sexbots'",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/732509626765903/?type=3,58.0,0.0,0.0,0.0,0.0,0.0,6.0,15.0,0.0,1.0,2013-10-14 20:58:09,0,0,0,0,1,1,1,0,0,2,201310,0,79.0
136,139,6642,SPIEGEL ONLINE,38246844868.0,10151889154049869,2013-10-08 00:00:00,SEP-REP,2013-10-13 07:03:31,photo,"b'Der neue DER SPIEGEL besch\xc3\xa4ftigt sich intensiv mit Bischof Franz-Peter Tebartz-van Elst, ""Gottes teurem Diener"".\r\n\r\nWeitere Themen der Ausgabe: Anschlag auf de Maizi\xc3\xa9re und Westerwelle verhindert, Aus von Marlboro-Kampagne bedroht gesamte Zigarettenwerbung, Merkel torpediert Klima-Grenzwerte f\xc3\xbcr Autos.\r\nAlle Vorabmeldungen unter http://www.spiegel.de/spiegel/vorab/'",b'Timeline Photos',https://www.facebook.com/spiegelonline/photos/a.420707594868.190602.38246844868/10151889153959869/?type=3,1129.0,0.0,0.0,0.0,0.0,0.0,267.0,311.0,0.0,1.0,2013-10-13 07:03:31,0,0,0,0,1,1,1,0,0,2,201310,0,1707.0
137,140,6872,Daily Express,129617873765147.0,596816427045287,2013-10-10 00:00:00,SEP-REP,2013-10-14 14:37:08,photo,"b'Police have arrested a man after he attempted to enter Buckingham Palace with a knife this morning, Scotland Yard confirmed...\r\n\r\nhttp://www.express.co.uk/news/uk/436677/Man-carrying-a-knife-is-arrested-after-incident-at-Buckingham-Palace'",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/596816413711955/?type=3,147.0,0.0,0.0,0.0,0.0,0.0,41.0,33.0,0.0,1.0,2013-10-14 14:37:08,0,0,0,0,1,1,1,0,0,2,201310,0,221.0
138,141,6973,Radio Bremen,155771627779074.0,631205800235652,2013-10-10 00:00:00,SEP-REP,2013-10-16 12:00:01,photo,"b'Eigentlich wollten wir nach der Kofferbrand-Attacke in der B\xc3\xbcrgerschaft mal im Selbstversuch pr\xc3\xbcfen, wie gut die Sicherheitsvorkehrungen in anderen wichtigen Bremer Geb\xc3\xa4uden sind. Haben uns dann aber dagegen entschieden, wollen niemanden in die Pfanne hauen...\r\nMehr zu dem Vorfall: http://www.radiobremen.de/politik/nachrichten/reaktionen-brandanschlag-buergerschaft100.html'",b'Timeline Photos',https://www.facebook.com/radiobremen/photos/a.354144851275083.78158.155771627779074/631138053575760/?type=3,4.0,0.0,0.0,0.0,0.0,0.0,5.0,1.0,0.0,1.0,2013-10-16 12:00:01,0,0,0,0,1,1,1,0,0,2,201310,0,10.0
139,142,7012,Sky News,164665060214766.0,729246703756596,2013-10-10 00:00:00,SEP-REP,2013-10-11 14:48:04,photo,"b""'White Widow' Samantha Lewthwaite 'Key' In Al Shabaab. \r\nSky News has obtained a Kenyan intelligence report suggesting the British woman is an important figure in the terror outfit.\r\n\r\nhttp://news.sky.com/story/1152971/white-widow-lewthwaite-key-in-al-shabaab""",b'Timeline Photos',https://www.facebook.com/skynews/photos/a.213165348698070.67079.164665060214766/729246657089934/?type=3,81.0,0.0,0.0,0.0,0.0,0.0,36.0,26.0,0.0,1.0,2013-10-11 14:48:04,0,0,0,0,1,1,1,0,0,2,201310,1,143.0
140,143,7040,The Daily Star,161612017189003.0,732509643432568,2013-10-10 00:00:00,SEP-REP,2013-10-14 20:58:09,photo,"b'Charlotte Church launches scathing attack on the music industry and brands Miley Cyrus and Rihanna as ""unattainable sexbots"".\r\n\r\nhttp://www.dailystar.co.uk/showbiz/345088/Charlotte-Church-brands-Rihanna-and-Miley-Cyrus-unattainable-sexbots'",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/732509626765903/?type=3,58.0,0.0,0.0,0.0,0.0,0.0,6.0,15.0,0.0,1.0,2013-10-14 20:58:09,0,0,0,0,1,1,1,0,0,2,201310,0,79.0
141,144,7287,SPIEGEL ONLINE,38246844868.0,10151889154049869,2013-10-10 00:00:00,SEP-REP,2013-10-13 07:03:31,photo,"b'Der neue DER SPIEGEL besch\xc3\xa4ftigt sich intensiv mit Bischof Franz-Peter Tebartz-van Elst, ""Gottes teurem Diener"".\r\n\r\nWeitere Themen der Ausgabe: Anschlag auf de Maizi\xc3\xa9re und Westerwelle verhindert, Aus von Marlboro-Kampagne bedroht gesamte Zigarettenwerbung, Merkel torpediert Klima-Grenzwerte f\xc3\xbcr Autos.\r\nAlle Vorabmeldungen unter http://www.spiegel.de/spiegel/vorab/'",b'Timeline Photos',https://www.facebook.com/spiegelonline/photos/a.420707594868.190602.38246844868/10151889153959869/?type=3,1129.0,0.0,0.0,0.0,0.0,0.0,267.0,311.0,0.0,1.0,2013-10-13 07:03:31,0,0,0,0,1,1,1,0,0,2,201310,0,1707.0
142,145,7402,WELT,97515118114.0,10151974518958115,2013-10-10 00:00:00,SEP-REP,2013-10-16 06:10:15,photo,"b'WAS HEUTE IN DER WELT PASSIERT: \r\n\r\n09.00 Uhr \xe2\x80\x93 Panorama: Der Bundesgerichtshof verhandelt \xc3\xbcber die Ber\xc3\xbccksichtigung eines Lottogewinns bei einer Scheidung. Eine Frau will von ihrem Ex-Mann ein Viertel eines Lottogewinns: Das Paar trennte sich nach fast 30 Jahren Ehe. Zwei Monate, bevor der Scheidungsantrag bei der jetzigen Ex-Frau ankam, gewann der Mann mit seiner neuen Lebensgef\xc3\xa4hrtin im Lotto fast eine Million Euro.\r\n\r\n09.00 Uhr \xe2\x80\x93 Politik: Berufungsverhandlung gegen Paar, das seine drei schulpflichtigen Kinder aus Glaubens- und Gewissensgr\xc3\xbcnden nicht zur Schule geschickt hat. Das Amtsgericht Fritzlar hatte das Paar im Mai zu einer Geldstrafe von 140 Tagess\xc3\xa4tzen zu je 5 Euro verurteilt.\r\n\r\n09.00 Uhr \xe2\x80\x93 Wirtschaft: Der BGH verk\xc3\xbcndet sein Urteil dar\xc3\xbcber, ob Firmen von einer Bank Auskunft \xc3\xbcber verd\xc3\xa4chtige Kontoinhaber verlangen k\xc3\xb6nnen. \xc3\x9cber die Bank sollten Zahlungen f\xc3\xbcr auf eBay angebotene gef\xc3\xa4lschte Markenprodukte abgewickelt werden (Az.: I ZR 51/12).\r\n\r\n09.30 Uhr \xe2\x80\x93 Politik: 47. Verhandlungstag im NSU-Prozess vor dem Oberlandesgericht M\xc3\xbcnchen. Es geht um die Herkunft der wichtigsten Tatwaffe der Terrorgruppe \xe2\x80\x93 der \xe2\x80\x9eCeska 83\xe2\x80\x9c, mit der die Terroristen neun Menschen ermordeten\r\n\r\n14.00 Uhr \xe2\x80\x93 Panorama: Offizielle Gerichtsanh\xc3\xb6rungen im Fall des bei einem S\xc3\xa4ureanschlag verletzten Ballettchefs des Bolschoi Theaters. Der Start\xc3\xa4nzer Pawel Dmitritschenko soll die Attacke auf Sergej Filin in Auftrag gegeben haben. Angeklagt sind auch der mutma\xc3\x9fliche T\xc3\xa4ter und ein Komplize\r\n\r\n14.00 Uhr \xe2\x80\x93 Wirtschaft: Streit um Bezahlung von Daimler-Betriebsr\xc3\xa4ten vor dem Arbeitsgericht. Unabh\xc3\xa4ngige Betriebsr\xc3\xa4te werfen dem Autokonzern Daimler vor, er bezahle Kollegen der IG Metall bewusst zu hoch. Die Rede ist von Aufschl\xc3\xa4gen von 50 Prozent. Daimler bestreitet das. (Az: 29 Bv 26/13).\r\n\r\n14.30 Uhr \xe2\x80\x93 Politik: EU-Kommission ver\xc3\xb6ffentlicht Fortschrittsbericht \xc3\xbcber die EU-Beitrittskandidaten, darunter auch die T\xc3\xbcrkei. Wegen Demokratie-Defiziten blockieren einige EU-L\xc3\xa4nder, darunter Deutschland und Frankreich, eine EU-Mitgliedschaft der T\xc3\xbcrkei.\r\n\r\n20.15 Uhr \xe2\x80\x93 Fernsehen: Die Eltern der seit sechs Jahren vermissten Madeleine McCann treten in der ZDF-Sendung \xe2\x80\x9eAktenzeichen XY\xe2\x80\x9c auf. Begleitet werden sie von dem Ermittler Andy Redwood von der Metropolitan Police London\r\n\r\nPolitik: Berufungsverhandlung im international kritisierten Fall des russischen Oppositionspolitikers Alexej Nawalny. Der bekannte Blogger war in erster Instanz wegen Veruntreuung zu f\xc3\xbcnf Jahren Haft verurteilt worden. Der 37-J\xc3\xa4hrige spricht von einer Inszenierung des Kreml'",b'Timeline Photos',https://www.facebook.com/welt/photos/a.298879548114.181606.97515118114/10151974518948115/?type=3,47.0,0.0,0.0,0.0,0.0,0.0,7.0,2.0,0.0,1.0,2013-10-16 06:10:15,0,0,0,0,1,1,1,0,0,2,201310,1,56.0
143,146,7425,JUNGE FREIHEIT,13479664941.0,10152249171429942,2013-10-10 00:00:00,SEP-REP,2013-10-15 11:24:30,link,"b'Nach den verst\xc3\xa4rkten Kontrollen von Lampedusa-Fl\xc3\xbcchtlingen in Hamburg haben Linksextremisten der Hansestadt mit Gewalt gedroht. Sollte die Polizei nicht damit aufh\xc3\xb6ren, die Identit\xc3\xa4t der Afrikaner zu \xc3\xbcberpr\xc3\xbcfen, werde die Stadt und der Senat keinen ruhigen Tag mehr erleben. >>'",b'Linksextremisten drohen Hamburg mit Gewalt',http://www.jungefreiheit.de/Single-News-Display-mit-Komm.154+M5ab908f8ddc.0.html,173.0,0.0,0.0,0.0,0.0,0.0,112.0,96.0,0.0,1.0,2013-10-15 11:24:30,0,0,0,0,1,1,0,0,1,0,201310,0,381.0
144,147,7483,Süddeutsche Zeitung,215982125159841.0,534350683322982,2013-11-01 00:00:00,LEFT,2013-11-07 11:27:48,photo,"b'US-Wissenschaftler haben einen bislang unbekannten, aber ziemlich eindrucksvollen Vorfahren des T-Rex vorgestellt: #Lythronax. Sein Name bezieht sich auf die messerscharfen Z\xc3\xa4hne des Fleischfressers und bedeutet in etwa: etwas aufspie\xc3\x9fen, durchbohren. \r\nIn diesem Sinne: Mahlzeit, liebe Leserinnen und Leser!\r\n>>> www.sz.de/1.1812474 \r\n(Foto: Andrey Atuchin)'",b'Timeline Photos',https://www.facebook.com/ihre.sz/photos/a.488243851266999.1073741825.215982125159841/534350673322983/?type=3,66.0,0.0,0.0,0.0,0.0,0.0,3.0,12.0,1.0,2.0,2013-11-07 11:27:48,0,1,0,0,0,0,1,0,0,2,201311,0,81.0
145,148,7503,Metro,117118184990145.0,594984717203487,2013-11-01 00:00:00,LEFT,2013-11-01 20:00:01,link,b'80-year-old man is attacked by an angry bear.\n\nShows the bear who\xe2\x80\x99s boss.',b'80-year-old shepherd beats up bear in berry dispute',http://metro.co.uk/2013/11/01/russian-shepherd-80-survives-fist-fight-with-bear-that-threw-him-off-a-cliff-4170083/,227.0,0.0,0.0,0.0,0.0,0.0,24.0,40.0,1.0,2.0,2013-11-01 20:00:01,0,1,0,0,0,0,0,0,1,0,201311,0,291.0
146,149,7527,taz,171844246207985.0,603731809685891,2013-11-01 00:00:00,LEFT,2013-11-02 09:00:02,photo,"b'Die taz.am wochenende vom 2./3. November 2013\r\n\r\nMonsanto, gr\xc3\xb6\xc3\x9fter Saatgutproduzent der Welt, hat den Krieg verloren. Einen Konsumkrieg gegen die Aktivisten, die keinen Genmais in Deutschland wollen. Die Waffen? Angst, Emp\xc3\xb6rung, Hoffnung. Ein Wirtschafts-Thriller\r\n\r\nBerlin stimmt \xc3\xbcber die Zukunft seines Energienetzes ab. Eine Analyse zum Volksentscheid.\r\n\r\nDas Ende des Cookies: Wie die Werbeindustrie Kunden im Netz noch genauer kennenlernen will.\r\n\r\nLange galten USA und Bundesrepublik als beste Freunde. Unverbr\xc3\xbcchlich, treu, solidarisch. Jetzt steht fest: So ernst k\xc3\xb6nnen es die Amis nicht gemeint haben, schlie\xc3\x9flich haben sie Merkels Handy abgeh\xc3\xb6rt und das Regierungsviertel gleich mit. K\xc3\xb6nnen Staaten Freunde sein?\r\n\r\nDie Botschaft von \xc3\x9cberwachung und Terror ist gleich: Es kann jeden treffen.\r\n\r\nGespr\xc3\xa4ch: Er tr\xc3\xa4gt einen gr\xc3\xbcnen Pulli und f\xc3\xa4llt auch mal hin. Christoph aus der ""Sendung mit der Maus"" wundert sich seit 30 Jahren stellvertretend f\xc3\xbcr seine kleinen Zuschauer \xc3\xbcber die Welt. Im echten Leben hat er auch einen Nachnamen. Ein Gespr\xc3\xa4ch mit Herrn Biemann.\r\n\r\nMit Kolumnen von Bettina Gaus, Isabel Lott, Andreas Fanizadeh, J\xc3\xb6rn Kabisch und Franz Lerchenm\xc3\xbcller.\r\n\r\nhttp://www.taz.de/Ausgabe-vom-2/3-November-2013/!126626/'",b'Timeline Photos',https://www.facebook.com/taz.kommune/photos/a.207013419357734.51100.171844246207985/603439663048439/?type=3,329.0,0.0,0.0,0.0,0.0,0.0,27.0,111.0,1.0,2.0,2013-11-02 09:00:02,0,1,0,0,0,0,1,0,0,2,201311,1,467.0
147,150,7547,Daily Express,129617873765147.0,607951812598415,2013-11-01 00:00:00,LEFT,2013-11-02 10:37:49,photo,"b""You've got to have some guts to do this... but brave Helen stood up to injustice and fought off knife thugs who attempted to steal her car... good on you girl! \r\n\r\nhttp://www.express.co.uk/news/uk/440697/Brave-Helen-fights-off-knife-thugs-as-they-attempt-to-steal-her-BMW""",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/607951795931750/?type=3,220.0,0.0,0.0,0.0,0.0,0.0,33.0,29.0,1.0,2.0,2013-11-02 10:37:49,0,1,0,0,0,0,1,0,0,2,201311,0,282.0
148,151,7582,The Mail,159113120793522.0,612581865446643,2013-11-01 00:00:00,LEFT,2013-11-02 17:11:31,status,b'Yobs attack Scotland World Cup team bus in Cumbria \nhttp://www.nwemail.co.uk/home/scotland-world-cup-team-bus-attacked-in-cumbria-1.1095738 #nwemlive',missing_value,missing_value,7.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,2013-11-02 17:11:31,0,1,0,0,0,0,0,0,0,0,201311,0,10.0
149,152,7621,Monitor,186702484702033.0,623032951068982,2013-11-01 00:00:00,LEFT,2013-11-06 10:29:30,photo,"b'Innenministerium will Internet- und Video\xc3\xbcberwachung ausweiten - Pl\xc3\xa4ne gehen weit \xc3\xbcber Mautdaten-Nutzung hinaus\r\n\r\n+++ aktuelle MONITOR-Pressemeldung vom 06.11.2013 +++\r\n\r\nCDU und CSU wollen die \xc3\x9cberwachung von B\xc3\xbcrgern offenbar massiv ausweiten. Dar\xc3\xbcber berichtet das ARD-Magazin MONITOR (morgen, 21:45 Uhr im Ersten). Aus dem Positionspapier des Innenministeriums f\xc3\xbcr die Koalitionsverhandlungen, das MONITOR vorliegt, geht hervor, dass die Union neben dem Zugriff auf die Maut-Daten auch die Video- und Internet\xc3\xbcberwachung ausbauen will. Dar\xc3\xbcber hinaus sollen die Straftatbest\xc3\xa4nde \xc2\xa7129 und \xc2\xa7129 a StGB (Bildung einer terroristischen/kriminellen Vereinigung) erweitert werden, die der Polizei umfassende \xc3\x9cberwachungsrechte einr\xc3\xa4umen. Das 30seitige Papier sieht einen ganzen Ma\xc3\x9fnahmenkatalog f\xc3\xbcr die Sicherheitsbeh\xc3\xb6rden vor. Vor allem die Versch\xc3\xa4rfung der Internet\xc3\xbcberwachung ist zentrales Anliegen des Positionspapiers. Danach wird eine \xe2\x80\x9eAusleitung des Datenverkehrs an zentralen Internetknoten\xe2\x80\x9c angestrebt. Dadurch sollen mobile Internetnutzer besser \xc3\xbcberwacht werden k\xc3\xb6nnen. Zusammenfassend w\xc3\xbcrden die geplanten Ma\xc3\x9fnahmen eine \xc3\x9cberwachung des Netzverkehrs im Stile der NSA erm\xc3\xb6glichen. \r\n\r\nUnter der \xc3\x9cberschrift \xe2\x80\x9eVerwendung von Videotechnik im \xc3\xb6ffentlichen Raum\xe2\x80\x9c plant die Union au\xc3\x9ferdem mehr Mittel f\xc3\xbcr die Bundespolizei bereit zu stellen, um die Video-\xc3\x9cberwachung von \xc3\xb6ffentlichen Pl\xc3\xa4tzen zu intensivieren. Laut Papier wird eine \xe2\x80\x9eBereitstellung der erforderlichen Haushaltsmittel im Haushaltsgesetz 2014\xe2\x80\x9c gefordert.\r\n\r\nDatensch\xc3\xbctzer \xc3\xbcben scharfe Kritik an den Pl\xc3\xa4nen der Union. \xe2\x80\x9eDie Vorschl\xc3\xa4ge der Union atmen den Geist der Massendaten\xc3\xbcberwachung \xc3\xa1 la NSA\xe2\x80\x9c sagte der Kieler Datenschutzbeauftragte Thilo Weichert dem ARD-Magazin MONITOR. \xe2\x80\x9eEine sch\xc3\xa4rfere Kontrolle der Geheimdienste w\xc3\xa4re notwendig. Aber dazu gibt es leider keinen einzigen Vorschlag in dem Papier, obwohl dies nach dem NSA-Skandal dringend notwendig w\xc3\xa4re\xe2\x80\x9c, kritisierte Weichert.'",b'Timeline Photos',https://www.facebook.com/monitor.wdr/photos/a.326683260703954.72412.186702484702033/623032937735650/?type=3,123.0,0.0,0.0,0.0,0.0,0.0,59.0,243.0,1.0,2.0,2013-11-06 10:29:30,0,1,0,0,0,0,1,0,0,2,201311,1,425.0
150,153,7657,London Evening Standard,165348596842143.0,633850379991960,2013-11-01 00:00:00,LEFT,2013-11-05 09:21:49,photo,"b'Police are hunting a man wanted in connection with the street murder of a woman believed to be working as a prostitute in east London.\r\n\r\nMariana Popa, 24, was attacked and stabbed in the street in Ilford in the early hours of Tuesday last week. She staggered to a nearby chicken takeaway shop where she collapsed. She was taken to an east London hospital where she died: http://bit.ly/1b0Rkzc'",b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/633850366658628/?type=3,28.0,0.0,0.0,0.0,0.0,0.0,16.0,13.0,1.0,2.0,2013-11-05 09:21:49,0,1,0,0,0,0,1,0,0,2,201311,0,57.0
151,154,7661,London Evening Standard,165348596842143.0,634084896635175,2013-11-01 00:00:00,LEFT,2013-11-05 20:00:02,photo,"b""A terror suspect dons a disguise and vanishes, a young Londoner \xe2\x80\x98dies\xe2\x80\x99 fighting for Syrian rebels and videos appear of a preacher praising holy war. \r\n\r\nWhat is going on at the An-Noor in Acton, asks Joshi Herrmann, the mosque whose 'buzz' is attracting young London Muslims? http://bit.ly/1b1RLJr""",b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/633960199980978/?type=3,17.0,0.0,0.0,0.0,0.0,0.0,14.0,4.0,1.0,2.0,2013-11-05 20:00:02,0,1,0,0,0,0,1,0,0,2,201311,1,35.0
152,155,7731,The Times and The Sunday Times,147384458624178.0,717397231622895,2013-11-01 00:00:00,LEFT,2013-11-03 22:43:03,photo,"b""Tomorrow's front page: \r\nTroops face new roles in 'terrorist heartlands'""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/717397218289563/?type=3,47.0,0.0,0.0,0.0,0.0,0.0,1.0,14.0,1.0,2.0,2013-11-03 22:43:03,0,1,0,0,0,0,1,0,0,2,201311,1,62.0
153,156,7735,The Times and The Sunday Times,147384458624178.0,717988274897124,2013-11-01 00:00:00,LEFT,2013-11-04 23:08:34,photo,"b""Tomorrow's Times front page: Lost terror suspect was cleared the same day http://thetim.es/1dGsuVN""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/717988261563792/?type=3,40.0,0.0,0.0,0.0,0.0,0.0,5.0,12.0,1.0,2.0,2013-11-04 23:08:34,0,1,0,0,0,0,1,0,0,2,201311,1,57.0
154,157,7746,The Daily Star,161612017189003.0,743417955675070,2013-11-01 00:00:00,LEFT,2013-11-01 18:14:05,photo,b'BREAKING NEWS: At least one person is dead after a gunman opened fire at Los Angeles International Airport.\r\n\r\nThere are reports of multiple injuries as all flights in and out of LAX are grounded until further notice.\r\n\r\nhttp://www.dailystar.co.uk/news/latest-news/348573/BREAKING-At-least-one-person-killed-after-shooting-at-Los-Angeles-International-Airport',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/743417935675072/?type=3,15.0,0.0,0.0,0.0,0.0,0.0,0.0,14.0,1.0,2.0,2013-11-01 18:14:05,0,1,0,0,0,0,1,0,0,2,201311,0,29.0
155,158,7759,Sky News,164665060214766.0,744684405546159,2013-11-01 00:00:00,LEFT,2013-11-03 13:05:14,photo,b'A man killed and ate his pet dog after being stranded in remote woodland in Canada. His supplies had been eaten by a bear.\r\n\r\nhttp://news.sky.com/story/1163239/man-eats-pet-dog-to-survive-after-bear-attack',b'Timeline Photos',https://www.facebook.com/skynews/photos/a.213165348698070.67079.164665060214766/744684392212827/?type=3,217.0,0.0,0.0,0.0,0.0,0.0,201.0,117.0,1.0,2.0,2013-11-03 13:05:14,0,1,0,0,0,0,1,0,0,2,201311,0,535.0
156,159,7866,The Sun,161385360554578.0,762322907127484,2013-11-01 00:00:00,LEFT,2013-11-07 08:58:08,photo,"b'Cops quiz Sun man... for trying to find burka terror suspect. The Sun is offering a \xc2\xa325,000 reward for help to capture the terror suspect http://bit.ly/HzlBds'",b'Timeline Photos',https://www.facebook.com/thesun/photos/a.189503717742742.57432.161385360554578/762322897127485/?type=3,539.0,0.0,0.0,0.0,0.0,0.0,68.0,215.0,1.0,2.0,2013-11-07 08:58:08,0,1,0,0,0,0,1,0,0,2,201311,1,822.0
157,160,7920,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10151684383565976,2013-11-01 00:00:00,LEFT,2013-11-04 13:06:33,photo,b'Im Auftrag von Pentagon und CIA haben amerikanische \xc3\x84rzte und Pfleger bei der Misshandlung von Terrorverd\xc3\xa4chtigen geholfen und ihren Eid verletzt. Diesen Vorwurf erheben 20 Fachleute in einer nun ver\xc3\xb6ffentlichten Studie. http://www.faz.net/-gpf-7j2wo',b'Studie: \xc3\x84rzte haben bei Folter von Gefangenen mitgewirkt',https://www.facebook.com/faz/photos/a.10151684383370976.1073743940.346392590975/10151684383465976/?type=3,54.0,0.0,0.0,0.0,0.0,0.0,19.0,18.0,1.0,2.0,2013-11-04 13:06:33,0,1,0,0,0,0,1,0,0,2,201311,1,91.0
158,161,8006,Handelsblatt,104709558232.0,10151775838093233,2013-11-01 00:00:00,LEFT,2013-11-06 07:11:06,link,b'Da fragen wir uns: Sind Autofahrer Terroristen? (jon)',b'Friedrich will Maut-Daten zur \xc3\x9cberwachung nutzen',http://www.handelsblatt.com/politik/deutschland/bundestagswahl-2013/medienbericht-friedrich-will-maut-daten-zur-ueberwachung-nutzen/9034238.html,72.0,0.0,0.0,0.0,0.0,0.0,58.0,32.0,1.0,2.0,2013-11-06 07:11:06,0,1,0,0,0,0,0,0,1,0,201311,1,162.0
159,162,8131,Bild,25604775729.0,10151999819275730,2013-11-01 00:00:00,LEFT,2013-11-04 14:10:00,photo,"b'Wie verzeifelt muss dieser Mann gewesen sein? Nach einer B\xc3\xa4renattacke bleibt er geschw\xc3\xa4cht und ohne Nahrung in Kanadas Wildnis zur\xc3\xbcck. Seine einzige \xc3\x9cberlebenschance: Er muss seinen geliebten Hund aufessen. Sonst w\xc3\xa4re Marco Lavoie verhungert. Der Zustand des Wanderers ist immer noch ernst.\r\nWir w\xc3\xbcnschen ihm viel Kraft. Und hoffen, dass es so etwas wie einen Hunde-Himmel gibt...\r\nhttp://on.bild.de/1alufmv'",b'Timeline Photos',https://www.facebook.com/bild/photos/a.166767505729.158690.25604775729/10151999486955730/?type=3,603.0,0.0,0.0,0.0,0.0,0.0,1164.0,282.0,1.0,2.0,2013-11-04 14:10:00,0,1,0,0,0,0,1,0,0,2,201311,0,2049.0
160,163,8260,The Sunday People,633052486757819.0,697305696999164,2014-05-24 00:00:00,ISLAMIST,2014-05-24 17:24:08,link,b'22 year old Elliot Roger linked to Santa Barbara University of California killings posted chilling revenge video online...\n',"b""California shooting: Police review video of student Elliot Rodger threatening 'revenge' after...""",http://www.mirror.co.uk/news/world-news/california-shooting-police-review-video-3600599#.U4DVEGOW9Hs.facebook,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,4.0,2014-05-24 17:24:08,1,0,0,0,0,0,0,0,1,0,201405,0,3.0
161,164,8307,SWR Aktuell,112906815414721.0,713344008704329,2014-05-24 00:00:00,ISLAMIST,2014-05-27 16:48:03,status,b'Aus \xc3\x9cbung wird Ernst: Anti-Terror \xc3\x9cbung im Mainzer Hauptbahnhof ist wegen eines verd\xc3\xa4chtigen Fundes abgebrochen worden. Bahnhof wird zur Stunde teilweise evakuiert.',missing_value,missing_value,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,4.0,2014-05-27 16:48:03,1,0,0,0,0,0,0,0,0,0,201405,1,6.0
162,165,8317,Daily Express,129617873765147.0,722963777763884,2014-05-24 00:00:00,ISLAMIST,2014-05-24 12:32:52,photo,b'Seven dead in drive-by shooting\n\nhttp://www.express.co.uk/news/world/477953/Seven-dead-in-California-drive-by-mass-murder-shooting-near-college-campus',b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/722963754430553/?type=3,46.0,0.0,0.0,0.0,0.0,0.0,25.0,15.0,0.0,4.0,2014-05-24 12:32:52,1,0,0,0,0,0,1,0,0,2,201405,0,86.0
163,166,8319,Daily Express,129617873765147.0,723111171082478,2014-05-24 00:00:00,ISLAMIST,2014-05-24 17:48:28,photo,"b""'Terror attack' at Jewish Centre in Belgium\n\nhttp://www.express.co.uk/news/world/478007/Terror-attack-kills-four-at-Jewish-museum""",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/723110474415881/?type=3,69.0,0.0,0.0,0.0,0.0,0.0,35.0,45.0,0.0,4.0,2014-05-24 17:48:28,1,0,0,0,0,0,1,0,0,2,201405,1,149.0
164,167,8420,The Daily Star,161612017189003.0,860460610637470,2014-05-24 00:00:00,ISLAMIST,2014-05-24 18:23:55,photo,b'TERROR ATTACK: Gunman kills FOUR in anti-Jewish rampage at tourist hotspot\n\nhttp://www.dailystar.co.uk/news/latest-news/380472/Gunman-goes-on-muderous-rampage-at-Jewish-tourist-hotspot-in-Brussels',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/860460580637473/?type=3,50.0,0.0,0.0,0.0,0.0,0.0,16.0,5.0,0.0,4.0,2014-05-24 18:23:55,1,0,0,0,0,0,1,0,0,2,201405,1,71.0
165,168,8424,The Daily Star,161612017189003.0,863248267025371,2014-05-24 00:00:00,ISLAMIST,2014-05-29 10:18:05,photo,b'Brad Pitt was ATTACKED while supporting Angelina Jolie at the premiere of Maleficent\n\nhttp://dly.st/1k3s9lY',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/863248227025375/?type=3,65.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,0.0,4.0,2014-05-29 10:18:05,1,0,0,0,0,0,1,0,0,2,201405,0,80.0
166,169,8456,SR.de,139381656076338.0,868267616521068,2014-05-24 00:00:00,ISLAMIST,2014-05-30 09:52:47,link,b'In Saarbr\xc3\xbccken-Ru\xc3\x9fh\xc3\xbctte wurde gestern ein Pizzafahrer bei der Auslieferung niedergestochen und schwer verletzt. ',b'SR-online: Pizzafahrer von Messerstecher verletzt',http://www.sr-online.de/sronline/nachrichten/panorama/pizzafahrer_angriff_saarbruecken100.html,3.0,0.0,0.0,0.0,0.0,0.0,5.0,2.0,0.0,4.0,2014-05-30 09:52:47,1,0,0,0,0,0,0,0,1,0,201405,0,10.0
167,170,8462,Sky News,164665060214766.0,868854396462492,2014-05-24 00:00:00,ISLAMIST,2014-05-30 12:11:12,video,b'Watch this woman describe how she survived an attack by a mama bear by playing dead.\n\nMore on the story: http://news.sky.com/story/1272097/woman-played-dead-to-survive-mama-bear-attack',missing_value,https://www.facebook.com/skynews/videos/868854396462492/,291.0,0.0,0.0,0.0,0.0,0.0,25.0,53.0,0.0,4.0,2014-05-30 12:11:12,1,0,0,0,0,0,0,1,0,1,201405,0,369.0
168,171,8499,The Sun,161385360554578.0,899702343389539,2014-05-24 00:00:00,ISLAMIST,2014-05-24 10:00:32,photo,"b'Abu Hamza\xe2\x80\x99s sons have been sentenced to 30 years in UK jails \xe2\x80\x94 costing taxpayers \xc2\xa3410,000, we can reveal.\n\nFour of the terrorist\xe2\x80\x99s kids and a stepson have been caged for crimes including bomb plots and armed robbery: http://bit.ly/1t5sWCi'",b'Timeline Photos',https://www.facebook.com/thesun/photos/a.189503717742742.57432.161385360554578/899699663389807/?type=3,665.0,0.0,0.0,0.0,0.0,0.0,300.0,297.0,0.0,4.0,2014-05-24 10:00:32,1,0,0,0,0,0,1,0,0,2,201405,1,1262.0
169,172,8516,The Sun,161385360554578.0,904084686284638,2014-05-24 00:00:00,ISLAMIST,2014-05-29 08:27:43,photo,"b'A sinister gang which supplies fake IDs to suspected Islamist extremists is today exposed by The Sun.\n\nThe crime ring was infiltrated by our undercover team who bought identity papers and a passport for \xc2\xa312,500 in the name of a wanted terror commander loyal to al-Qaeda...\n\nRead the full story: http://bit.ly/1kNiiiZ'",b'Timeline Photos',https://www.facebook.com/thesun/photos/a.189503717742742.57432.161385360554578/904083636284743/?type=3,312.0,0.0,0.0,0.0,0.0,0.0,67.0,85.0,0.0,4.0,2014-05-29 08:27:43,1,0,0,0,0,0,1,0,0,2,201405,1,464.0
170,173,8729,Daily Mirror,6149699161.0,10152437266129162,2014-05-24 00:00:00,ISLAMIST,2014-05-26 22:07:48,photo,"b""Tuesday's front page: \nWhite Widow Samantha Lewthwaite, the world's most wanted woman, weds ruthless terror chief on the run in Somalia\n\nhttp://www.mirror.co.uk/news/world-news/white-widow-samantha-lewthwaite-marries-3611431""",b'Timeline Photos',https://www.facebook.com/dailymirror/photos/a.394365354161.172272.6149699161/10152437257154162/?type=3,489.0,0.0,0.0,0.0,0.0,0.0,135.0,238.0,0.0,4.0,2014-05-26 22:07:48,1,0,0,0,0,0,1,0,0,2,201405,1,862.0
171,174,8757,Daily Mirror,6149699161.0,10152444913079162,2014-05-24 00:00:00,ISLAMIST,2014-05-30 14:14:43,link,b'A rapist who attacked a young mum dressed as Father Christmas has been jailed for 10 years.',b'Rapist who attacked young mum dressed as Father Christmas...',http://www.mirror.co.uk/news/uk-news/rapist-who-attacked-young-mum-3626406,264.0,0.0,0.0,0.0,0.0,0.0,88.0,54.0,0.0,4.0,2014-05-30 14:14:43,1,0,0,0,0,0,0,0,1,0,201405,0,406.0
172,175,8760,The Guardian,10513336322.0,10152445669966323,2014-05-24 00:00:00,ISLAMIST,2014-05-26 16:00:02,link,"b'Pope Francis has deviated from his itinerary for his tour of the Holy Land for the second time in two days \xe2\x80\x93 this time to visit a memorial to Israeli victims of terrorism.\n\nThe surprise addition on Monday was made at the request of the Israeli prime minister, Binyamin Netanyahu, and was interpreted as an attempt to appease his Israeli hosts after his surprise decision to pray at the controversial Israeli separation wall in Bethlehem the day before.'",b'Pope Francis makes unofficial stop at Israeli terrorism memorial',http://gu.com/p/3ph2f/fb,648.0,0.0,0.0,0.0,0.0,0.0,112.0,81.0,0.0,4.0,2014-05-26 16:00:02,1,0,0,0,0,0,0,0,1,0,201405,1,841.0
173,176,8761,Daily Mirror,6149699161.0,10152445706379162,2014-05-24 00:00:00,ISLAMIST,2014-05-30 20:05:54,link,"b""Cambridge-educated actuary Andrew Morris (pictured right) has been jailed for murdering his girlfriend's brother with a spear gun and carving knife.""",b'Cambridge-educated actuary jailed after murdering his...',http://www.mirror.co.uk/news/uk-news/cambridge-educated-actuary-jailed-after-murdering-3628093,69.0,0.0,0.0,0.0,0.0,0.0,19.0,4.0,0.0,4.0,2014-05-30 20:05:54,1,0,0,0,0,0,0,0,1,0,201405,0,92.0
174,177,8764,The Guardian,10513336322.0,10152446740811323,2014-05-24 00:00:00,ISLAMIST,2014-05-26 21:00:01,link,"b'Why did the FT\xe2\x80\x99s attack on Thomas Piketty\xe2\x80\x99s \xe2\x80\x98rising inequality\xe2\x80\x99 thesis prompt such rightwing glee? Because it let the Rolex types off the hook, writes Paul Mason'","b""Thomas Piketty's real challenge was to the FT's Rolex types""",https://www.theguardian.com/commentisfree/2014/may/26/thomas-piketty-economist-ft-attack-rising-inequality-bling,351.0,0.0,0.0,0.0,0.0,0.0,25.0,96.0,0.0,4.0,2014-05-26 21:00:01,1,0,0,0,0,0,0,0,1,0,201405,0,472.0
175,178,8775,The Guardian,10513336322.0,10152450578096323,2014-05-24 00:00:00,ISLAMIST,2014-05-28 10:00:02,link,"b""Mary O'Hara: Austerity is an attack on opportunity.\n\n'When I was 10, my father became unemployed due to health difficulties within the family. Thanks to the welfare state I was able to live in a home fit to be lived in because we were provided with a council house. Thanks to the welfare state I had libraries to go to and a nutritious free meal at school every day. I had free eye tests and a subsidised school uniform. I was able to fulfill my potential because the welfare state provided me with some of the essentials in life. It gave me a fighting chance.'\n\n""","b""'The welfare state is not about dependency: it is about opportunity'""",http://gu.com/p/3ph33/fb,4896.0,0.0,0.0,0.0,0.0,0.0,231.0,1636.0,0.0,4.0,2014-05-28 10:00:02,1,0,0,0,0,0,0,0,1,0,201405,0,6763.0
176,179,8780,The Guardian,10513336322.0,10152451854646323,2014-05-24 00:00:00,ISLAMIST,2014-05-28 21:31:01,link,"b""Politicians and lawyers are too slow to protect us, so for now it's up to us to find technological solutions to end the mass espionage Edward Snowden revealed, writes Eben Moglen""","b'Privacy under attack, part II: the solution is in the hands of the people'",https://www.theguardian.com/world/2014/may/28/privacy-nsa-revelations-solution,176.0,0.0,0.0,0.0,0.0,0.0,17.0,57.0,0.0,4.0,2014-05-28 21:31:01,1,0,0,0,0,0,0,0,1,0,201405,0,250.0
177,180,8828,JUNGE FREIHEIT,13479664941.0,10152836889169942,2014-05-24 00:00:00,ISLAMIST,2014-05-27 12:27:40,video,"b'Linke und Linksextremisten, die alle niederschreien und niederpfeifen, die ihnen nicht passen, kennen wir. In D\xc3\xa4nemark ging es jetzt mal andersrum:'",b'Danish leftists taste own meds on Danish TV',https://www.youtube.com/watch?v=GfcKbQtKOJ8,312.0,0.0,0.0,0.0,0.0,0.0,22.0,68.0,0.0,4.0,2014-05-27 12:27:40,1,0,0,0,0,0,0,1,0,1,201405,0,402.0
178,181,8876,The Morning Star,351763554897760.0,755252527882192,2014-12-20 00:00:00,ISLAMIST,2014-12-21 17:45:08,link,b'Children at the Burin school in Nablus are under constant attacks from Israeli soldiers | http://t.co/Bar509dXjD #Palestine @PSCupdates',b'Living with Israel\xe2\x80\x99s bully settlements',http://t.co/Bar509dXjD,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2014-12-21 17:45:08,1,0,0,0,0,0,0,0,1,0,201412,0,2.0
179,182,8921,ZDF,154149027994068.0,758365407572424,2014-12-20 00:00:00,ISLAMIST,2014-12-25 18:40:01,photo,"b'Gleich startet die Helene Fischer-Show! Wir haben jede Menge nationale und internationale Musikg\xc3\xa4ste eingeladen, die gemeinsam mit ihr noch nie da gewesene Duette pr\xc3\xa4sentieren und f\xc3\xbcr jede Menge Emotionen und G\xc3\xa4nsehautmomente sorgen werden. \n\nMit dabei sind der inzwischen leider verstorbene Udo J\xc3\xbcrgens - Offizielle Facebooksite (TV-Aufzeichnung war am 11. und 12. Dezember), Rocklegende Peter Maffay, Shootingstar Andreas Bourani und ""The Voice of Italy""-Gewinnerin Schwester Cristina.\n\nStar-Tenor Jonas Kaufmann hat sich ebenso angek\xc3\xbcndigt wie die britische Boyband schlechthin: Take That. Comedian Sascha Grammel wird gemeinsam mit Helene Fischer die Puppen tanzen lassen, und auf die gro\xc3\x9fe Kinoleinwand wagt sie sich mit Schauspieler Mark Keller. Mit ""Rocky"", ""Chicago"" und ""Shrek"" haben sich auch in diesem Jahr wieder gro\xc3\x9fe Musical-Produktionen angek\xc3\xbcndigt. #helenefischershow'",b'Timeline Photos',https://www.facebook.com/ZDF/photos/a.156337284441909.40558.154149027994068/756377821104516/?type=3,997.0,0.0,0.0,0.0,0.0,0.0,159.0,66.0,3.0,1.0,2014-12-25 18:40:01,1,0,0,0,0,0,1,0,0,2,201412,0,1222.0
180,183,8970,Metro,117118184990145.0,784165194952104,2014-12-20 00:00:00,ISLAMIST,2014-12-26 14:30:01,link,"b""'You failed to use glitter'""","b""Gay couple's response to homophobic attack is incredible""",http://metro.co.uk/2014/12/26/you-failed-to-use-glitter-gay-couples-response-to-christmas-faggot-attack-is-incredible-4999883/?ito=facebook,10425.0,0.0,0.0,0.0,0.0,0.0,318.0,1499.0,3.0,1.0,2014-12-26 14:30:01,1,0,0,0,0,0,0,0,1,0,201412,0,12242.0
181,184,9010,The Mail,159113120793522.0,813053908732770,2014-12-20 00:00:00,ISLAMIST,2014-12-22 09:30:17,status,b'Man 52 attacked in Barrow \n\nhttp://www.nwemail.co.uk/news/man-52-attacked-in-barrow-1.1182941 #barrow #cumbria #nwemlive',missing_value,missing_value,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2014-12-22 09:30:17,1,0,0,0,0,0,0,0,0,0,201412,0,2.0
182,185,9091,DIE RHEINPFALZ,138065952884396.0,893739470650370,2014-12-20 00:00:00,ISLAMIST,2014-12-25 08:36:33,status,"b'Heute l\xc3\xa4uft die umstrittene Nordkorea-Satrie ""The Interview"" in vielen unabh\xc3\xa4ngigen US-Kinos an. Nach dem Hacker-Angriff auf Sony Pictures und Terrordrohungen sagt das Studio den Kinostart zun\xc3\xa4chst ab. Nordkorea k\xc3\xa4mpfte gestern mit erheblichen Internetst\xc3\xb6rungen. Die US-Regierung wollte zu ihrer m\xc3\xb6glichen Verantwortlichkeit f\xc3\xbcr die St\xc3\xb6rungen keine Stellung nehmen. (ljg) \n\nhttp://www.rheinpfalz.de/nachrichten/kultur/artikel/trotz-terrordrohungen-the-interview-wird-gezeigt/'",missing_value,missing_value,6.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,3.0,1.0,2014-12-25 08:36:33,1,0,0,0,0,0,0,0,0,0,201412,1,7.0
183,186,9132,The Daily Star,161612017189003.0,989014147782115,2014-12-20 00:00:00,ISLAMIST,2014-12-21 19:36:35,photo,"b""'You're giving evil organisations a bad name!'\n\nVIDEO: Dr. Evil has his say on the North Korea 'attack' on Sony Pictures\n\nhttp://www.dailystar.co.uk/news/latest-news/416581/Dr-Evil-Saturday-Night-Live-Mike-Myers""",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/989013774448819/?type=3,29.0,0.0,0.0,0.0,0.0,0.0,5.0,5.0,3.0,1.0,2014-12-21 19:36:35,1,0,0,0,0,0,1,0,0,2,201412,0,39.0
184,187,9153,Sky News,164665060214766.0,997183586962905,2014-12-20 00:00:00,ISLAMIST,2014-12-24 16:01:41,video,"b'""This has to stop.""\n\nThere\'s anger in Berkeley as the mayor takes questions following the fatal shooting of a teenager by police. Read more at http://bit.ly/1wFD1vA.'",missing_value,https://www.facebook.com/skynews/videos/997179583629972/,715.0,0.0,0.0,0.0,0.0,0.0,378.0,263.0,3.0,1.0,2014-12-24 16:01:41,1,0,0,0,0,0,0,1,0,1,201412,0,1356.0
185,188,9243,BBC News,228735667216.0,10152478613637217,2014-12-20 00:00:00,ISLAMIST,2014-12-23 11:25:01,video,"b""French fries and mayonnaise are used in an attack by activists on Belgium's PM Charles Michel""",missing_value,https://www.facebook.com/bbcnews/videos/10152478613637217/,15512.0,0.0,0.0,0.0,1.0,0.0,2008.0,9093.0,3.0,1.0,2014-12-23 11:25:01,1,0,0,0,0,0,0,1,0,1,201412,0,26614.0
186,189,9340,SPIEGEL ONLINE,38246844868.0,10152895908669869,2014-12-20 00:00:00,ISLAMIST,2014-12-20 07:00:21,link,"b'Aktuell sind die letzten Tage des Jahres in den USA nicht wirklich besinnlich. Folterpraktiken der CIA wurden enttarnt, historische Wende in den Beziehungen zu Kuba ausgerufen, und Nordkoreas Hacker stoppten mit Terrordrohungen den Kinostart der Satire ""The Interview"". Obama hatte vor seinem Urlaub noch einiges klarzustellen.'","b'Obamas letzter Auftritt vor dem Urlaub: Drohung gegen Nordkorea, L\xc3\xa4cheln...'",http://www.spiegel.de/politik/ausland/us-praesident-obama-zu-nordkoreas-hackern-kuba-und-republikanern-a-1009708.html,57.0,0.0,0.0,0.0,0.0,0.0,33.0,6.0,3.0,1.0,2014-12-20 07:00:21,1,0,0,0,0,0,0,0,1,0,201412,1,96.0
187,190,9440,Freie Presse,375109771472.0,10152986100976473,2014-12-20 00:00:00,ISLAMIST,2014-12-24 07:27:27,photo,"b'Ein Senfkorn Hoffnung\nKrisen, Krieg und Terror - die Welt scheint aus den Fugen geraten zu sein. Eine Betrachtung von Christoph Ulrich. (Foto: magdal3na - Fotolia)\n\nMehr unter http://bit.ly/1EbOjwF'",b'Timeline Photos',https://www.facebook.com/freiepresse/photos/a.10151210045371473.471017.375109771472/10152986100211473/?type=3,26.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,3.0,1.0,2014-12-24 07:27:27,1,0,0,0,0,0,1,0,0,2,201412,1,33.0
188,191,9497,Neue Westfälische,215604728519502.0,774762932603676,2015-01-05 00:00:00,SEP-LOY,2015-01-09 11:26:08,link,"b'Nach dem Anschlag in Paris in der Redaktion des satirischen Magazins ""Charlie Hebdo"" spricht die Polizei in NRW zurzeit s\xc3\xa4mtliche Medien des Landes an - offenbar aus Sorge um die Sicherheit in den Redaktionen.'",b'Sorge um Sicherheit in NRW-Redaktionen | Neue Westf\xc3\xa4lische - Mitte',http://www.nw.de/lokal/bielefeld/mitte/mitte/20301429_Sorge-um-Sicherheit-in-NRW-Redaktionen.html,8.0,0.0,0.0,0.0,0.0,0.0,6.0,4.0,1.0,1.0,2015-01-09 11:26:08,1,0,0,0,0,1,0,0,1,0,201501,0,18.0
189,192,9511,The Sunday People,633052486757819.0,816011375128595,2015-01-05 00:00:00,SEP-LOY,2015-01-07 15:30:17,link,"b""Here's the latest following today's shootings in Paris...""",b'Charlie Hebdo: Paris shooting latest updates',http://www.mirror.co.uk/news/world-news/charlie-hebdo-paris-shooting-live-4933848,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2015-01-07 15:30:17,1,0,0,0,0,1,0,0,1,0,201501,0,2.0
190,193,9531,Monitor,186702484702033.0,825639404141668,2015-01-05 00:00:00,SEP-LOY,2015-01-08 14:04:45,status,"b'Nous sommes Charlie \xe2\x80\x93 Ihr nicht !\n\nZehn Journalisten sind gestern in Paris ermordet worden. Zehn mutige Kollegen, die sich von niemanden den Mund verbieten lassen wollten. Satiriker, die die Meinungs- und Kunstfreiheit ernst genommen haben und daf\xc3\xbcr mit ihrem Leben bezahlen mussten. Ja, dies war ein Anschlag auf die Pressefreiheit, der nicht nur uns als Kollegen emp\xc3\xb6rt, sondern jeden, f\xc3\xbcr den diese Freiheiten in einer weltoffenen, demokratischen Gesellschaft existenziell sind.\n \nWas mich fassungslos macht: Dass sich schon wenige Stunden nach dem Anschlag Trittbrettfahrer zu Wort melden, die daraus politisch Kapital schlagen wollen. Ausgerechnet jene Rechtspopulisten, die Montag f\xc3\xbcr Montag Journalisten als L\xc3\xbcgenpresse diffamieren, nur weil sie sich mit ihren Parolen nicht gemein machen. Die Forderungen von Pegida h\xc3\xa4tten vor dem Hintergrund des Anschlags \xe2\x80\x9ebesondere Aktualit\xc3\xa4t und Gewicht erhalten\xe2\x80\x9c, meinte der Rechtsausleger des AfD-Vorstands, Alexander Gauland, allen Ernstes. \xc3\x84hnlich zynisch \xc3\xa4u\xc3\x9ferten sich die Sprachrohre der selbsternannten Retter des Abendlandes.\n\nIn der Reaktion auf den Terroranschlag von Paris zeigen AfD und Pegida jetzt ihr wahres Gesicht. Nein, das darf man den Gaulands dieser Republik nicht durchgehen lassen: Dass sie auf unverfrorene Art und Weise islamische Lebensformen mit einen barbarischen Terroranschlag gleichsetzen. Dass sie ihr fremdenfeindliches S\xc3\xbcppchen auf den Gr\xc3\xa4bern von zehn ermordeten Journalisten kochen. Dass sie sich in klammheimlicher Freude die H\xc3\xa4nde reiben, um weiter zu z\xc3\xbcndeln am rechten Rand.\n\nWenn die zehn Kollegen f\xc3\xbcr eines ganz sicher nicht gestanden haben, dann f\xc3\xbcr den spie\xc3\x9fb\xc3\xbcrgerlichen Aufstand zur Rettung eines islamophoben Abendlandes. Deshalb: Haltet Euer Maul, wenigstens jetzt! Nous sommes Charlie. Ihr nicht!\n\nGeorg Restle\n\n#monitor #ardmonitor #georgrestle #jesuischarlie #pegida #afd #ard #CharlieHebdo'",missing_value,missing_value,8673.0,0.0,0.0,0.0,0.0,0.0,438.0,3684.0,1.0,1.0,2015-01-08 14:04:45,1,0,0,0,0,1,0,0,0,0,201501,1,12795.0
191,194,9536,Monitor,186702484702033.0,827209713984637,2015-01-05 00:00:00,SEP-LOY,2015-01-11 17:35:25,status,"b'Trittbrettfahrer der Angst - am Donnerstag bei Monitor!\n\nDer Terroranschlag von Paris sorgt bei deutschen Innenpolitikern f\xc3\xbcr die \xc3\xbcblichen Reflexe: Mehr \xc3\x9cberwachung, Vorratsdatenspeicherung, St\xc3\xa4rkung der Geheimdienste. Und am rechten Rand trommeln Pegida, AfD und Rechtsextremisten f\xc3\xbcr ihre Vorstellung von einem islamophoben Abendland. \nWer verteidigt hier wessen Freiheiten vor wem? \nMehr dazu am Donnerstag bei Monitor, 21:45 Uhr im Ersten. Vormerken!\n\n#monitor #ardmonitor #pegida #afd #wdr #ard #daserste'",missing_value,missing_value,393.0,0.0,0.0,0.0,0.0,0.0,50.0,97.0,1.0,1.0,2015-01-11 17:35:25,1,0,0,0,0,1,0,0,0,0,201501,1,540.0
192,195,9554,Radio Bremen,155771627779074.0,851948348161395,2015-01-05 00:00:00,SEP-LOY,2015-01-08 12:14:15,photo,"b'Dieses grauenhafte Verbrechen war auch ein Anschlag auf die Pressefreiheit. Dies geht uns alle an. Solidarit\xc3\xa4t zeigen ist das Mindeste, was wir tun k\xc3\xb6nnen. \n#JeSuisCharlie'",b'Cover Photos',https://www.facebook.com/radiobremen/photos/a.355448944478007.78453.155771627779074/851948018161428/?type=3,1541.0,0.0,0.0,0.0,0.0,0.0,28.0,240.0,1.0,1.0,2015-01-08 12:14:15,1,0,0,0,0,1,1,0,0,2,201501,0,1809.0
193,196,9555,Radio Bremen,155771627779074.0,851957214827175,2015-01-05 00:00:00,SEP-LOY,2015-01-08 12:34:06,photo,"b'Je suis Charlie - ich bin Charlie - damit m\xc3\xb6chte Radio Bremen Solidarit\xc3\xa4t mit den Opfern des Anschlags in Frankreich zeigen. Und wir sind nicht die einzigen: Journalistinnen und Journalisten in aller Welt haben nach dem Attentat auf die Redaktion des Magazins ""Charlie Hebdo"", bei dem gestern zw\xc3\xb6lf Menschen starben, f\xc3\xbcr die Meinungsfreiheit ausgesprochen. Bilder und Statements gibt es auch auf Twitter: https://twitter.com/hashtag/JeSuisCharlie'",b'Timeline Photos',https://www.facebook.com/radiobremen/photos/a.354144851275083.78158.155771627779074/851954731494090/?type=3,783.0,0.0,0.0,0.0,0.0,0.0,25.0,201.0,1.0,1.0,2015-01-08 12:34:06,1,0,0,0,0,1,1,0,0,2,201501,0,1009.0
194,197,9568,Daily Express,129617873765147.0,859925970734330,2015-01-05 00:00:00,SEP-LOY,2015-01-08 06:12:59,photo,b'PARIS SHOOTING LATEST: \n\nPolice issue arrest warrant for two French-Algerian brothers following Charlie Hebdo massacre while a third suspect SURRENDERS in north eastern France\n\nhttp://www.express.co.uk/news/world/550651/Shooting-Paris-Magazine-Charlie-Hebdo',b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/859925560734371/?type=3,48.0,0.0,0.0,0.0,0.0,0.0,10.0,22.0,1.0,1.0,2015-01-08 06:12:59,1,0,0,0,0,1,1,0,0,2,201501,0,80.0
195,198,9571,Daily Express,129617873765147.0,860603397333254,2015-01-05 00:00:00,SEP-LOY,2015-01-09 18:47:42,link,b'BREAKING: Abu Hamza jailed for LIFE by US court...\n\nhttp://www.express.co.uk/news/uk/551184/Abu-Hamza-jail-life-terrorism',b'BREAKING: Hate preacher Abu Hamza jailed for life for supporting terrorism',http://www.express.co.uk/news/uk/551184/Abu-Hamza-jail-life-terrorism,2029.0,0.0,0.0,0.0,0.0,0.0,374.0,426.0,1.0,1.0,2015-01-09 18:47:42,0,0,0,1,0,1,0,0,1,0,201501,1,2829.0
196,199,9580,London Evening Standard,165348596842143.0,875743685802627,2015-01-05 00:00:00,SEP-LOY,2015-01-07 18:32:37,photo,b'Londoners have gathered in Trafalgar Square to pay tribute to the victims of the #CharlieHebdo shootings in Paris \n\nFull story here: http://bit.ly/1xFzQnQ',b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/875743302469332/?type=3,5705.0,0.0,0.0,0.0,0.0,0.0,144.0,891.0,1.0,1.0,2015-01-07 18:32:37,1,0,0,0,0,1,1,0,0,2,201501,0,6740.0
197,200,9582,London Evening Standard,165348596842143.0,876274662416196,2015-01-05 00:00:00,SEP-LOY,2015-01-08 11:38:50,link,b'Nick Clegg accuses Nigel Farage of exploiting the Charlie Hebdo tragedy for \xe2\x80\x9cpolitical points\xe2\x80\x9d.\n\nWatch video here:',b'Nigel Farage accused of exploiting Paris shootings as he hits out at multiculturalism after massacre',https://www.standard.co.uk/news/politics/nigel-farage-accused-of-exploiting-paris-shootings-as-he-hits-out-at-multiculturalism-after-massacre-9964843.html?cmpid=facebook,120.0,0.0,0.0,0.0,0.0,0.0,72.0,44.0,1.0,1.0,2015-01-08 11:38:50,1,0,0,0,0,1,0,0,1,0,201501,0,236.0
198,201,9586,London Evening Standard,165348596842143.0,876799159030413,2015-01-05 00:00:00,SEP-LOY,2015-01-09 12:41:58,link,b'BREAKING: Shots fired and hostage taken in another attack in Paris.\n\nMore details here:',b'Shots fired as gunman takes hostage at kosher grocery in Paris',https://www.standard.co.uk/news/world/breaking-news-shots-fired-as-gunman-takes-hostage-at-kosher-grocery-in-paris-9967928.html,190.0,0.0,0.0,0.0,0.0,0.0,26.0,169.0,1.0,1.0,2015-01-09 12:41:58,1,0,0,0,0,1,0,0,1,0,201501,0,385.0
199,202,9587,London Evening Standard,165348596842143.0,876854645691531,2015-01-05 00:00:00,SEP-LOY,2015-01-09 14:49:17,photo,b'Police release images of suspects believed to be involved in the Paris attacks http://bit.ly/1Awm4nn',b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/876854362358226/?type=3,187.0,0.0,0.0,0.0,0.0,0.0,52.0,57.0,1.0,1.0,2015-01-09 14:49:17,1,0,0,0,0,1,1,0,0,2,201501,0,296.0
200,203,9616,City AM,213682385348579.0,911807952202682,2015-01-05 00:00:00,SEP-LOY,2015-01-07 11:36:16,link,b'This is what we know right now',b'Fatalities reported after shooting at Charlie Hebdo offices',http://www.cityam.com/206628/fatalities-reported-after-shooting-satirical-french-magazine-charlie-hebdo,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2015-01-07 11:36:16,0,0,0,1,0,1,0,0,1,0,201501,0,2.0
201,204,9636,RTL,179133132098813.0,921288447883274,2015-01-05 00:00:00,SEP-LOY,2015-01-11 09:00:00,photo,"b'Carolin Kebekus sorgt f\xc3\xbcr grandiosen ""Pussyterror"". Schau jetzt bei RTL NOW rein: http://rtl-now.rtl.de/carolinkebekuspussyterror.php'",b'Timeline Photos',https://www.facebook.com/meinRTL/photos/a.317833411562117.86456.179133132098813/920356117976507/?type=3,866.0,0.0,0.0,0.0,0.0,0.0,101.0,23.0,1.0,1.0,2015-01-11 09:00:00,0,0,0,1,0,1,1,0,0,2,201501,1,990.0
202,205,9644,The Times and The Sunday Times,147384458624178.0,976197429076206,2015-01-05 00:00:00,SEP-LOY,2015-01-07 23:49:08,photo,b'Tomorrow\xe2\x80\x99s front page: Attack on freedom http://thetim.es/143qhTG',b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/976197415742874/?type=3,485.0,0.0,0.0,0.0,0.0,0.0,118.0,208.0,1.0,1.0,2015-01-07 23:49:08,0,0,0,1,0,1,1,0,0,2,201501,0,811.0
203,206,9645,The Times and The Sunday Times,147384458624178.0,976520149043934,2015-01-05 00:00:00,SEP-LOY,2015-01-08 15:00:02,photo,b'Times cartoonist Peter Brookes on Charlie Hebdo shooting',b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/976520139043935/?type=3,249.0,0.0,0.0,0.0,0.0,0.0,35.0,63.0,1.0,1.0,2015-01-08 15:00:02,1,0,0,0,0,1,1,0,0,2,201501,0,347.0
204,207,9648,The Times and The Sunday Times,147384458624178.0,977974902231792,2015-01-05 00:00:00,SEP-LOY,2015-01-10 21:40:06,photo,"b""Tomorrow's Sunday Times front page: Terror alert over 150 UK jihadists""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/977974882231794/?type=3,105.0,0.0,0.0,0.0,0.0,0.0,29.0,26.0,1.0,1.0,2015-01-10 21:40:06,1,0,0,0,0,1,1,0,0,2,201501,1,160.0
205,208,9659,SR.de,139381656076338.0,1001395689874926,2015-01-05 00:00:00,SEP-LOY,2015-01-10 15:23:31,photo,b'Rund 1.000 Menschen haben am Mittag vor dem franz\xc3\xb6sischen Generalkonsulat der Opfer der Terroranschl\xc3\xa4ge in Frankreich gedacht. #JeSuisCharlie\n\nhttp://sronline.sr-galerie.de/popup.php?type=album&id=314',b'Timeline Photos',https://www.facebook.com/SRonline.de/photos/a.390138457667322.110254.139381656076338/1001395276541634/?type=3,25.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,2015-01-10 15:23:31,1,0,0,0,0,1,1,0,0,2,201501,1,28.0
206,209,9665,The Daily Star,161612017189003.0,1003305799686283,2015-01-05 00:00:00,SEP-LOY,2015-01-07 11:59:00,photo,"b""BREAKING NEWS: 12 people shot dead in 'terrorist attack' on offices of Paris magazine\n\nThree cartoonists among dead with one named in al Qaida's Wanted Dead or Alive for Crimes Against Islam article\n\nMore here: \n\nhttp://www.dailystar.co.uk/news/latest-news/418859/Ten-shot-dead-at-offices-of-Paris-magazine""",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1003305593019637/?type=3,97.0,0.0,0.0,0.0,0.0,0.0,16.0,35.0,1.0,1.0,2015-01-07 11:59:00,1,0,0,0,0,1,1,0,0,2,201501,1,148.0
207,210,9672,The Daily Star,161612017189003.0,1004904199526443,2015-01-05 00:00:00,SEP-LOY,2015-01-08 09:00:50,photo,"b'BREAKING NEWS:\n\nFemale police officer has died in SECOND Paris shooting, sparking fears of copycat attacks.\n\nhttp://www.dailystar.co.uk/news/latest-news/419008/Paris-shooting-Charlie-Hebdo-magazine-manhunt-al-Qaida-cartoons'",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1004903992859797/?type=3,103.0,0.0,0.0,0.0,0.0,0.0,11.0,38.0,1.0,1.0,2015-01-08 09:00:50,1,0,0,0,0,1,1,0,0,2,201501,0,152.0
208,211,9673,The Daily Star,161612017189003.0,1004934489523414,2015-01-05 00:00:00,SEP-LOY,2015-01-08 10:47:42,photo,"b""Islam's tragedy \xe2\x80\x93 a trail of horror across the globe in the name of Allah \n\nhttp://www.dailystar.co.uk/news/latest-news/418997/Terrorism-Islamic-9-11-attacks""",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1004934402856756/?type=3,383.0,0.0,0.0,0.0,0.0,0.0,172.0,99.0,1.0,1.0,2015-01-08 10:47:42,1,0,0,0,0,1,1,0,0,2,201501,1,654.0
209,212,9681,The Daily Star,161612017189003.0,1005562152793981,2015-01-05 00:00:00,SEP-LOY,2015-01-09 14:40:18,photo,b'A SECOND hostage situation unfolding in Paris.\n\nTwo dead as six people \xe2\x80\x93 inc. mother & young baby \xe2\x80\x93 are held captive in Kosher supermarket.\n\nhttp://www.scottishdailystar.co.uk/news/latest-news/419240/Paris-shooting-Kosher-grocery-shop-hostage-Charlie-Hebdo-Vincennes',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1005561882794008/?type=3,55.0,0.0,0.0,0.0,0.0,0.0,11.0,20.0,1.0,1.0,2015-01-09 14:40:18,1,0,0,0,0,1,1,0,0,2,201501,0,86.0
210,213,9682,The Daily Star,161612017189003.0,1005612906122239,2015-01-05 00:00:00,SEP-LOY,2015-01-09 16:27:11,photo,b'BREAKING: Terror brothers behind Charlie Hebdo massacre killed by armed police following Paris siege \n\nhttp://www.dailystar.co.uk/news/latest-news/418859/Ten-shot-dead-at-offices-of-Paris-magazine',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1005612876122242/?type=3,675.0,0.0,0.0,0.0,0.0,1.0,115.0,86.0,1.0,1.0,2015-01-09 16:27:11,1,0,0,0,0,1,1,0,0,2,201501,1,877.0
211,214,9697,Sky News,164665060214766.0,1009421362405794,2015-01-05 00:00:00,SEP-LOY,2015-01-07 11:47:46,video,"b""Pictures emerge from the scene of the shooting at Charlie Hebdo's headquarters, where 11 people have been killed. Read more here: http://bit.ly/1w0W925""",missing_value,https://www.facebook.com/skynews/videos/1009421362405794/,840.0,0.0,0.0,0.0,0.0,0.0,171.0,465.0,1.0,1.0,2015-01-07 11:47:46,1,0,0,0,0,1,0,1,0,1,201501,0,1476.0
212,215,9699,Sky News,164665060214766.0,1011499972197933,2015-01-05 00:00:00,SEP-LOY,2015-01-08 14:12:14,video,b'Fiery debate asks whether being offended is the price of living in a free society following the attacks in Paris.',missing_value,https://www.facebook.com/skynews/videos/1011499972197933/,1752.0,0.0,0.0,0.0,0.0,0.0,896.0,1440.0,1.0,1.0,2015-01-08 14:12:14,1,0,0,0,0,1,0,1,0,1,201501,0,4088.0
213,216,9701,Sky News,164665060214766.0,1012571528757444,2015-01-05 00:00:00,SEP-LOY,2015-01-09 16:04:15,video,"b""VIDEO: This was the moment gunfire and explosions were heard at a warehouse where the Charlie Hebdo shooting suspects were holed up.\n\nIt's reported they have been killed and their hostage freed. Read more: http://bit.ly/1FzNZIP""",missing_value,https://www.facebook.com/skynews/videos/1012553762092554/,2668.0,0.0,0.0,0.0,0.0,0.0,428.0,1325.0,1.0,1.0,2015-01-09 16:04:15,1,0,0,0,0,1,0,1,0,1,201501,0,4421.0
214,217,9711,Frankfurter Rundschau,134100583282150.0,1044283435597189,2015-01-05 00:00:00,SEP-LOY,2015-01-05 18:35:06,link,"b'Islamisten und Islamophobe eint der Glaube an den einen Islam. Doch den gibt es gar nicht, wei\xc3\x9f die Ethnologin Susanne Schr\xc3\xb6ter. Im FR-Interview spricht sie \xc3\xbcber die salafistische Szene, die hohlen Versprechungen des IS und die Rolle der Islamverb\xc3\xa4nde.'",b'Salafismus: \xe2\x80\x9eMan muss die Heldentr\xc3\xa4ume entzaubern\xe2\x80\x9c',"http://www.fr-online.de/frankfurt/salafismus--man-muss-die-heldentraeume-entzaubern-,1472798,29479390.html",20.0,0.0,0.0,0.0,0.0,0.0,5.0,11.0,1.0,1.0,2015-01-05 18:35:06,1,0,0,0,0,1,0,0,1,0,201501,0,36.0
215,218,9715,Frankfurter Rundschau,134100583282150.0,1045930968765769,2015-01-05 00:00:00,SEP-LOY,2015-01-08 10:52:20,link,b'Der Anschlag von Paris ist vor allem eine Herausforderung f\xc3\xbcr den Islam selbst \xe2\x80\x93 nicht f\xc3\xbcr den Westen. Die Demokratien werden weiter f\xc3\xbcr die Freiheit streiten m\xc3\xbcssen.',"b'Anschlag auf ""Charlie Hebdo"": \xe2\x80\x9eCharlie\xe2\x80\x9c - unsere Verpflichtung'","http://www.fr-online.de/terror/anschlag-auf--charlie-hebdo---charlie----unsere-verpflichtung,29500876,29504050.html",60.0,0.0,0.0,0.0,0.0,0.0,10.0,9.0,1.0,1.0,2015-01-08 10:52:20,1,0,0,0,0,1,0,0,1,0,201501,0,79.0
216,219,9723,Frankfurter Rundschau,134100583282150.0,1047331401959059,2015-01-05 00:00:00,SEP-LOY,2015-01-10 16:31:30,link,"b'Die Freien W\xc3\xa4hler im R\xc3\xb6mer hatten f\xc3\xbcr Samstag zu einem Schweigemarsch f\xc3\xbcr die Opfer des Terroranschlages auf die Pariser Satirezeitung Charlie Hebdo aufgerufen. 60 Teilnehmer kamen, rund 300 Gegendemonstranten blockierten allerdings die Route.'",b'Protest gegen Freie W\xc3\xa4hler: Schweigemarsch blockiert',"http://www.fr-online.de/frankfurt/protest-gegen-freie-waehler-schweigemarsch-blockiert,1472798,29529372,view,asFirstTeaser.html",71.0,0.0,0.0,0.0,0.0,0.0,17.0,13.0,1.0,1.0,2015-01-10 16:31:30,1,0,0,0,0,1,0,0,1,0,201501,1,101.0
217,220,9728,BR - Bayerischer Rundfunk,157820960901646.0,1049342261749507,2015-01-05 00:00:00,SEP-LOY,2015-01-08 09:47:55,photo,"b'""Je suis Charlie"" - ""Ich bin Charlie"" - einen Tag nach dem Anschlag auf das franz\xc3\xb6sische Satiremagazin ist der Slogan international zum Symbol der Solidarit\xc3\xa4t geworden. Und einmal mehr stellt sich die Frage: Wie weit darf Satire gehen? Wann werden religi\xc3\xb6se Gef\xc3\xbchle verletzt? Was hei\xc3\x9ft Meinungsfreiheit? Ist sie in Gefahr? Was meint Ihr? Diskutiert mit um 12.05 Uhr im Tagesgespr\xc3\xa4ch auf Bayern 2 und in ARD-alpha.\n\nMehr: http://br.de/s/1XnQAUy'",b'Timeline Photos',https://www.facebook.com/bayerischer.rundfunk/photos/a.546041238746281.145688.157820960901646/1049341218416278/?type=3,65.0,0.0,0.0,0.0,0.0,0.0,5.0,8.0,1.0,1.0,2015-01-08 09:47:55,1,0,0,0,0,1,1,0,0,2,201501,0,78.0
218,221,9731,BR - Bayerischer Rundfunk,157820960901646.0,1050121995004867,2015-01-05 00:00:00,SEP-LOY,2015-01-09 18:16:56,photo,"b'""Je suis Charlie"": Symbol der Solidarit\xc3\xa4t - auch der BR setzt ein Zeichen.\n\nBR-KollegInnen melden sich zu Wort (Bildergalerie): http://br.de/s/1XvOHT3 \n\nBR-Intendant Ulrich Wilhelm: \n""Wir sind alle Charlie"". Mit diesem Slogan, der zum Symbol f\xc3\xbcr die Solidarit\xc3\xa4t mit den Opfern des Pariser Anschlags geworden ist, signalisiert auch der BR sein Eintreten f\xc3\xbcr die Freiheit der unabh\xc3\xa4ngigen Berichterstattung. Das Attentat auf das Satiremagazin ist ein Attentat auf die Presse- und Meinungsfreiheit und damit ein Angriff auf unsere demokratischen Werte. Gerade jetzt d\xc3\xbcrfen wir uns als Journalisten nicht einsch\xc3\xbcchtern lassen. Wir werden weiter verantwortungsvoll informieren, umfassend aufkl\xc3\xa4ren und vorurteilsfrei berichten.""\n\nBild: Funkhaus des BR in M\xc3\xbcnchen mit Schriftzug ""Je suis Charlie"", Rechte: BR/Lisa Hinder'","b""BR - Bayerischer Rundfunk's cover photo""",https://www.facebook.com/bayerischer.rundfunk/photos/a.522239827793089.140229.157820960901646/1050121705004896/?type=3,790.0,0.0,0.0,0.0,0.0,0.0,17.0,83.0,1.0,1.0,2015-01-09 18:16:56,1,0,0,0,0,1,1,0,0,2,201501,0,890.0
219,222,9742,The Sun,161385360554578.0,1075016962524742,2015-01-05 00:00:00,SEP-LOY,2015-01-08 10:43:27,link,"b'Two suspects in the Paris terror attack have been located, reports say.'",b'Terror massacre suspects arrested',http://sunpl.us/6182aQku,321.0,0.0,0.0,0.0,0.0,0.0,70.0,48.0,1.0,1.0,2015-01-08 10:43:27,1,0,0,0,0,1,0,0,1,0,201501,1,439.0
220,223,9776,ARD,48219766388.0,10152509878106389,2015-01-05 00:00:00,SEP-LOY,2015-01-07 22:58:24,video,"b'""Freiheit, Gleichheit, Br\xc3\xbcderlichkeit. Wir weichen vor euch irren Schl\xc3\xa4chtern nicht zur\xc3\xbcck."" Ein Kommentar von Sonia Seymour Mikich (WDR) zum Anschlag in Paris.'",missing_value,https://www.facebook.com/ARD/videos/10152509878106389/,17164.0,0.0,0.0,0.0,0.0,0.0,657.0,9611.0,1.0,1.0,2015-01-07 22:58:24,1,0,0,0,0,1,0,1,0,1,201501,0,27432.0
221,224,9782,ARD,48219766388.0,10152514207841389,2015-01-05 00:00:00,SEP-LOY,2015-01-09 22:07:06,video,"b'""Ich will die nicht ertragen, die in voller Absicht den Fundamentalismus der Terroristen mit einem Islam vermischen, der \xc3\xbcberwiegend friedlich ist."" Sigmund Gottlieb kommentiert die Terrorakte in Frankreich.'",missing_value,https://www.facebook.com/ARD/videos/10152514207841389/,1459.0,1.0,0.0,0.0,0.0,0.0,183.0,528.0,1.0,1.0,2015-01-09 22:07:06,1,0,0,0,0,1,0,1,0,1,201501,1,2171.0
222,225,9790,BBC News,228735667216.0,10152534189557217,2015-01-05 00:00:00,SEP-LOY,2015-01-08 11:44:40,video,b'France marks a minute of silence for victims of #CharlieHebdo attack.\n\nLatest: http://bbc.in/144PQ6T',missing_value,https://www.facebook.com/bbcnews/videos/10152534111642217/,20235.0,0.0,0.0,0.0,1.0,0.0,565.0,2829.0,1.0,1.0,2015-01-08 11:44:40,1,0,0,0,0,1,0,1,0,1,201501,0,23630.0
223,226,9793,BBC News,228735667216.0,10152536537787217,2015-01-05 00:00:00,SEP-LOY,2015-01-09 13:18:56,video,b'Gunman linked to policewoman killing suspected of new shooting in eastern Paris.\n\nWatch: Police surround Paris supermarket where gunman reported to be holding hostages. #CharlieHebdo\n\nLive updates: bbc.in/14ulyLt',missing_value,https://www.facebook.com/bbcnews/videos/10152536537787217/,12098.0,0.0,0.0,0.0,0.0,0.0,978.0,4023.0,1.0,1.0,2015-01-09 13:18:56,1,0,0,0,0,1,0,1,0,1,201501,0,17099.0
224,227,9795,BBC News,228735667216.0,10152541100692217,2015-01-05 00:00:00,SEP-LOY,2015-01-11 09:42:30,video,"b'More than 1 million people are expected to march in Paris in memory of the 17 victims of the #CharlieHebdo terror attacks. Thousands of soldiers and police are being deployed to protect the marchers.\n\nLondon will also hold a rally - and Tower Bridge will light up in the blue, white and red of the French flag.\n\nLIVE coverage: http://bbc.in/1y6xUUu #JeSuisCharlie'",missing_value,https://www.facebook.com/bbcnews/videos/10152540995972217/,17697.0,0.0,0.0,0.0,0.0,0.0,722.0,2600.0,1.0,1.0,2015-01-11 09:42:30,1,0,0,0,0,1,0,1,0,1,201501,1,21019.0
225,228,9797,BBC News,228735667216.0,10152541697192217,2015-01-05 00:00:00,SEP-LOY,2015-01-11 16:31:03,video,"b'""These extremists... do not represent the Muslim community. We are here with the French people, with the Jews, with all countries to fight against terror"" - Mehdi, Paris.\n\nLIVE coverage: http://bbc.in/1y6xUUu #JeSuisCharlie #MarcheRepublicaine'",missing_value,https://www.facebook.com/bbcnews/videos/10152541697192217/,23387.0,0.0,0.0,0.0,0.0,0.0,997.0,3676.0,1.0,1.0,2015-01-11 16:31:03,1,0,0,0,0,1,0,1,0,1,201501,1,28060.0
226,229,9806,KSTA,141063022950.0,10152608913257951,2015-01-05 00:00:00,SEP-LOY,2015-01-08 12:23:41,photo,"b'Eine riesige Welle der Solidarit\xc3\xa4t mit den Opfern des Anschlags auf \xe2\x80\x9eCharlie Hebdo\xe2\x80\x9c schwappt durchs Netz. Insbesondere Karikaturisten solidarisieren sich. Hier eine kleine Auswahl gro\xc3\x9fartiger Zeichnungen: http://goo.gl/JWq7PG\n(cm, Bild: Getty)'",b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10152608910262951/?type=3,151.0,0.0,0.0,0.0,0.0,0.0,5.0,12.0,1.0,1.0,2015-01-08 12:23:41,1,0,0,0,0,1,1,0,0,2,201501,0,168.0
227,230,9834,Channel 4 News,6622931938.0,10152657630956939,2015-01-05 00:00:00,SEP-LOY,2015-01-08 19:41:38,video,"b""Reacting to the Paris attacks Geert Wilders says he agrees with Nigel Farage that 'when it comes to immigration our countries really face problems'.""","b""'When it comes to immigration our countries really face problems'""",https://www.facebook.com/Channel4News/videos/10152657630956939/,527.0,1.0,0.0,0.0,0.0,0.0,249.0,1086.0,1.0,1.0,2015-01-08 19:41:38,1,0,0,0,0,1,0,1,0,1,201501,0,1863.0
228,231,9851,Handelsblatt,104709558232.0,10152662958758233,2015-01-05 00:00:00,SEP-LOY,2015-01-08 18:32:46,photo,"b'Unsere morgige Wochenendausgabe besch\xc3\xa4ftigt sich mit dem Anschlag auf das Satire-Magazin Charlie Hebdo Officiel und nennt die Werte, auf die es jetzt ankommt. ""Das Manifest der Freiheit"" ist das Titelthema dieser Ausgabe - jetzt schon als ePaper erh\xc3\xa4ltlich unter https://kaufhaus.handelsblatt.com/downloads/handelsblatt-epaper-p1951.html?ticket=ST-1883577-lVOKyGmYavQkSSzWtdx2-s02lcgiacc01.vhb.de (son)'",b'Timeline Photos',https://www.facebook.com/handelsblatt/photos/a.10150261034178233.323431.104709558232/10152662954073233/?type=3,78.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,1.0,1.0,2015-01-08 18:32:46,1,0,0,0,0,1,1,0,0,2,201501,0,91.0
229,232,9874,SÜDWEST PRESSE Online,167154977630.0,10152890483117631,2015-01-05 00:00:00,SEP-LOY,2015-01-08 09:46:15,photo,"b'F\xc3\xbcnf Minuten Schweigen - heute um 12 Uhr auf dem M\xc3\xbcnsterplatz: Bei dem Anschlag auf das franz\xc3\xb6sische Satire-Magazin ""Charlie Hebdo"" t\xc3\xb6teten islamistische Terroristen gestern zw\xc3\xb6lf M\xc3\xa4nner und Frauen. ""Ihr Tod ist uns Verpflichtung"", kommentiert unser Chefredakteur Ulrich Becker. Deshalb treffen wir uns heute, 12 Uhr am Brunnen auf dem M\xc3\xbcnsterplatz - mit Dank an Ralf Zwiebler f\xc3\xbcr die Idee. Kommt ihr dazu?'",b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10152890480512631/?type=3,159.0,0.0,0.0,0.0,0.0,0.0,20.0,31.0,1.0,1.0,2015-01-08 09:46:15,1,0,0,0,0,1,1,0,0,2,201501,1,210.0
230,233,9880,Financial Times,8860325749.0,10152956087795750,2015-01-05 00:00:00,SEP-LOY,2015-01-07 15:02:51,video,"b'Masked gunmen have shot dead 12 people, including two police officers, and injured many others in an attack on the Paris offices of French satirical magazine Charlie Hebdo. \n\nMore on this story: http://on.ft.com/1KlCVih'",missing_value,https://www.facebook.com/financialtimes/videos/10152956087795750/,260.0,0.0,0.0,0.0,0.0,0.0,62.0,119.0,1.0,1.0,2015-01-07 15:02:51,1,0,0,0,0,1,0,1,0,1,201501,0,441.0
231,234,9903,RP ONLINE,50327854366.0,10152992698084367,2015-01-05 00:00:00,SEP-LOY,2015-01-07 14:14:48,photo,b'Nach dem Anschlag auf #CharlieHebdo in Paris gibt es eine Solidarit\xc3\xa4tswelle auf Facebook und Twitter: #JeSuisCharlie. Aktuelle Entwicklungen im Live-Blog: http://www.rp-online.de/1.4781647',b'Timeline Photos',https://www.facebook.com/rponline/photos/a.388028984366.165204.50327854366/10152992694424367/?type=3,122.0,0.0,0.0,0.0,0.0,0.0,3.0,58.0,1.0,1.0,2015-01-07 14:14:48,1,0,0,0,0,1,1,0,0,2,201501,0,183.0
232,235,9904,RP ONLINE,50327854366.0,10152993198684367,2015-01-05 00:00:00,SEP-LOY,2015-01-07 18:46:25,photo,b'Viele Cartoonisten reagieren solidarisch auf den Anschlag in Paris. http://www.rp-online.de/1.4783287',b'Timeline Photos',https://www.facebook.com/rponline/photos/a.388028984366.165204.50327854366/10152993195059367/?type=3,177.0,0.0,0.0,0.0,0.0,0.0,1.0,49.0,1.0,1.0,2015-01-07 18:46:25,1,0,0,0,0,1,1,0,0,2,201501,0,227.0
233,236,9916,ZDF heute,112784955679.0,10153003505385680,2015-01-05 00:00:00,SEP-LOY,2015-01-08 09:56:40,video,b'Anschlag in Paris: ZDF-Korrespondentin Natalie Steger meldet sich aus Paris mit einem Blick auf die aktuellen Entwicklungen.',missing_value,https://www.facebook.com/ZDFheute/videos/10153003505385680/,119.0,0.0,0.0,0.0,0.0,0.0,18.0,27.0,1.0,1.0,2015-01-08 09:56:40,1,0,0,0,0,1,0,1,0,1,201501,0,164.0
234,237,9933,WELT,97515118114.0,10153047442968115,2015-01-05 00:00:00,SEP-LOY,2015-01-08 12:08:13,photo,b'Wir trauern um alle Opfer des Anschlags in Paris und verneigen uns vor dem Mut unserer franz\xc3\xb6sischen Kollegen. #JeSuisCharlie',b'Timeline Photos',https://www.facebook.com/welt/photos/a.298879548114.181606.97515118114/10153047441263115/?type=3,1724.0,0.0,0.0,0.0,0.0,0.0,78.0,74.0,1.0,1.0,2015-01-08 12:08:13,1,0,0,0,0,1,1,0,0,2,201501,0,1876.0
235,238,9939,Freie Presse,375109771472.0,10153051446351473,2015-01-05 00:00:00,SEP-LOY,2015-01-09 07:09:10,photo,"b'Guten Morgen!\n""Was darf die Satire? Alles"", formulierte einst der gro\xc3\x9fe Kurt Tucholsky. Heute vor 125 Jahren kam der Journalist und Schriftsteller in Berlin zur Welt - und sein Satz von 1919 ist aktueller denn je. Denn der Anschlag auf ""Charlie Hebdo"" wirft wieder die Frage auf, was Satire kann - und ob sie auch weltanschauliche Gef\xc3\xbchle verletzten darf.\n\nMehr unter http://bit.ly/1zYJSgW'",b'Timeline Photos',https://www.facebook.com/freiepresse/photos/a.10151210045371473.471017.375109771472/10153051444901473/?type=3,62.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,1.0,1.0,2015-01-09 07:09:10,1,0,0,0,0,1,1,0,0,2,201501,0,75.0
236,239,9944,WELT,97515118114.0,10153055294453115,2015-01-05 00:00:00,SEP-LOY,2015-01-11 15:46:38,link,b'In Paris beginnt der Schweigemarsch in Gedenken an die Opfer der Terroranschl\xc3\xa4ge. Viele Spitzenpolitiker aus aller Welt sind vor Ort.',b'Die Kanzlerin zeigt Frankreich ihre Solidarit\xc3\xa4t',http://trib.al/MJAMcFS,1626.0,0.0,0.0,0.0,0.0,0.0,204.0,241.0,1.0,1.0,2015-01-11 15:46:38,1,0,0,0,0,1,0,0,1,0,201501,1,2071.0
237,240,9956,HNA,237702348824.0,10153090771253825,2015-01-05 00:00:00,SEP-LOY,2015-01-08 15:52:14,status,"b'Der Anschlag auf das franz\xc3\xb6sische Satiremagazin Charlie Hebdo in Paris bewegt Millionen Menschen. Uns interessiert, wie die Stimmung in der franz\xc3\xb6sischen Hauptstadt ist. Vielleicht ist ja derzeit einer von euch dort - oder jemand, den ihr kennt, der hier einige S\xc3\xa4tze schreiben k\xc3\xb6nnte.'",missing_value,missing_value,8.0,0.0,0.0,0.0,0.0,0.0,7.0,1.0,1.0,1.0,2015-01-08 15:52:14,1,0,0,0,0,1,0,0,0,0,201501,0,16.0
238,241,9966,JUNGE FREIHEIT,13479664941.0,10153478613689942,2015-01-05 00:00:00,SEP-LOY,2015-01-07 16:28:10,link,b'Wir haben unseren Liveticker beendet. Hier alles wichtige zum Terroranschlag in Paris:',b'Eilmeldung: Viele Tote bei Anschlag auf Zeitung',http://jungefreiheit.de/politik/ausland/2015/eilmeldung-viele-tote-bei-anschlag-auf-zeitung/,22.0,0.0,0.0,0.0,0.0,0.0,3.0,7.0,1.0,1.0,2015-01-07 16:28:10,1,0,0,0,0,1,0,0,1,0,201501,1,32.0
239,242,10013,junge Welt,123292927706635.0,771380866231168,2015-01-07 00:00:00,ISLAMIST,2015-01-13 13:23:16,photo,"b'\xc2\xbbWir br\xc3\xa4uchten nur ein Bataillon von Journalisten und ein Bataillon von Politikern, das sofort eingesetzt werden kann, wenn solche Kriege gef\xc3\xbchrt werden, dann w\xc3\xa4re der ganze Spuk zu Ende.\xc2\xab\n\nLesen Sie morgen auf den jW-Thema-Seiten: Die Rede von Oskar Lafontaine auf der Rosa-Luxemburg-Konferenz \xc3\xbcber westliche Doppelmoral, NATO-Terror und die Verweigerung jedes Krieges von deutschem Boden. Auch am Kiosk! #rlk15 \n\nFoto: Andreas Domma'",b'Timeline Photos',https://www.facebook.com/junge.welt/photos/a.124194670949794.9293.123292927706635/771380742897847/?type=3,263.0,0.0,0.0,0.0,0.0,0.0,14.0,85.0,12.0,12.0,2015-01-13 13:23:16,1,0,0,0,0,0,1,0,0,2,201501,1,362.0
240,243,10014,Neue Westfälische,215604728519502.0,774762932603676,2015-01-07 00:00:00,ISLAMIST,2015-01-09 11:26:08,link,"b'Nach dem Anschlag in Paris in der Redaktion des satirischen Magazins ""Charlie Hebdo"" spricht die Polizei in NRW zurzeit s\xc3\xa4mtliche Medien des Landes an - offenbar aus Sorge um die Sicherheit in den Redaktionen.'",b'Sorge um Sicherheit in NRW-Redaktionen | Neue Westf\xc3\xa4lische - Mitte',http://www.nw.de/lokal/bielefeld/mitte/mitte/20301429_Sorge-um-Sicherheit-in-NRW-Redaktionen.html,8.0,0.0,0.0,0.0,0.0,0.0,6.0,4.0,12.0,12.0,2015-01-09 11:26:08,1,0,0,0,0,0,0,0,1,0,201501,0,18.0
241,244,10030,The Sunday People,633052486757819.0,816011375128595,2015-01-07 00:00:00,ISLAMIST,2015-01-07 15:30:17,link,"b""Here's the latest following today's shootings in Paris...""",b'Charlie Hebdo: Paris shooting latest updates',http://www.mirror.co.uk/news/world-news/charlie-hebdo-paris-shooting-live-4933848,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,12.0,12.0,2015-01-07 15:30:17,1,0,0,0,0,0,0,0,1,0,201501,0,2.0
242,245,10051,Monitor,186702484702033.0,825639404141668,2015-01-07 00:00:00,ISLAMIST,2015-01-08 14:04:45,status,"b'Nous sommes Charlie \xe2\x80\x93 Ihr nicht !\n\nZehn Journalisten sind gestern in Paris ermordet worden. Zehn mutige Kollegen, die sich von niemanden den Mund verbieten lassen wollten. Satiriker, die die Meinungs- und Kunstfreiheit ernst genommen haben und daf\xc3\xbcr mit ihrem Leben bezahlen mussten. Ja, dies war ein Anschlag auf die Pressefreiheit, der nicht nur uns als Kollegen emp\xc3\xb6rt, sondern jeden, f\xc3\xbcr den diese Freiheiten in einer weltoffenen, demokratischen Gesellschaft existenziell sind.\n \nWas mich fassungslos macht: Dass sich schon wenige Stunden nach dem Anschlag Trittbrettfahrer zu Wort melden, die daraus politisch Kapital schlagen wollen. Ausgerechnet jene Rechtspopulisten, die Montag f\xc3\xbcr Montag Journalisten als L\xc3\xbcgenpresse diffamieren, nur weil sie sich mit ihren Parolen nicht gemein machen. Die Forderungen von Pegida h\xc3\xa4tten vor dem Hintergrund des Anschlags \xe2\x80\x9ebesondere Aktualit\xc3\xa4t und Gewicht erhalten\xe2\x80\x9c, meinte der Rechtsausleger des AfD-Vorstands, Alexander Gauland, allen Ernstes. \xc3\x84hnlich zynisch \xc3\xa4u\xc3\x9ferten sich die Sprachrohre der selbsternannten Retter des Abendlandes.\n\nIn der Reaktion auf den Terroranschlag von Paris zeigen AfD und Pegida jetzt ihr wahres Gesicht. Nein, das darf man den Gaulands dieser Republik nicht durchgehen lassen: Dass sie auf unverfrorene Art und Weise islamische Lebensformen mit einen barbarischen Terroranschlag gleichsetzen. Dass sie ihr fremdenfeindliches S\xc3\xbcppchen auf den Gr\xc3\xa4bern von zehn ermordeten Journalisten kochen. Dass sie sich in klammheimlicher Freude die H\xc3\xa4nde reiben, um weiter zu z\xc3\xbcndeln am rechten Rand.\n\nWenn die zehn Kollegen f\xc3\xbcr eines ganz sicher nicht gestanden haben, dann f\xc3\xbcr den spie\xc3\x9fb\xc3\xbcrgerlichen Aufstand zur Rettung eines islamophoben Abendlandes. Deshalb: Haltet Euer Maul, wenigstens jetzt! Nous sommes Charlie. Ihr nicht!\n\nGeorg Restle\n\n#monitor #ardmonitor #georgrestle #jesuischarlie #pegida #afd #ard #CharlieHebdo'",missing_value,missing_value,8673.0,0.0,0.0,0.0,0.0,0.0,438.0,3684.0,12.0,12.0,2015-01-08 14:04:45,1,0,0,0,0,0,0,0,0,0,201501,1,12795.0
243,246,10061,Monitor,186702484702033.0,827209713984637,2015-01-07 00:00:00,ISLAMIST,2015-01-11 17:35:25,status,"b'Trittbrettfahrer der Angst - am Donnerstag bei Monitor!\n\nDer Terroranschlag von Paris sorgt bei deutschen Innenpolitikern f\xc3\xbcr die \xc3\xbcblichen Reflexe: Mehr \xc3\x9cberwachung, Vorratsdatenspeicherung, St\xc3\xa4rkung der Geheimdienste. Und am rechten Rand trommeln Pegida, AfD und Rechtsextremisten f\xc3\xbcr ihre Vorstellung von einem islamophoben Abendland. \nWer verteidigt hier wessen Freiheiten vor wem? \nMehr dazu am Donnerstag bei Monitor, 21:45 Uhr im Ersten. Vormerken!\n\n#monitor #ardmonitor #pegida #afd #wdr #ard #daserste'",missing_value,missing_value,393.0,0.0,0.0,0.0,0.0,0.0,50.0,97.0,12.0,12.0,2015-01-11 17:35:25,1,0,0,0,0,0,0,0,0,0,201501,1,540.0
244,247,10063,Monitor,186702484702033.0,828072280565047,2015-01-07 00:00:00,ISLAMIST,2015-01-13 14:49:08,status,b'Kn\xc3\xa4ste als Radikalisierungsanstalten? Die Themen bei Monitor am Donnerstag.\n\nZwei der Pariser Attent\xc3\xa4ter sollen im Gef\xc3\xa4ngnis im Kontakt mit islamistischen Gewaltt\xc3\xa4tern weiter radikalisiert worden sein. Der Knast als Radikalisierungsanstalt? Mehr dazu am Donnerstag bei MONITOR. Um 21:45 Uhr im Ersten. Hier unsere geplanten Themen:\n\n1. Trittbrettfahrer der Angst: Wie mit den Anschl\xc3\xa4gen von Paris Politik gemacht wird\n2. Gefahr aus dem Knast: radikalisierte Islamisten\n3. Krieg gegen den IS: Wo Deutschlands Waffen wirklich landen\n4. Schmutziger Deal: wie die Politik den Atomkonzernen zu Millionen-Klagen verhilft',missing_value,missing_value,78.0,0.0,0.0,0.0,0.0,0.0,5.0,26.0,12.0,12.0,2015-01-13 14:49:08,1,0,0,0,0,0,0,0,0,0,201501,0,109.0
245,248,10078,Radio Bremen,155771627779074.0,851948348161395,2015-01-07 00:00:00,ISLAMIST,2015-01-08 12:14:15,photo,"b'Dieses grauenhafte Verbrechen war auch ein Anschlag auf die Pressefreiheit. Dies geht uns alle an. Solidarit\xc3\xa4t zeigen ist das Mindeste, was wir tun k\xc3\xb6nnen. \n#JeSuisCharlie'",b'Cover Photos',https://www.facebook.com/radiobremen/photos/a.355448944478007.78453.155771627779074/851948018161428/?type=3,1541.0,0.0,0.0,0.0,0.0,0.0,28.0,240.0,12.0,12.0,2015-01-08 12:14:15,1,0,0,0,0,0,1,0,0,2,201501,0,1809.0
246,249,10079,Radio Bremen,155771627779074.0,851957214827175,2015-01-07 00:00:00,ISLAMIST,2015-01-08 12:34:06,photo,"b'Je suis Charlie - ich bin Charlie - damit m\xc3\xb6chte Radio Bremen Solidarit\xc3\xa4t mit den Opfern des Anschlags in Frankreich zeigen. Und wir sind nicht die einzigen: Journalistinnen und Journalisten in aller Welt haben nach dem Attentat auf die Redaktion des Magazins ""Charlie Hebdo"", bei dem gestern zw\xc3\xb6lf Menschen starben, f\xc3\xbcr die Meinungsfreiheit ausgesprochen. Bilder und Statements gibt es auch auf Twitter: https://twitter.com/hashtag/JeSuisCharlie'",b'Timeline Photos',https://www.facebook.com/radiobremen/photos/a.354144851275083.78158.155771627779074/851954731494090/?type=3,783.0,0.0,0.0,0.0,0.0,0.0,25.0,201.0,12.0,12.0,2015-01-08 12:34:06,1,0,0,0,0,0,1,0,0,2,201501,0,1009.0
247,250,10091,Daily Express,129617873765147.0,859925970734330,2015-01-07 00:00:00,ISLAMIST,2015-01-08 06:12:59,photo,b'PARIS SHOOTING LATEST: \n\nPolice issue arrest warrant for two French-Algerian brothers following Charlie Hebdo massacre while a third suspect SURRENDERS in north eastern France\n\nhttp://www.express.co.uk/news/world/550651/Shooting-Paris-Magazine-Charlie-Hebdo',b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/859925560734371/?type=3,48.0,0.0,0.0,0.0,0.0,0.0,10.0,22.0,12.0,12.0,2015-01-08 06:12:59,1,0,0,0,0,0,1,0,0,2,201501,0,80.0
248,251,10094,Daily Express,129617873765147.0,860603397333254,2015-01-07 00:00:00,ISLAMIST,2015-01-09 18:47:42,link,b'BREAKING: Abu Hamza jailed for LIFE by US court...\n\nhttp://www.express.co.uk/news/uk/551184/Abu-Hamza-jail-life-terrorism',b'BREAKING: Hate preacher Abu Hamza jailed for life for supporting terrorism',http://www.express.co.uk/news/uk/551184/Abu-Hamza-jail-life-terrorism,2029.0,0.0,0.0,0.0,0.0,0.0,374.0,426.0,12.0,12.0,2015-01-09 18:47:42,1,0,0,0,0,0,0,0,1,0,201501,1,2829.0
249,252,10098,WDR,124207927630198.0,874370369280613,2015-01-07 00:00:00,ISLAMIST,2015-01-12 11:49:41,link,"b'Altes Thema, neu diskutiert: Nach den Terroranschl\xc3\xa4gen in Paris ist die Debatte um die Vorratsdatenspeicherung neu entbrannt. Justizminister Maas (SPD) sprach sich dagegen aus. Der Bund Deutscher Kriminalbeamter sagt, dass die Daten bei der Terror-Bek\xc3\xa4mpfung von essentieller Bedeutung seien.'",b'WDR 2 Gespr\xc3\xa4ch zur Vorratsdatenspeicherung: Die Daten fehlen',http://www.wdr2.de/aktuell/vorratsdatenspeicherung-100.html,9.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,12.0,12.0,2015-01-12 11:49:41,1,0,0,0,0,0,0,0,1,0,201501,1,13.0
250,253,10101,London Evening Standard,165348596842143.0,875743685802627,2015-01-07 00:00:00,ISLAMIST,2015-01-07 18:32:37,photo,b'Londoners have gathered in Trafalgar Square to pay tribute to the victims of the #CharlieHebdo shootings in Paris \n\nFull story here: http://bit.ly/1xFzQnQ',b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/875743302469332/?type=3,5705.0,0.0,0.0,0.0,0.0,0.0,144.0,891.0,12.0,12.0,2015-01-07 18:32:37,1,0,0,0,0,0,1,0,0,2,201501,0,6740.0
251,254,10102,London Evening Standard,165348596842143.0,876274662416196,2015-01-07 00:00:00,ISLAMIST,2015-01-08 11:38:50,link,b'Nick Clegg accuses Nigel Farage of exploiting the Charlie Hebdo tragedy for \xe2\x80\x9cpolitical points\xe2\x80\x9d.\n\nWatch video here:',b'Nigel Farage accused of exploiting Paris shootings as he hits out at multiculturalism after massacre',https://www.standard.co.uk/news/politics/nigel-farage-accused-of-exploiting-paris-shootings-as-he-hits-out-at-multiculturalism-after-massacre-9964843.html?cmpid=facebook,120.0,0.0,0.0,0.0,0.0,0.0,72.0,44.0,12.0,12.0,2015-01-08 11:38:50,1,0,0,0,0,0,0,0,1,0,201501,0,236.0
252,255,10104,London Evening Standard,165348596842143.0,876799159030413,2015-01-07 00:00:00,ISLAMIST,2015-01-09 12:41:58,link,b'BREAKING: Shots fired and hostage taken in another attack in Paris.\n\nMore details here:',b'Shots fired as gunman takes hostage at kosher grocery in Paris',https://www.standard.co.uk/news/world/breaking-news-shots-fired-as-gunman-takes-hostage-at-kosher-grocery-in-paris-9967928.html,190.0,0.0,0.0,0.0,0.0,0.0,26.0,169.0,12.0,12.0,2015-01-09 12:41:58,1,0,0,0,0,0,0,0,1,0,201501,0,385.0
253,256,10105,London Evening Standard,165348596842143.0,876854645691531,2015-01-07 00:00:00,ISLAMIST,2015-01-09 14:49:17,photo,b'Police release images of suspects believed to be involved in the Paris attacks http://bit.ly/1Awm4nn',b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/876854362358226/?type=3,187.0,0.0,0.0,0.0,0.0,0.0,52.0,57.0,12.0,12.0,2015-01-09 14:49:17,1,0,0,0,0,0,1,0,0,2,201501,0,296.0
254,257,10145,City AM,213682385348579.0,911807952202682,2015-01-07 00:00:00,ISLAMIST,2015-01-07 11:36:16,link,b'This is what we know right now',b'Fatalities reported after shooting at Charlie Hebdo offices',http://www.cityam.com/206628/fatalities-reported-after-shooting-satirical-french-magazine-charlie-hebdo,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,2015-01-07 11:36:16,1,0,0,0,0,0,0,0,1,0,201501,0,2.0
255,258,10152,City AM,213682385348579.0,914805071902970,2015-01-07 00:00:00,ISLAMIST,2015-01-12 08:06:52,link,"b'""Millions of citizens will come to express their love of liberty, their love of fraternity.""'",b'France attacks: Huge crowds gather in Paris ahead of solidarity march',http://www.cityam.com/206845/france-attacks-one-million-expected-march-paris-including-world-leaders-david-cameron-and,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,12.0,2015-01-12 08:06:52,1,0,0,0,0,0,0,0,1,0,201501,0,0.0
256,259,10162,RTL,179133132098813.0,921288447883274,2015-01-07 00:00:00,ISLAMIST,2015-01-11 09:00:00,photo,"b'Carolin Kebekus sorgt f\xc3\xbcr grandiosen ""Pussyterror"". Schau jetzt bei RTL NOW rein: http://rtl-now.rtl.de/carolinkebekuspussyterror.php'",b'Timeline Photos',https://www.facebook.com/meinRTL/photos/a.317833411562117.86456.179133132098813/920356117976507/?type=3,866.0,0.0,0.0,0.0,0.0,0.0,101.0,23.0,12.0,12.0,2015-01-11 09:00:00,1,0,0,0,0,0,1,0,0,2,201501,1,990.0
257,260,10171,The Times and The Sunday Times,147384458624178.0,976197429076206,2015-01-07 00:00:00,ISLAMIST,2015-01-07 23:49:08,photo,b'Tomorrow\xe2\x80\x99s front page: Attack on freedom http://thetim.es/143qhTG',b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/976197415742874/?type=3,485.0,0.0,0.0,0.0,0.0,0.0,118.0,208.0,12.0,12.0,2015-01-07 23:49:08,1,0,0,0,0,0,1,0,0,2,201501,0,811.0
258,261,10172,The Times and The Sunday Times,147384458624178.0,976520149043934,2015-01-07 00:00:00,ISLAMIST,2015-01-08 15:00:02,photo,b'Times cartoonist Peter Brookes on Charlie Hebdo shooting',b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/976520139043935/?type=3,249.0,0.0,0.0,0.0,0.0,0.0,35.0,63.0,12.0,12.0,2015-01-08 15:00:02,1,0,0,0,0,0,1,0,0,2,201501,0,347.0
259,262,10175,The Times and The Sunday Times,147384458624178.0,977974902231792,2015-01-07 00:00:00,ISLAMIST,2015-01-10 21:40:06,photo,"b""Tomorrow's Sunday Times front page: Terror alert over 150 UK jihadists""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/977974882231794/?type=3,105.0,0.0,0.0,0.0,0.0,0.0,29.0,26.0,12.0,12.0,2015-01-10 21:40:06,1,0,0,0,0,0,1,0,0,2,201501,1,160.0
260,263,10183,SR.de,139381656076338.0,1001395689874926,2015-01-07 00:00:00,ISLAMIST,2015-01-10 15:23:31,photo,b'Rund 1.000 Menschen haben am Mittag vor dem franz\xc3\xb6sischen Generalkonsulat der Opfer der Terroranschl\xc3\xa4ge in Frankreich gedacht. #JeSuisCharlie\n\nhttp://sronline.sr-galerie.de/popup.php?type=album&id=314',b'Timeline Photos',https://www.facebook.com/SRonline.de/photos/a.390138457667322.110254.139381656076338/1001395276541634/?type=3,25.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,12.0,12.0,2015-01-10 15:23:31,1,0,0,0,0,0,1,0,0,2,201501,1,28.0
261,264,10185,The Daily Star,161612017189003.0,1003305799686283,2015-01-07 00:00:00,ISLAMIST,2015-01-07 11:59:00,photo,"b""BREAKING NEWS: 12 people shot dead in 'terrorist attack' on offices of Paris magazine\n\nThree cartoonists among dead with one named in al Qaida's Wanted Dead or Alive for Crimes Against Islam article\n\nMore here: \n\nhttp://www.dailystar.co.uk/news/latest-news/418859/Ten-shot-dead-at-offices-of-Paris-magazine""",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1003305593019637/?type=3,97.0,0.0,0.0,0.0,0.0,0.0,16.0,35.0,12.0,12.0,2015-01-07 11:59:00,1,0,0,0,0,0,1,0,0,2,201501,1,148.0
262,265,10192,The Daily Star,161612017189003.0,1004904199526443,2015-01-07 00:00:00,ISLAMIST,2015-01-08 09:00:50,photo,"b'BREAKING NEWS:\n\nFemale police officer has died in SECOND Paris shooting, sparking fears of copycat attacks.\n\nhttp://www.dailystar.co.uk/news/latest-news/419008/Paris-shooting-Charlie-Hebdo-magazine-manhunt-al-Qaida-cartoons'",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1004903992859797/?type=3,103.0,0.0,0.0,0.0,0.0,0.0,11.0,38.0,12.0,12.0,2015-01-08 09:00:50,1,0,0,0,0,0,1,0,0,2,201501,0,152.0
263,266,10193,The Daily Star,161612017189003.0,1004934489523414,2015-01-07 00:00:00,ISLAMIST,2015-01-08 10:47:42,photo,"b""Islam's tragedy \xe2\x80\x93 a trail of horror across the globe in the name of Allah \n\nhttp://www.dailystar.co.uk/news/latest-news/418997/Terrorism-Islamic-9-11-attacks""",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1004934402856756/?type=3,383.0,0.0,0.0,0.0,0.0,0.0,172.0,99.0,12.0,12.0,2015-01-08 10:47:42,1,0,0,0,0,0,1,0,0,2,201501,1,654.0
264,267,10201,The Daily Star,161612017189003.0,1005562152793981,2015-01-07 00:00:00,ISLAMIST,2015-01-09 14:40:18,photo,b'A SECOND hostage situation unfolding in Paris.\n\nTwo dead as six people \xe2\x80\x93 inc. mother & young baby \xe2\x80\x93 are held captive in Kosher supermarket.\n\nhttp://www.scottishdailystar.co.uk/news/latest-news/419240/Paris-shooting-Kosher-grocery-shop-hostage-Charlie-Hebdo-Vincennes',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1005561882794008/?type=3,55.0,0.0,0.0,0.0,0.0,0.0,11.0,20.0,12.0,12.0,2015-01-09 14:40:18,1,0,0,0,0,0,1,0,0,2,201501,0,86.0
265,268,10202,The Daily Star,161612017189003.0,1005612906122239,2015-01-07 00:00:00,ISLAMIST,2015-01-09 16:27:11,photo,b'BREAKING: Terror brothers behind Charlie Hebdo massacre killed by armed police following Paris siege \n\nhttp://www.dailystar.co.uk/news/latest-news/418859/Ten-shot-dead-at-offices-of-Paris-magazine',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1005612876122242/?type=3,675.0,0.0,0.0,0.0,0.0,1.0,115.0,86.0,12.0,12.0,2015-01-09 16:27:11,1,0,0,0,0,0,1,0,0,2,201501,1,877.0
266,269,10230,Sky News,164665060214766.0,1009421362405794,2015-01-07 00:00:00,ISLAMIST,2015-01-07 11:47:46,video,"b""Pictures emerge from the scene of the shooting at Charlie Hebdo's headquarters, where 11 people have been killed. Read more here: http://bit.ly/1w0W925""",missing_value,https://www.facebook.com/skynews/videos/1009421362405794/,840.0,0.0,0.0,0.0,0.0,0.0,171.0,465.0,12.0,12.0,2015-01-07 11:47:46,1,0,0,0,0,0,0,1,0,1,201501,0,1476.0
267,270,10232,Sky News,164665060214766.0,1011499972197933,2015-01-07 00:00:00,ISLAMIST,2015-01-08 14:12:14,video,b'Fiery debate asks whether being offended is the price of living in a free society following the attacks in Paris.',missing_value,https://www.facebook.com/skynews/videos/1011499972197933/,1752.0,0.0,0.0,0.0,0.0,0.0,896.0,1440.0,12.0,12.0,2015-01-08 14:12:14,1,0,0,0,0,0,0,1,0,1,201501,0,4088.0
268,271,10234,Sky News,164665060214766.0,1012571528757444,2015-01-07 00:00:00,ISLAMIST,2015-01-09 16:04:15,video,"b""VIDEO: This was the moment gunfire and explosions were heard at a warehouse where the Charlie Hebdo shooting suspects were holed up.\n\nIt's reported they have been killed and their hostage freed. Read more: http://bit.ly/1FzNZIP""",missing_value,https://www.facebook.com/skynews/videos/1012553762092554/,2668.0,0.0,0.0,0.0,0.0,0.0,428.0,1325.0,12.0,12.0,2015-01-09 16:04:15,1,0,0,0,0,0,0,1,0,1,201501,0,4421.0
269,272,10239,Sky News,164665060214766.0,1015233001824630,2015-01-07 00:00:00,ISLAMIST,2015-01-13 17:14:23,video,b'Dramatic new video shows Paris gunmen apparently shooting at a police car as they carried out their attacks last week. Read more: http://bit.ly/1IrvpAy',missing_value,https://www.facebook.com/skynews/videos/1015233001824630/,3541.0,0.0,0.0,0.0,0.0,0.0,538.0,3517.0,12.0,12.0,2015-01-13 17:14:23,1,0,0,0,0,0,0,1,0,1,201501,0,7596.0
270,273,10246,Frankfurter Rundschau,134100583282150.0,1045930968765769,2015-01-07 00:00:00,ISLAMIST,2015-01-08 10:52:20,link,b'Der Anschlag von Paris ist vor allem eine Herausforderung f\xc3\xbcr den Islam selbst \xe2\x80\x93 nicht f\xc3\xbcr den Westen. Die Demokratien werden weiter f\xc3\xbcr die Freiheit streiten m\xc3\xbcssen.',"b'Anschlag auf ""Charlie Hebdo"": \xe2\x80\x9eCharlie\xe2\x80\x9c - unsere Verpflichtung'","http://www.fr-online.de/terror/anschlag-auf--charlie-hebdo---charlie----unsere-verpflichtung,29500876,29504050.html",60.0,0.0,0.0,0.0,0.0,0.0,10.0,9.0,12.0,12.0,2015-01-08 10:52:20,1,0,0,0,0,0,0,0,1,0,201501,0,79.0
271,274,10253,Frankfurter Rundschau,134100583282150.0,1047331401959059,2015-01-07 00:00:00,ISLAMIST,2015-01-10 16:31:30,link,"b'Die Freien W\xc3\xa4hler im R\xc3\xb6mer hatten f\xc3\xbcr Samstag zu einem Schweigemarsch f\xc3\xbcr die Opfer des Terroranschlages auf die Pariser Satirezeitung Charlie Hebdo aufgerufen. 60 Teilnehmer kamen, rund 300 Gegendemonstranten blockierten allerdings die Route.'",b'Protest gegen Freie W\xc3\xa4hler: Schweigemarsch blockiert',"http://www.fr-online.de/frankfurt/protest-gegen-freie-waehler-schweigemarsch-blockiert,1472798,29529372,view,asFirstTeaser.html",71.0,0.0,0.0,0.0,0.0,0.0,17.0,13.0,12.0,12.0,2015-01-10 16:31:30,1,0,0,0,0,0,0,0,1,0,201501,1,101.0
272,275,10260,BR - Bayerischer Rundfunk,157820960901646.0,1049342261749507,2015-01-07 00:00:00,ISLAMIST,2015-01-08 09:47:55,photo,"b'""Je suis Charlie"" - ""Ich bin Charlie"" - einen Tag nach dem Anschlag auf das franz\xc3\xb6sische Satiremagazin ist der Slogan international zum Symbol der Solidarit\xc3\xa4t geworden. Und einmal mehr stellt sich die Frage: Wie weit darf Satire gehen? Wann werden religi\xc3\xb6se Gef\xc3\xbchle verletzt? Was hei\xc3\x9ft Meinungsfreiheit? Ist sie in Gefahr? Was meint Ihr? Diskutiert mit um 12.05 Uhr im Tagesgespr\xc3\xa4ch auf Bayern 2 und in ARD-alpha.\n\nMehr: http://br.de/s/1XnQAUy'",b'Timeline Photos',https://www.facebook.com/bayerischer.rundfunk/photos/a.546041238746281.145688.157820960901646/1049341218416278/?type=3,65.0,0.0,0.0,0.0,0.0,0.0,5.0,8.0,12.0,12.0,2015-01-08 09:47:55,1,0,0,0,0,0,1,0,0,2,201501,0,78.0
273,276,10263,BR - Bayerischer Rundfunk,157820960901646.0,1050121995004867,2015-01-07 00:00:00,ISLAMIST,2015-01-09 18:16:56,photo,"b'""Je suis Charlie"": Symbol der Solidarit\xc3\xa4t - auch der BR setzt ein Zeichen.\n\nBR-KollegInnen melden sich zu Wort (Bildergalerie): http://br.de/s/1XvOHT3 \n\nBR-Intendant Ulrich Wilhelm: \n""Wir sind alle Charlie"". Mit diesem Slogan, der zum Symbol f\xc3\xbcr die Solidarit\xc3\xa4t mit den Opfern des Pariser Anschlags geworden ist, signalisiert auch der BR sein Eintreten f\xc3\xbcr die Freiheit der unabh\xc3\xa4ngigen Berichterstattung. Das Attentat auf das Satiremagazin ist ein Attentat auf die Presse- und Meinungsfreiheit und damit ein Angriff auf unsere demokratischen Werte. Gerade jetzt d\xc3\xbcrfen wir uns als Journalisten nicht einsch\xc3\xbcchtern lassen. Wir werden weiter verantwortungsvoll informieren, umfassend aufkl\xc3\xa4ren und vorurteilsfrei berichten.""\n\nBild: Funkhaus des BR in M\xc3\xbcnchen mit Schriftzug ""Je suis Charlie"", Rechte: BR/Lisa Hinder'","b""BR - Bayerischer Rundfunk's cover photo""",https://www.facebook.com/bayerischer.rundfunk/photos/a.522239827793089.140229.157820960901646/1050121705004896/?type=3,790.0,0.0,0.0,0.0,0.0,0.0,17.0,83.0,12.0,12.0,2015-01-09 18:16:56,1,0,0,0,0,0,1,0,0,2,201501,0,890.0
274,277,10274,The Sun,161385360554578.0,1075016962524742,2015-01-07 00:00:00,ISLAMIST,2015-01-08 10:43:27,link,"b'Two suspects in the Paris terror attack have been located, reports say.'",b'Terror massacre suspects arrested',http://sunpl.us/6182aQku,321.0,0.0,0.0,0.0,0.0,0.0,70.0,48.0,12.0,12.0,2015-01-08 10:43:27,1,0,0,0,0,0,0,0,1,0,201501,1,439.0
275,278,10310,ARD,48219766388.0,10152509878106389,2015-01-07 00:00:00,ISLAMIST,2015-01-07 22:58:24,video,"b'""Freiheit, Gleichheit, Br\xc3\xbcderlichkeit. Wir weichen vor euch irren Schl\xc3\xa4chtern nicht zur\xc3\xbcck."" Ein Kommentar von Sonia Seymour Mikich (WDR) zum Anschlag in Paris.'",missing_value,https://www.facebook.com/ARD/videos/10152509878106389/,17164.0,0.0,0.0,0.0,0.0,0.0,657.0,9611.0,12.0,12.0,2015-01-07 22:58:24,1,0,0,0,0,0,0,1,0,1,201501,0,27432.0
276,279,10314,ARD,48219766388.0,10152514207841389,2015-01-07 00:00:00,ISLAMIST,2015-01-09 22:07:06,video,"b'""Ich will die nicht ertragen, die in voller Absicht den Fundamentalismus der Terroristen mit einem Islam vermischen, der \xc3\xbcberwiegend friedlich ist."" Sigmund Gottlieb kommentiert die Terrorakte in Frankreich.'",missing_value,https://www.facebook.com/ARD/videos/10152514207841389/,1459.0,1.0,0.0,0.0,0.0,0.0,183.0,528.0,12.0,12.0,2015-01-09 22:07:06,1,0,0,0,0,0,0,1,0,1,201501,1,2171.0
277,280,10322,BBC News,228735667216.0,10152534189557217,2015-01-07 00:00:00,ISLAMIST,2015-01-08 11:44:40,video,b'France marks a minute of silence for victims of #CharlieHebdo attack.\n\nLatest: http://bbc.in/144PQ6T',missing_value,https://www.facebook.com/bbcnews/videos/10152534111642217/,20235.0,0.0,0.0,0.0,1.0,0.0,565.0,2829.0,12.0,12.0,2015-01-08 11:44:40,1,0,0,0,0,0,0,1,0,1,201501,0,23630.0
278,281,10325,BBC News,228735667216.0,10152536537787217,2015-01-07 00:00:00,ISLAMIST,2015-01-09 13:18:56,video,b'Gunman linked to policewoman killing suspected of new shooting in eastern Paris.\n\nWatch: Police surround Paris supermarket where gunman reported to be holding hostages. #CharlieHebdo\n\nLive updates: bbc.in/14ulyLt',missing_value,https://www.facebook.com/bbcnews/videos/10152536537787217/,12098.0,0.0,0.0,0.0,0.0,0.0,978.0,4023.0,12.0,12.0,2015-01-09 13:18:56,1,0,0,0,0,0,0,1,0,1,201501,0,17099.0
279,282,10327,BBC News,228735667216.0,10152541100692217,2015-01-07 00:00:00,ISLAMIST,2015-01-11 09:42:30,video,"b'More than 1 million people are expected to march in Paris in memory of the 17 victims of the #CharlieHebdo terror attacks. Thousands of soldiers and police are being deployed to protect the marchers.\n\nLondon will also hold a rally - and Tower Bridge will light up in the blue, white and red of the French flag.\n\nLIVE coverage: http://bbc.in/1y6xUUu #JeSuisCharlie'",missing_value,https://www.facebook.com/bbcnews/videos/10152540995972217/,17697.0,0.0,0.0,0.0,0.0,0.0,722.0,2600.0,12.0,12.0,2015-01-11 09:42:30,1,0,0,0,0,0,0,1,0,1,201501,1,21019.0
280,283,10329,BBC News,228735667216.0,10152541697192217,2015-01-07 00:00:00,ISLAMIST,2015-01-11 16:31:03,video,"b'""These extremists... do not represent the Muslim community. We are here with the French people, with the Jews, with all countries to fight against terror"" - Mehdi, Paris.\n\nLIVE coverage: http://bbc.in/1y6xUUu #JeSuisCharlie #MarcheRepublicaine'",missing_value,https://www.facebook.com/bbcnews/videos/10152541697192217/,23387.0,0.0,0.0,0.0,0.0,0.0,997.0,3676.0,12.0,12.0,2015-01-11 16:31:03,1,0,0,0,0,0,0,1,0,1,201501,1,28060.0
281,284,10336,KSTA,141063022950.0,10152608913257951,2015-01-07 00:00:00,ISLAMIST,2015-01-08 12:23:41,photo,"b'Eine riesige Welle der Solidarit\xc3\xa4t mit den Opfern des Anschlags auf \xe2\x80\x9eCharlie Hebdo\xe2\x80\x9c schwappt durchs Netz. Insbesondere Karikaturisten solidarisieren sich. Hier eine kleine Auswahl gro\xc3\x9fartiger Zeichnungen: http://goo.gl/JWq7PG\n(cm, Bild: Getty)'",b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10152608910262951/?type=3,151.0,0.0,0.0,0.0,0.0,0.0,5.0,12.0,12.0,12.0,2015-01-08 12:23:41,1,0,0,0,0,0,1,0,0,2,201501,0,168.0
282,285,10356,Channel 4 News,6622931938.0,10152657630956939,2015-01-07 00:00:00,ISLAMIST,2015-01-08 19:41:38,video,"b""Reacting to the Paris attacks Geert Wilders says he agrees with Nigel Farage that 'when it comes to immigration our countries really face problems'.""","b""'When it comes to immigration our countries really face problems'""",https://www.facebook.com/Channel4News/videos/10152657630956939/,527.0,1.0,0.0,0.0,0.0,0.0,249.0,1086.0,12.0,12.0,2015-01-08 19:41:38,1,0,0,0,0,0,0,1,0,1,201501,0,1863.0
283,286,10366,Handelsblatt,104709558232.0,10152662958758233,2015-01-07 00:00:00,ISLAMIST,2015-01-08 18:32:46,photo,"b'Unsere morgige Wochenendausgabe besch\xc3\xa4ftigt sich mit dem Anschlag auf das Satire-Magazin Charlie Hebdo Officiel und nennt die Werte, auf die es jetzt ankommt. ""Das Manifest der Freiheit"" ist das Titelthema dieser Ausgabe - jetzt schon als ePaper erh\xc3\xa4ltlich unter https://kaufhaus.handelsblatt.com/downloads/handelsblatt-epaper-p1951.html?ticket=ST-1883577-lVOKyGmYavQkSSzWtdx2-s02lcgiacc01.vhb.de (son)'",b'Timeline Photos',https://www.facebook.com/handelsblatt/photos/a.10150261034178233.323431.104709558232/10152662954073233/?type=3,78.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,12.0,12.0,2015-01-08 18:32:46,1,0,0,0,0,0,1,0,0,2,201501,0,91.0
284,287,10397,SÜDWEST PRESSE Online,167154977630.0,10152890483117631,2015-01-07 00:00:00,ISLAMIST,2015-01-08 09:46:15,photo,"b'F\xc3\xbcnf Minuten Schweigen - heute um 12 Uhr auf dem M\xc3\xbcnsterplatz: Bei dem Anschlag auf das franz\xc3\xb6sische Satire-Magazin ""Charlie Hebdo"" t\xc3\xb6teten islamistische Terroristen gestern zw\xc3\xb6lf M\xc3\xa4nner und Frauen. ""Ihr Tod ist uns Verpflichtung"", kommentiert unser Chefredakteur Ulrich Becker. Deshalb treffen wir uns heute, 12 Uhr am Brunnen auf dem M\xc3\xbcnsterplatz - mit Dank an Ralf Zwiebler f\xc3\xbcr die Idee. Kommt ihr dazu?'",b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10152890480512631/?type=3,159.0,0.0,0.0,0.0,0.0,0.0,20.0,31.0,12.0,12.0,2015-01-08 09:46:15,1,0,0,0,0,0,1,0,0,2,201501,1,210.0
285,288,10400,SÜDWEST PRESSE Online,167154977630.0,10152901590732631,2015-01-07 00:00:00,ISLAMIST,2015-01-13 17:42:55,photo,"b'Die neue Ausgabe von ""Charlie Hebdo"" erscheint morgen weltweit drei Millionen Mal. Die S\xc3\x9cDWEST PRESSE macht morgen mit dem Titelblatt der ""Charlie Hebdo"" auf. Warum? Weil wir glauben, dass dieser Anschlag unsere Welt ver\xc3\xa4ndert hat. Es steht mehr auf dem Spiel als Meinungs- und Pressefreiheit. Es geht um unsere Art zu leben, zu denken, zu handeln.'",b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10152901579897631/?type=3,283.0,0.0,0.0,0.0,0.0,0.0,58.0,69.0,12.0,12.0,2015-01-13 17:42:55,1,0,0,0,0,0,1,0,0,2,201501,0,410.0
286,289,10401,Financial Times,8860325749.0,10152956087795750,2015-01-07 00:00:00,ISLAMIST,2015-01-07 15:02:51,video,"b'Masked gunmen have shot dead 12 people, including two police officers, and injured many others in an attack on the Paris offices of French satirical magazine Charlie Hebdo. \n\nMore on this story: http://on.ft.com/1KlCVih'",missing_value,https://www.facebook.com/financialtimes/videos/10152956087795750/,260.0,0.0,0.0,0.0,0.0,0.0,62.0,119.0,12.0,12.0,2015-01-07 15:02:51,1,0,0,0,0,0,0,1,0,1,201501,0,441.0
287,290,10410,RP ONLINE,50327854366.0,10152992698084367,2015-01-07 00:00:00,ISLAMIST,2015-01-07 14:14:48,photo,b'Nach dem Anschlag auf #CharlieHebdo in Paris gibt es eine Solidarit\xc3\xa4tswelle auf Facebook und Twitter: #JeSuisCharlie. Aktuelle Entwicklungen im Live-Blog: http://www.rp-online.de/1.4781647',b'Timeline Photos',https://www.facebook.com/rponline/photos/a.388028984366.165204.50327854366/10152992694424367/?type=3,122.0,0.0,0.0,0.0,0.0,0.0,3.0,58.0,12.0,12.0,2015-01-07 14:14:48,1,0,0,0,0,0,1,0,0,2,201501,0,183.0
288,291,10411,RP ONLINE,50327854366.0,10152993198684367,2015-01-07 00:00:00,ISLAMIST,2015-01-07 18:46:25,photo,b'Viele Cartoonisten reagieren solidarisch auf den Anschlag in Paris. http://www.rp-online.de/1.4783287',b'Timeline Photos',https://www.facebook.com/rponline/photos/a.388028984366.165204.50327854366/10152993195059367/?type=3,177.0,0.0,0.0,0.0,0.0,0.0,1.0,49.0,12.0,12.0,2015-01-07 18:46:25,1,0,0,0,0,0,1,0,0,2,201501,0,227.0
289,292,10423,ZDF heute,112784955679.0,10153003505385680,2015-01-07 00:00:00,ISLAMIST,2015-01-08 09:56:40,video,b'Anschlag in Paris: ZDF-Korrespondentin Natalie Steger meldet sich aus Paris mit einem Blick auf die aktuellen Entwicklungen.',missing_value,https://www.facebook.com/ZDFheute/videos/10153003505385680/,119.0,0.0,0.0,0.0,0.0,0.0,18.0,27.0,12.0,12.0,2015-01-08 09:56:40,1,0,0,0,0,0,0,1,0,1,201501,0,164.0
290,293,10432,RP ONLINE,50327854366.0,10153007906054367,2015-01-07 00:00:00,ISLAMIST,2015-01-13 12:38:57,link,b'Am D\xc3\xbcsseldorf Airport ist ein mutma\xc3\x9flicher Terrorhelfer festgenommen worden. (via RP D\xc3\xbcsseldorf)',b'Flughafen D\xc3\xbcsseldorf: Mutma\xc3\x9flicher islamistischer Terrorhelfer festgenommen',http://www.rp-online.de/nrw/staedte/duesseldorf/mutmasslicher-islamistischer-terrorhelfer-festgenommen-aid-1.4795803,277.0,0.0,0.0,0.0,0.0,0.0,16.0,78.0,12.0,12.0,2015-01-13 12:38:57,1,0,0,0,0,0,0,0,1,0,201501,1,371.0
291,294,10437,WELT,97515118114.0,10153047442968115,2015-01-07 00:00:00,ISLAMIST,2015-01-08 12:08:13,photo,b'Wir trauern um alle Opfer des Anschlags in Paris und verneigen uns vor dem Mut unserer franz\xc3\xb6sischen Kollegen. #JeSuisCharlie',b'Timeline Photos',https://www.facebook.com/welt/photos/a.298879548114.181606.97515118114/10153047441263115/?type=3,1724.0,0.0,0.0,0.0,0.0,0.0,78.0,74.0,12.0,12.0,2015-01-08 12:08:13,1,0,0,0,0,0,1,0,0,2,201501,0,1876.0
292,295,10443,Freie Presse,375109771472.0,10153051446351473,2015-01-07 00:00:00,ISLAMIST,2015-01-09 07:09:10,photo,"b'Guten Morgen!\n""Was darf die Satire? Alles"", formulierte einst der gro\xc3\x9fe Kurt Tucholsky. Heute vor 125 Jahren kam der Journalist und Schriftsteller in Berlin zur Welt - und sein Satz von 1919 ist aktueller denn je. Denn der Anschlag auf ""Charlie Hebdo"" wirft wieder die Frage auf, was Satire kann - und ob sie auch weltanschauliche Gef\xc3\xbchle verletzten darf.\n\nMehr unter http://bit.ly/1zYJSgW'",b'Timeline Photos',https://www.facebook.com/freiepresse/photos/a.10151210045371473.471017.375109771472/10153051444901473/?type=3,62.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,12.0,12.0,2015-01-09 07:09:10,1,0,0,0,0,0,1,0,0,2,201501,0,75.0
293,296,10448,WELT,97515118114.0,10153055294453115,2015-01-07 00:00:00,ISLAMIST,2015-01-11 15:46:38,link,b'In Paris beginnt der Schweigemarsch in Gedenken an die Opfer der Terroranschl\xc3\xa4ge. Viele Spitzenpolitiker aus aller Welt sind vor Ort.',b'Die Kanzlerin zeigt Frankreich ihre Solidarit\xc3\xa4t',http://trib.al/MJAMcFS,1626.0,0.0,0.0,0.0,0.0,0.0,204.0,241.0,12.0,12.0,2015-01-11 15:46:38,1,0,0,0,0,0,0,0,1,0,201501,1,2071.0
294,297,10467,HNA,237702348824.0,10153090771253825,2015-01-07 00:00:00,ISLAMIST,2015-01-08 15:52:14,status,"b'Der Anschlag auf das franz\xc3\xb6sische Satiremagazin Charlie Hebdo in Paris bewegt Millionen Menschen. Uns interessiert, wie die Stimmung in der franz\xc3\xb6sischen Hauptstadt ist. Vielleicht ist ja derzeit einer von euch dort - oder jemand, den ihr kennt, der hier einige S\xc3\xa4tze schreiben k\xc3\xb6nnte.'",missing_value,missing_value,8.0,0.0,0.0,0.0,0.0,0.0,7.0,1.0,12.0,12.0,2015-01-08 15:52:14,1,0,0,0,0,0,0,0,0,0,201501,0,16.0
295,298,10476,JUNGE FREIHEIT,13479664941.0,10153478613689942,2015-01-07 00:00:00,ISLAMIST,2015-01-07 16:28:10,link,b'Wir haben unseren Liveticker beendet. Hier alles wichtige zum Terroranschlag in Paris:',b'Eilmeldung: Viele Tote bei Anschlag auf Zeitung',http://jungefreiheit.de/politik/ausland/2015/eilmeldung-viele-tote-bei-anschlag-auf-zeitung/,22.0,0.0,0.0,0.0,0.0,0.0,3.0,7.0,12.0,12.0,2015-01-07 16:28:10,1,0,0,0,0,0,0,0,1,0,201501,1,32.0
296,299,10525,junge Welt,123292927706635.0,771380866231168,2015-01-08 00:00:00,ISLAMIST,2015-01-13 13:23:16,photo,"b'\xc2\xbbWir br\xc3\xa4uchten nur ein Bataillon von Journalisten und ein Bataillon von Politikern, das sofort eingesetzt werden kann, wenn solche Kriege gef\xc3\xbchrt werden, dann w\xc3\xa4re der ganze Spuk zu Ende.\xc2\xab\n\nLesen Sie morgen auf den jW-Thema-Seiten: Die Rede von Oskar Lafontaine auf der Rosa-Luxemburg-Konferenz \xc3\xbcber westliche Doppelmoral, NATO-Terror und die Verweigerung jedes Krieges von deutschem Boden. Auch am Kiosk! #rlk15 \n\nFoto: Andreas Domma'",b'Timeline Photos',https://www.facebook.com/junge.welt/photos/a.124194670949794.9293.123292927706635/771380742897847/?type=3,263.0,0.0,0.0,0.0,0.0,0.0,14.0,85.0,1.0,1.0,2015-01-13 13:23:16,1,0,0,0,0,0,1,0,0,2,201501,1,362.0
297,300,10526,ZDF,154149027994068.0,771411596267805,2015-01-08 00:00:00,ISLAMIST,2015-01-14 09:45:00,video,b'Unkommentierte Bilder der Mahnwache gegen islamistischen Terror am Brandenburger Tor gestern. #JeSuisCharlie',b'Gemeinsam gegen Terror',https://www.facebook.com/ZDF/videos/771411596267805/,441.0,0.0,0.0,0.0,0.0,0.0,58.0,96.0,1.0,1.0,2015-01-14 09:45:00,1,0,0,0,0,0,0,1,0,1,201501,1,595.0
298,301,10528,Neue Westfälische,215604728519502.0,774762932603676,2015-01-08 00:00:00,ISLAMIST,2015-01-09 11:26:08,link,"b'Nach dem Anschlag in Paris in der Redaktion des satirischen Magazins ""Charlie Hebdo"" spricht die Polizei in NRW zurzeit s\xc3\xa4mtliche Medien des Landes an - offenbar aus Sorge um die Sicherheit in den Redaktionen.'",b'Sorge um Sicherheit in NRW-Redaktionen | Neue Westf\xc3\xa4lische - Mitte',http://www.nw.de/lokal/bielefeld/mitte/mitte/20301429_Sorge-um-Sicherheit-in-NRW-Redaktionen.html,8.0,0.0,0.0,0.0,0.0,0.0,6.0,4.0,1.0,1.0,2015-01-09 11:26:08,1,0,0,0,0,0,0,0,1,0,201501,0,18.0
299,302,10563,Monitor,186702484702033.0,825639404141668,2015-01-08 00:00:00,ISLAMIST,2015-01-08 14:04:45,status,"b'Nous sommes Charlie \xe2\x80\x93 Ihr nicht !\n\nZehn Journalisten sind gestern in Paris ermordet worden. Zehn mutige Kollegen, die sich von niemanden den Mund verbieten lassen wollten. Satiriker, die die Meinungs- und Kunstfreiheit ernst genommen haben und daf\xc3\xbcr mit ihrem Leben bezahlen mussten. Ja, dies war ein Anschlag auf die Pressefreiheit, der nicht nur uns als Kollegen emp\xc3\xb6rt, sondern jeden, f\xc3\xbcr den diese Freiheiten in einer weltoffenen, demokratischen Gesellschaft existenziell sind.\n \nWas mich fassungslos macht: Dass sich schon wenige Stunden nach dem Anschlag Trittbrettfahrer zu Wort melden, die daraus politisch Kapital schlagen wollen. Ausgerechnet jene Rechtspopulisten, die Montag f\xc3\xbcr Montag Journalisten als L\xc3\xbcgenpresse diffamieren, nur weil sie sich mit ihren Parolen nicht gemein machen. Die Forderungen von Pegida h\xc3\xa4tten vor dem Hintergrund des Anschlags \xe2\x80\x9ebesondere Aktualit\xc3\xa4t und Gewicht erhalten\xe2\x80\x9c, meinte der Rechtsausleger des AfD-Vorstands, Alexander Gauland, allen Ernstes. \xc3\x84hnlich zynisch \xc3\xa4u\xc3\x9ferten sich die Sprachrohre der selbsternannten Retter des Abendlandes.\n\nIn der Reaktion auf den Terroranschlag von Paris zeigen AfD und Pegida jetzt ihr wahres Gesicht. Nein, das darf man den Gaulands dieser Republik nicht durchgehen lassen: Dass sie auf unverfrorene Art und Weise islamische Lebensformen mit einen barbarischen Terroranschlag gleichsetzen. Dass sie ihr fremdenfeindliches S\xc3\xbcppchen auf den Gr\xc3\xa4bern von zehn ermordeten Journalisten kochen. Dass sie sich in klammheimlicher Freude die H\xc3\xa4nde reiben, um weiter zu z\xc3\xbcndeln am rechten Rand.\n\nWenn die zehn Kollegen f\xc3\xbcr eines ganz sicher nicht gestanden haben, dann f\xc3\xbcr den spie\xc3\x9fb\xc3\xbcrgerlichen Aufstand zur Rettung eines islamophoben Abendlandes. Deshalb: Haltet Euer Maul, wenigstens jetzt! Nous sommes Charlie. Ihr nicht!\n\nGeorg Restle\n\n#monitor #ardmonitor #georgrestle #jesuischarlie #pegida #afd #ard #CharlieHebdo'",missing_value,missing_value,8673.0,0.0,0.0,0.0,0.0,0.0,438.0,3684.0,1.0,1.0,2015-01-08 14:04:45,1,0,0,0,0,0,0,0,0,0,201501,1,12795.0
300,303,10570,SWR Aktuell,112906815414721.0,826951284010267,2015-01-08 00:00:00,ISLAMIST,2015-01-14 16:28:53,video,b'#CharlieHebdo: wie reagieren die Menschen in Rheinland-Pfalz auf die erste Ausgabe seit den Terror-Attacken in Paris?',missing_value,https://www.facebook.com/SWRAktuell/videos/826951284010267/,4.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2015-01-14 16:28:53,1,0,0,0,0,0,0,1,0,1,201501,1,6.0
301,304,10574,Monitor,186702484702033.0,827209713984637,2015-01-08 00:00:00,ISLAMIST,2015-01-11 17:35:25,status,"b'Trittbrettfahrer der Angst - am Donnerstag bei Monitor!\n\nDer Terroranschlag von Paris sorgt bei deutschen Innenpolitikern f\xc3\xbcr die \xc3\xbcblichen Reflexe: Mehr \xc3\x9cberwachung, Vorratsdatenspeicherung, St\xc3\xa4rkung der Geheimdienste. Und am rechten Rand trommeln Pegida, AfD und Rechtsextremisten f\xc3\xbcr ihre Vorstellung von einem islamophoben Abendland. \nWer verteidigt hier wessen Freiheiten vor wem? \nMehr dazu am Donnerstag bei Monitor, 21:45 Uhr im Ersten. Vormerken!\n\n#monitor #ardmonitor #pegida #afd #wdr #ard #daserste'",missing_value,missing_value,393.0,0.0,0.0,0.0,0.0,0.0,50.0,97.0,1.0,1.0,2015-01-11 17:35:25,1,0,0,0,0,0,0,0,0,0,201501,1,540.0
302,305,10576,Monitor,186702484702033.0,828072280565047,2015-01-08 00:00:00,ISLAMIST,2015-01-13 14:49:08,status,b'Kn\xc3\xa4ste als Radikalisierungsanstalten? Die Themen bei Monitor am Donnerstag.\n\nZwei der Pariser Attent\xc3\xa4ter sollen im Gef\xc3\xa4ngnis im Kontakt mit islamistischen Gewaltt\xc3\xa4tern weiter radikalisiert worden sein. Der Knast als Radikalisierungsanstalt? Mehr dazu am Donnerstag bei MONITOR. Um 21:45 Uhr im Ersten. Hier unsere geplanten Themen:\n\n1. Trittbrettfahrer der Angst: Wie mit den Anschl\xc3\xa4gen von Paris Politik gemacht wird\n2. Gefahr aus dem Knast: radikalisierte Islamisten\n3. Krieg gegen den IS: Wo Deutschlands Waffen wirklich landen\n4. Schmutziger Deal: wie die Politik den Atomkonzernen zu Millionen-Klagen verhilft',missing_value,missing_value,78.0,0.0,0.0,0.0,0.0,0.0,5.0,26.0,1.0,1.0,2015-01-13 14:49:08,1,0,0,0,0,0,0,0,0,0,201501,0,109.0
303,306,10589,Radio Bremen,155771627779074.0,851948348161395,2015-01-08 00:00:00,ISLAMIST,2015-01-08 12:14:15,photo,"b'Dieses grauenhafte Verbrechen war auch ein Anschlag auf die Pressefreiheit. Dies geht uns alle an. Solidarit\xc3\xa4t zeigen ist das Mindeste, was wir tun k\xc3\xb6nnen. \n#JeSuisCharlie'",b'Cover Photos',https://www.facebook.com/radiobremen/photos/a.355448944478007.78453.155771627779074/851948018161428/?type=3,1541.0,0.0,0.0,0.0,0.0,0.0,28.0,240.0,1.0,1.0,2015-01-08 12:14:15,1,0,0,0,0,0,1,0,0,2,201501,0,1809.0
304,307,10590,Radio Bremen,155771627779074.0,851957214827175,2015-01-08 00:00:00,ISLAMIST,2015-01-08 12:34:06,photo,"b'Je suis Charlie - ich bin Charlie - damit m\xc3\xb6chte Radio Bremen Solidarit\xc3\xa4t mit den Opfern des Anschlags in Frankreich zeigen. Und wir sind nicht die einzigen: Journalistinnen und Journalisten in aller Welt haben nach dem Attentat auf die Redaktion des Magazins ""Charlie Hebdo"", bei dem gestern zw\xc3\xb6lf Menschen starben, f\xc3\xbcr die Meinungsfreiheit ausgesprochen. Bilder und Statements gibt es auch auf Twitter: https://twitter.com/hashtag/JeSuisCharlie'",b'Timeline Photos',https://www.facebook.com/radiobremen/photos/a.354144851275083.78158.155771627779074/851954731494090/?type=3,783.0,0.0,0.0,0.0,0.0,0.0,25.0,201.0,1.0,1.0,2015-01-08 12:34:06,1,0,0,0,0,0,1,0,0,2,201501,0,1009.0
305,308,10603,Daily Express,129617873765147.0,859925970734330,2015-01-08 00:00:00,ISLAMIST,2015-01-08 06:12:59,photo,b'PARIS SHOOTING LATEST: \n\nPolice issue arrest warrant for two French-Algerian brothers following Charlie Hebdo massacre while a third suspect SURRENDERS in north eastern France\n\nhttp://www.express.co.uk/news/world/550651/Shooting-Paris-Magazine-Charlie-Hebdo',b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/859925560734371/?type=3,48.0,0.0,0.0,0.0,0.0,0.0,10.0,22.0,1.0,1.0,2015-01-08 06:12:59,1,0,0,0,0,0,1,0,0,2,201501,0,80.0
306,309,10606,Daily Express,129617873765147.0,860603397333254,2015-01-08 00:00:00,ISLAMIST,2015-01-09 18:47:42,link,b'BREAKING: Abu Hamza jailed for LIFE by US court...\n\nhttp://www.express.co.uk/news/uk/551184/Abu-Hamza-jail-life-terrorism',b'BREAKING: Hate preacher Abu Hamza jailed for life for supporting terrorism',http://www.express.co.uk/news/uk/551184/Abu-Hamza-jail-life-terrorism,2029.0,0.0,0.0,0.0,0.0,0.0,374.0,426.0,1.0,1.0,2015-01-09 18:47:42,1,0,0,0,0,0,0,0,1,0,201501,1,2829.0
307,310,10610,WDR,124207927630198.0,874370369280613,2015-01-08 00:00:00,ISLAMIST,2015-01-12 11:49:41,link,"b'Altes Thema, neu diskutiert: Nach den Terroranschl\xc3\xa4gen in Paris ist die Debatte um die Vorratsdatenspeicherung neu entbrannt. Justizminister Maas (SPD) sprach sich dagegen aus. Der Bund Deutscher Kriminalbeamter sagt, dass die Daten bei der Terror-Bek\xc3\xa4mpfung von essentieller Bedeutung seien.'",b'WDR 2 Gespr\xc3\xa4ch zur Vorratsdatenspeicherung: Die Daten fehlen',http://www.wdr2.de/aktuell/vorratsdatenspeicherung-100.html,9.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,1.0,1.0,2015-01-12 11:49:41,1,0,0,0,0,0,0,0,1,0,201501,1,13.0
308,311,10613,London Evening Standard,165348596842143.0,876274662416196,2015-01-08 00:00:00,ISLAMIST,2015-01-08 11:38:50,link,b'Nick Clegg accuses Nigel Farage of exploiting the Charlie Hebdo tragedy for \xe2\x80\x9cpolitical points\xe2\x80\x9d.\n\nWatch video here:',b'Nigel Farage accused of exploiting Paris shootings as he hits out at multiculturalism after massacre',https://www.standard.co.uk/news/politics/nigel-farage-accused-of-exploiting-paris-shootings-as-he-hits-out-at-multiculturalism-after-massacre-9964843.html?cmpid=facebook,120.0,0.0,0.0,0.0,0.0,0.0,72.0,44.0,1.0,1.0,2015-01-08 11:38:50,1,0,0,0,0,0,0,0,1,0,201501,0,236.0
309,312,10615,London Evening Standard,165348596842143.0,876799159030413,2015-01-08 00:00:00,ISLAMIST,2015-01-09 12:41:58,link,b'BREAKING: Shots fired and hostage taken in another attack in Paris.\n\nMore details here:',b'Shots fired as gunman takes hostage at kosher grocery in Paris',https://www.standard.co.uk/news/world/breaking-news-shots-fired-as-gunman-takes-hostage-at-kosher-grocery-in-paris-9967928.html,190.0,0.0,0.0,0.0,0.0,0.0,26.0,169.0,1.0,1.0,2015-01-09 12:41:58,1,0,0,0,0,0,0,0,1,0,201501,0,385.0
310,313,10616,London Evening Standard,165348596842143.0,876854645691531,2015-01-08 00:00:00,ISLAMIST,2015-01-09 14:49:17,photo,b'Police release images of suspects believed to be involved in the Paris attacks http://bit.ly/1Awm4nn',b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/876854362358226/?type=3,187.0,0.0,0.0,0.0,0.0,0.0,52.0,57.0,1.0,1.0,2015-01-09 14:49:17,1,0,0,0,0,0,1,0,0,2,201501,0,296.0
311,314,10656,City AM,213682385348579.0,914805071902970,2015-01-08 00:00:00,ISLAMIST,2015-01-12 08:06:52,link,"b'""Millions of citizens will come to express their love of liberty, their love of fraternity.""'",b'France attacks: Huge crowds gather in Paris ahead of solidarity march',http://www.cityam.com/206845/france-attacks-one-million-expected-march-paris-including-world-leaders-david-cameron-and,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2015-01-12 08:06:52,1,0,0,0,0,0,0,0,1,0,201501,0,0.0
312,315,10665,RTL,179133132098813.0,921288447883274,2015-01-08 00:00:00,ISLAMIST,2015-01-11 09:00:00,photo,"b'Carolin Kebekus sorgt f\xc3\xbcr grandiosen ""Pussyterror"". Schau jetzt bei RTL NOW rein: http://rtl-now.rtl.de/carolinkebekuspussyterror.php'",b'Timeline Photos',https://www.facebook.com/meinRTL/photos/a.317833411562117.86456.179133132098813/920356117976507/?type=3,866.0,0.0,0.0,0.0,0.0,0.0,101.0,23.0,1.0,1.0,2015-01-11 09:00:00,1,0,0,0,0,0,1,0,0,2,201501,1,990.0
313,316,10674,The Times and The Sunday Times,147384458624178.0,976520149043934,2015-01-08 00:00:00,ISLAMIST,2015-01-08 15:00:02,photo,b'Times cartoonist Peter Brookes on Charlie Hebdo shooting',b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/976520139043935/?type=3,249.0,0.0,0.0,0.0,0.0,0.0,35.0,63.0,1.0,1.0,2015-01-08 15:00:02,1,0,0,0,0,0,1,0,0,2,201501,0,347.0
314,317,10677,The Times and The Sunday Times,147384458624178.0,977974902231792,2015-01-08 00:00:00,ISLAMIST,2015-01-10 21:40:06,photo,"b""Tomorrow's Sunday Times front page: Terror alert over 150 UK jihadists""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/977974882231794/?type=3,105.0,0.0,0.0,0.0,0.0,0.0,29.0,26.0,1.0,1.0,2015-01-10 21:40:06,1,0,0,0,0,0,1,0,0,2,201501,1,160.0
315,318,10684,The Times and The Sunday Times,147384458624178.0,980616621967620,2015-01-08 00:00:00,ISLAMIST,2015-01-14 22:44:30,photo,"b""Tomorrow's front page: A prosperous west will beat terror, vows Obama\nhttp://thetim.es/1C27cij""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/980616615300954/?type=3,88.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,1.0,1.0,2015-01-14 22:44:30,1,0,0,0,0,0,1,0,0,2,201501,1,130.0
316,319,10686,SR.de,139381656076338.0,1001395689874926,2015-01-08 00:00:00,ISLAMIST,2015-01-10 15:23:31,photo,b'Rund 1.000 Menschen haben am Mittag vor dem franz\xc3\xb6sischen Generalkonsulat der Opfer der Terroranschl\xc3\xa4ge in Frankreich gedacht. #JeSuisCharlie\n\nhttp://sronline.sr-galerie.de/popup.php?type=album&id=314',b'Timeline Photos',https://www.facebook.com/SRonline.de/photos/a.390138457667322.110254.139381656076338/1001395276541634/?type=3,25.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,2015-01-10 15:23:31,1,0,0,0,0,0,1,0,0,2,201501,1,28.0
317,320,10690,The Daily Star,161612017189003.0,1004904199526443,2015-01-08 00:00:00,ISLAMIST,2015-01-08 09:00:50,photo,"b'BREAKING NEWS:\n\nFemale police officer has died in SECOND Paris shooting, sparking fears of copycat attacks.\n\nhttp://www.dailystar.co.uk/news/latest-news/419008/Paris-shooting-Charlie-Hebdo-magazine-manhunt-al-Qaida-cartoons'",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1004903992859797/?type=3,103.0,0.0,0.0,0.0,0.0,0.0,11.0,38.0,1.0,1.0,2015-01-08 09:00:50,1,0,0,0,0,0,1,0,0,2,201501,0,152.0
318,321,10691,The Daily Star,161612017189003.0,1004934489523414,2015-01-08 00:00:00,ISLAMIST,2015-01-08 10:47:42,photo,"b""Islam's tragedy \xe2\x80\x93 a trail of horror across the globe in the name of Allah \n\nhttp://www.dailystar.co.uk/news/latest-news/418997/Terrorism-Islamic-9-11-attacks""",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1004934402856756/?type=3,383.0,0.0,0.0,0.0,0.0,0.0,172.0,99.0,1.0,1.0,2015-01-08 10:47:42,1,0,0,0,0,0,1,0,0,2,201501,1,654.0
319,322,10699,The Daily Star,161612017189003.0,1005562152793981,2015-01-08 00:00:00,ISLAMIST,2015-01-09 14:40:18,photo,b'A SECOND hostage situation unfolding in Paris.\n\nTwo dead as six people \xe2\x80\x93 inc. mother & young baby \xe2\x80\x93 are held captive in Kosher supermarket.\n\nhttp://www.scottishdailystar.co.uk/news/latest-news/419240/Paris-shooting-Kosher-grocery-shop-hostage-Charlie-Hebdo-Vincennes',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1005561882794008/?type=3,55.0,0.0,0.0,0.0,0.0,0.0,11.0,20.0,1.0,1.0,2015-01-09 14:40:18,1,0,0,0,0,0,1,0,0,2,201501,0,86.0
320,323,10700,The Daily Star,161612017189003.0,1005612906122239,2015-01-08 00:00:00,ISLAMIST,2015-01-09 16:27:11,photo,b'BREAKING: Terror brothers behind Charlie Hebdo massacre killed by armed police following Paris siege \n\nhttp://www.dailystar.co.uk/news/latest-news/418859/Ten-shot-dead-at-offices-of-Paris-magazine',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1005612876122242/?type=3,675.0,0.0,0.0,0.0,0.0,1.0,115.0,86.0,1.0,1.0,2015-01-09 16:27:11,1,0,0,0,0,0,1,0,0,2,201501,1,877.0
321,324,10732,The Daily Star,161612017189003.0,1008585829158280,2015-01-08 00:00:00,ISLAMIST,2015-01-14 21:52:12,photo,"b'VIDEO: Watch teen in handcuffs save the life of cop having heart attack \n\nSee, not everyone is a bad guy!\n\nhttp://www.dailystar.co.uk/news/latest-news/420184/Watch-teen-handcuffs-save-life-cop-heart-attack'",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1008585515824978/?type=3,235.0,0.0,0.0,0.0,0.0,0.0,13.0,18.0,1.0,1.0,2015-01-14 21:52:12,1,0,0,0,0,0,1,0,0,2,201501,0,266.0
322,325,10733,Sky News,164665060214766.0,1011499972197933,2015-01-08 00:00:00,ISLAMIST,2015-01-08 14:12:14,video,b'Fiery debate asks whether being offended is the price of living in a free society following the attacks in Paris.',missing_value,https://www.facebook.com/skynews/videos/1011499972197933/,1752.0,0.0,0.0,0.0,0.0,0.0,896.0,1440.0,1.0,1.0,2015-01-08 14:12:14,1,0,0,0,0,0,0,1,0,1,201501,0,4088.0
323,326,10735,Sky News,164665060214766.0,1012571528757444,2015-01-08 00:00:00,ISLAMIST,2015-01-09 16:04:15,video,"b""VIDEO: This was the moment gunfire and explosions were heard at a warehouse where the Charlie Hebdo shooting suspects were holed up.\n\nIt's reported they have been killed and their hostage freed. Read more: http://bit.ly/1FzNZIP""",missing_value,https://www.facebook.com/skynews/videos/1012553762092554/,2668.0,0.0,0.0,0.0,0.0,0.0,428.0,1325.0,1.0,1.0,2015-01-09 16:04:15,1,0,0,0,0,0,0,1,0,1,201501,0,4421.0
324,327,10740,Sky News,164665060214766.0,1015233001824630,2015-01-08 00:00:00,ISLAMIST,2015-01-13 17:14:23,video,b'Dramatic new video shows Paris gunmen apparently shooting at a police car as they carried out their attacks last week. Read more: http://bit.ly/1IrvpAy',missing_value,https://www.facebook.com/skynews/videos/1015233001824630/,3541.0,0.0,0.0,0.0,0.0,0.0,538.0,3517.0,1.0,1.0,2015-01-13 17:14:23,1,0,0,0,0,0,0,1,0,1,201501,0,7596.0
325,328,10746,Frankfurter Rundschau,134100583282150.0,1045930968765769,2015-01-08 00:00:00,ISLAMIST,2015-01-08 10:52:20,link,b'Der Anschlag von Paris ist vor allem eine Herausforderung f\xc3\xbcr den Islam selbst \xe2\x80\x93 nicht f\xc3\xbcr den Westen. Die Demokratien werden weiter f\xc3\xbcr die Freiheit streiten m\xc3\xbcssen.',"b'Anschlag auf ""Charlie Hebdo"": \xe2\x80\x9eCharlie\xe2\x80\x9c - unsere Verpflichtung'","http://www.fr-online.de/terror/anschlag-auf--charlie-hebdo---charlie----unsere-verpflichtung,29500876,29504050.html",60.0,0.0,0.0,0.0,0.0,0.0,10.0,9.0,1.0,1.0,2015-01-08 10:52:20,1,0,0,0,0,0,0,0,1,0,201501,0,79.0
326,329,10753,Frankfurter Rundschau,134100583282150.0,1047331401959059,2015-01-08 00:00:00,ISLAMIST,2015-01-10 16:31:30,link,"b'Die Freien W\xc3\xa4hler im R\xc3\xb6mer hatten f\xc3\xbcr Samstag zu einem Schweigemarsch f\xc3\xbcr die Opfer des Terroranschlages auf die Pariser Satirezeitung Charlie Hebdo aufgerufen. 60 Teilnehmer kamen, rund 300 Gegendemonstranten blockierten allerdings die Route.'",b'Protest gegen Freie W\xc3\xa4hler: Schweigemarsch blockiert',"http://www.fr-online.de/frankfurt/protest-gegen-freie-waehler-schweigemarsch-blockiert,1472798,29529372,view,asFirstTeaser.html",71.0,0.0,0.0,0.0,0.0,0.0,17.0,13.0,1.0,1.0,2015-01-10 16:31:30,1,0,0,0,0,0,0,0,1,0,201501,1,101.0
327,330,10759,BR - Bayerischer Rundfunk,157820960901646.0,1049342261749507,2015-01-08 00:00:00,ISLAMIST,2015-01-08 09:47:55,photo,"b'""Je suis Charlie"" - ""Ich bin Charlie"" - einen Tag nach dem Anschlag auf das franz\xc3\xb6sische Satiremagazin ist der Slogan international zum Symbol der Solidarit\xc3\xa4t geworden. Und einmal mehr stellt sich die Frage: Wie weit darf Satire gehen? Wann werden religi\xc3\xb6se Gef\xc3\xbchle verletzt? Was hei\xc3\x9ft Meinungsfreiheit? Ist sie in Gefahr? Was meint Ihr? Diskutiert mit um 12.05 Uhr im Tagesgespr\xc3\xa4ch auf Bayern 2 und in ARD-alpha.\n\nMehr: http://br.de/s/1XnQAUy'",b'Timeline Photos',https://www.facebook.com/bayerischer.rundfunk/photos/a.546041238746281.145688.157820960901646/1049341218416278/?type=3,65.0,0.0,0.0,0.0,0.0,0.0,5.0,8.0,1.0,1.0,2015-01-08 09:47:55,1,0,0,0,0,0,1,0,0,2,201501,0,78.0
328,331,10763,Frankfurter Rundschau,134100583282150.0,1049944041697795,2015-01-08 00:00:00,ISLAMIST,2015-01-14 11:38:44,link,"b'Statt nach dem Terror in Paris eine Versch\xc3\xa4rfung der Sicherheitspolitik hinzunehmen, sollten wir uns freiheitlicher Werte versichern. Nur dann wird aus Angst kein Hass, meint FR-Autor Stephan Hebel in seinem Leitartikel.'",b'Sicherheitspolitik: Die andere Art der inneren Sicherheit',"http://www.fr-online.de/meinung/sicherheitspolitik-die-andere-art-der-inneren-sicherheit,1472602,29557082.html",26.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,1.0,1.0,2015-01-14 11:38:44,1,0,0,0,0,0,0,0,1,0,201501,1,31.0
329,332,10764,BR - Bayerischer Rundfunk,157820960901646.0,1050121995004867,2015-01-08 00:00:00,ISLAMIST,2015-01-09 18:16:56,photo,"b'""Je suis Charlie"": Symbol der Solidarit\xc3\xa4t - auch der BR setzt ein Zeichen.\n\nBR-KollegInnen melden sich zu Wort (Bildergalerie): http://br.de/s/1XvOHT3 \n\nBR-Intendant Ulrich Wilhelm: \n""Wir sind alle Charlie"". Mit diesem Slogan, der zum Symbol f\xc3\xbcr die Solidarit\xc3\xa4t mit den Opfern des Pariser Anschlags geworden ist, signalisiert auch der BR sein Eintreten f\xc3\xbcr die Freiheit der unabh\xc3\xa4ngigen Berichterstattung. Das Attentat auf das Satiremagazin ist ein Attentat auf die Presse- und Meinungsfreiheit und damit ein Angriff auf unsere demokratischen Werte. Gerade jetzt d\xc3\xbcrfen wir uns als Journalisten nicht einsch\xc3\xbcchtern lassen. Wir werden weiter verantwortungsvoll informieren, umfassend aufkl\xc3\xa4ren und vorurteilsfrei berichten.""\n\nBild: Funkhaus des BR in M\xc3\xbcnchen mit Schriftzug ""Je suis Charlie"", Rechte: BR/Lisa Hinder'","b""BR - Bayerischer Rundfunk's cover photo""",https://www.facebook.com/bayerischer.rundfunk/photos/a.522239827793089.140229.157820960901646/1050121705004896/?type=3,790.0,0.0,0.0,0.0,0.0,0.0,17.0,83.0,1.0,1.0,2015-01-09 18:16:56,1,0,0,0,0,0,1,0,0,2,201501,0,890.0
330,333,10774,The Sun,161385360554578.0,1075016962524742,2015-01-08 00:00:00,ISLAMIST,2015-01-08 10:43:27,link,"b'Two suspects in the Paris terror attack have been located, reports say.'",b'Terror massacre suspects arrested',http://sunpl.us/6182aQku,321.0,0.0,0.0,0.0,0.0,0.0,70.0,48.0,1.0,1.0,2015-01-08 10:43:27,1,0,0,0,0,0,0,0,1,0,201501,1,439.0
331,334,10811,ARD,48219766388.0,10152514207841389,2015-01-08 00:00:00,ISLAMIST,2015-01-09 22:07:06,video,"b'""Ich will die nicht ertragen, die in voller Absicht den Fundamentalismus der Terroristen mit einem Islam vermischen, der \xc3\xbcberwiegend friedlich ist."" Sigmund Gottlieb kommentiert die Terrorakte in Frankreich.'",missing_value,https://www.facebook.com/ARD/videos/10152514207841389/,1459.0,1.0,0.0,0.0,0.0,0.0,183.0,528.0,1.0,1.0,2015-01-09 22:07:06,1,0,0,0,0,0,0,1,0,1,201501,1,2171.0
332,335,10818,BBC News,228735667216.0,10152534189557217,2015-01-08 00:00:00,ISLAMIST,2015-01-08 11:44:40,video,b'France marks a minute of silence for victims of #CharlieHebdo attack.\n\nLatest: http://bbc.in/144PQ6T',missing_value,https://www.facebook.com/bbcnews/videos/10152534111642217/,20235.0,0.0,0.0,0.0,1.0,0.0,565.0,2829.0,1.0,1.0,2015-01-08 11:44:40,1,0,0,0,0,0,0,1,0,1,201501,0,23630.0
333,336,10821,BBC News,228735667216.0,10152536537787217,2015-01-08 00:00:00,ISLAMIST,2015-01-09 13:18:56,video,b'Gunman linked to policewoman killing suspected of new shooting in eastern Paris.\n\nWatch: Police surround Paris supermarket where gunman reported to be holding hostages. #CharlieHebdo\n\nLive updates: bbc.in/14ulyLt',missing_value,https://www.facebook.com/bbcnews/videos/10152536537787217/,12098.0,0.0,0.0,0.0,0.0,0.0,978.0,4023.0,1.0,1.0,2015-01-09 13:18:56,1,0,0,0,0,0,0,1,0,1,201501,0,17099.0
334,337,10823,BBC News,228735667216.0,10152541100692217,2015-01-08 00:00:00,ISLAMIST,2015-01-11 09:42:30,video,"b'More than 1 million people are expected to march in Paris in memory of the 17 victims of the #CharlieHebdo terror attacks. Thousands of soldiers and police are being deployed to protect the marchers.\n\nLondon will also hold a rally - and Tower Bridge will light up in the blue, white and red of the French flag.\n\nLIVE coverage: http://bbc.in/1y6xUUu #JeSuisCharlie'",missing_value,https://www.facebook.com/bbcnews/videos/10152540995972217/,17697.0,0.0,0.0,0.0,0.0,0.0,722.0,2600.0,1.0,1.0,2015-01-11 09:42:30,1,0,0,0,0,0,0,1,0,1,201501,1,21019.0
335,338,10825,BBC News,228735667216.0,10152541697192217,2015-01-08 00:00:00,ISLAMIST,2015-01-11 16:31:03,video,"b'""These extremists... do not represent the Muslim community. We are here with the French people, with the Jews, with all countries to fight against terror"" - Mehdi, Paris.\n\nLIVE coverage: http://bbc.in/1y6xUUu #JeSuisCharlie #MarcheRepublicaine'",missing_value,https://www.facebook.com/bbcnews/videos/10152541697192217/,23387.0,0.0,0.0,0.0,0.0,0.0,997.0,3676.0,1.0,1.0,2015-01-11 16:31:03,1,0,0,0,0,0,0,1,0,1,201501,1,28060.0
336,339,10831,KSTA,141063022950.0,10152608913257951,2015-01-08 00:00:00,ISLAMIST,2015-01-08 12:23:41,photo,"b'Eine riesige Welle der Solidarit\xc3\xa4t mit den Opfern des Anschlags auf \xe2\x80\x9eCharlie Hebdo\xe2\x80\x9c schwappt durchs Netz. Insbesondere Karikaturisten solidarisieren sich. Hier eine kleine Auswahl gro\xc3\x9fartiger Zeichnungen: http://goo.gl/JWq7PG\n(cm, Bild: Getty)'",b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10152608910262951/?type=3,151.0,0.0,0.0,0.0,0.0,0.0,5.0,12.0,1.0,1.0,2015-01-08 12:23:41,1,0,0,0,0,0,1,0,0,2,201501,0,168.0
337,340,10854,Channel 4 News,6622931938.0,10152657630956939,2015-01-08 00:00:00,ISLAMIST,2015-01-08 19:41:38,video,"b""Reacting to the Paris attacks Geert Wilders says he agrees with Nigel Farage that 'when it comes to immigration our countries really face problems'.""","b""'When it comes to immigration our countries really face problems'""",https://www.facebook.com/Channel4News/videos/10152657630956939/,527.0,1.0,0.0,0.0,0.0,0.0,249.0,1086.0,1.0,1.0,2015-01-08 19:41:38,1,0,0,0,0,0,0,1,0,1,201501,0,1863.0
338,341,10855,Handelsblatt,104709558232.0,10152662958758233,2015-01-08 00:00:00,ISLAMIST,2015-01-08 18:32:46,photo,"b'Unsere morgige Wochenendausgabe besch\xc3\xa4ftigt sich mit dem Anschlag auf das Satire-Magazin Charlie Hebdo Officiel und nennt die Werte, auf die es jetzt ankommt. ""Das Manifest der Freiheit"" ist das Titelthema dieser Ausgabe - jetzt schon als ePaper erh\xc3\xa4ltlich unter https://kaufhaus.handelsblatt.com/downloads/handelsblatt-epaper-p1951.html?ticket=ST-1883577-lVOKyGmYavQkSSzWtdx2-s02lcgiacc01.vhb.de (son)'",b'Timeline Photos',https://www.facebook.com/handelsblatt/photos/a.10150261034178233.323431.104709558232/10152662954073233/?type=3,78.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,1.0,1.0,2015-01-08 18:32:46,1,0,0,0,0,0,1,0,0,2,201501,0,91.0
339,342,10890,SÜDWEST PRESSE Online,167154977630.0,10152890483117631,2015-01-08 00:00:00,ISLAMIST,2015-01-08 09:46:15,photo,"b'F\xc3\xbcnf Minuten Schweigen - heute um 12 Uhr auf dem M\xc3\xbcnsterplatz: Bei dem Anschlag auf das franz\xc3\xb6sische Satire-Magazin ""Charlie Hebdo"" t\xc3\xb6teten islamistische Terroristen gestern zw\xc3\xb6lf M\xc3\xa4nner und Frauen. ""Ihr Tod ist uns Verpflichtung"", kommentiert unser Chefredakteur Ulrich Becker. Deshalb treffen wir uns heute, 12 Uhr am Brunnen auf dem M\xc3\xbcnsterplatz - mit Dank an Ralf Zwiebler f\xc3\xbcr die Idee. Kommt ihr dazu?'",b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10152890480512631/?type=3,159.0,0.0,0.0,0.0,0.0,0.0,20.0,31.0,1.0,1.0,2015-01-08 09:46:15,1,0,0,0,0,0,1,0,0,2,201501,1,210.0
340,343,10893,SÜDWEST PRESSE Online,167154977630.0,10152901590732631,2015-01-08 00:00:00,ISLAMIST,2015-01-13 17:42:55,photo,"b'Die neue Ausgabe von ""Charlie Hebdo"" erscheint morgen weltweit drei Millionen Mal. Die S\xc3\x9cDWEST PRESSE macht morgen mit dem Titelblatt der ""Charlie Hebdo"" auf. Warum? Weil wir glauben, dass dieser Anschlag unsere Welt ver\xc3\xa4ndert hat. Es steht mehr auf dem Spiel als Meinungs- und Pressefreiheit. Es geht um unsere Art zu leben, zu denken, zu handeln.'",b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10152901579897631/?type=3,283.0,0.0,0.0,0.0,0.0,0.0,58.0,69.0,1.0,1.0,2015-01-13 17:42:55,1,0,0,0,0,0,1,0,0,2,201501,0,410.0
341,344,10911,ZDF heute,112784955679.0,10153003505385680,2015-01-08 00:00:00,ISLAMIST,2015-01-08 09:56:40,video,b'Anschlag in Paris: ZDF-Korrespondentin Natalie Steger meldet sich aus Paris mit einem Blick auf die aktuellen Entwicklungen.',missing_value,https://www.facebook.com/ZDFheute/videos/10153003505385680/,119.0,0.0,0.0,0.0,0.0,0.0,18.0,27.0,1.0,1.0,2015-01-08 09:56:40,1,0,0,0,0,0,0,1,0,1,201501,0,164.0
342,345,10920,RP ONLINE,50327854366.0,10153007906054367,2015-01-08 00:00:00,ISLAMIST,2015-01-13 12:38:57,link,b'Am D\xc3\xbcsseldorf Airport ist ein mutma\xc3\x9flicher Terrorhelfer festgenommen worden. (via RP D\xc3\xbcsseldorf)',b'Flughafen D\xc3\xbcsseldorf: Mutma\xc3\x9flicher islamistischer Terrorhelfer festgenommen',http://www.rp-online.de/nrw/staedte/duesseldorf/mutmasslicher-islamistischer-terrorhelfer-festgenommen-aid-1.4795803,277.0,0.0,0.0,0.0,0.0,0.0,16.0,78.0,1.0,1.0,2015-01-13 12:38:57,1,0,0,0,0,0,0,0,1,0,201501,1,371.0
343,346,10923,RP ONLINE,50327854366.0,10153009719179367,2015-01-08 00:00:00,ISLAMIST,2015-01-14 05:29:40,photo,b'Guten Morgen! Das ist unsere heutige Titelseite. Themen sind unter anderem: Terrorverd\xc3\xa4chtiger am D\xc3\xbcsseldorfer Flughafen gefasst (www.rp-online.de/1.4797832) und das Gedenken an die Terror-Opfer von Paris in Berlin (www.rp-online.de/1.4797811). \n\nwww.rp-online.de/epaper-einzelausgaben',b'Timeline Photos',https://www.facebook.com/rponline/photos/a.388028984366.165204.50327854366/10153009717704367/?type=3,18.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,1.0,2015-01-14 05:29:40,1,0,0,0,0,0,1,0,0,2,201501,1,22.0
344,347,10926,WELT,97515118114.0,10153047442968115,2015-01-08 00:00:00,ISLAMIST,2015-01-08 12:08:13,photo,b'Wir trauern um alle Opfer des Anschlags in Paris und verneigen uns vor dem Mut unserer franz\xc3\xb6sischen Kollegen. #JeSuisCharlie',b'Timeline Photos',https://www.facebook.com/welt/photos/a.298879548114.181606.97515118114/10153047441263115/?type=3,1724.0,0.0,0.0,0.0,0.0,0.0,78.0,74.0,1.0,1.0,2015-01-08 12:08:13,1,0,0,0,0,0,1,0,0,2,201501,0,1876.0
345,348,10931,Freie Presse,375109771472.0,10153051446351473,2015-01-08 00:00:00,ISLAMIST,2015-01-09 07:09:10,photo,"b'Guten Morgen!\n""Was darf die Satire? Alles"", formulierte einst der gro\xc3\x9fe Kurt Tucholsky. Heute vor 125 Jahren kam der Journalist und Schriftsteller in Berlin zur Welt - und sein Satz von 1919 ist aktueller denn je. Denn der Anschlag auf ""Charlie Hebdo"" wirft wieder die Frage auf, was Satire kann - und ob sie auch weltanschauliche Gef\xc3\xbchle verletzten darf.\n\nMehr unter http://bit.ly/1zYJSgW'",b'Timeline Photos',https://www.facebook.com/freiepresse/photos/a.10151210045371473.471017.375109771472/10153051444901473/?type=3,62.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,1.0,1.0,2015-01-09 07:09:10,1,0,0,0,0,0,1,0,0,2,201501,0,75.0
346,349,10936,WELT,97515118114.0,10153055294453115,2015-01-08 00:00:00,ISLAMIST,2015-01-11 15:46:38,link,b'In Paris beginnt der Schweigemarsch in Gedenken an die Opfer der Terroranschl\xc3\xa4ge. Viele Spitzenpolitiker aus aller Welt sind vor Ort.',b'Die Kanzlerin zeigt Frankreich ihre Solidarit\xc3\xa4t',http://trib.al/MJAMcFS,1626.0,0.0,0.0,0.0,0.0,0.0,204.0,241.0,1.0,1.0,2015-01-11 15:46:38,1,0,0,0,0,0,0,0,1,0,201501,1,2071.0
347,350,10955,HNA,237702348824.0,10153090771253825,2015-01-08 00:00:00,ISLAMIST,2015-01-08 15:52:14,status,"b'Der Anschlag auf das franz\xc3\xb6sische Satiremagazin Charlie Hebdo in Paris bewegt Millionen Menschen. Uns interessiert, wie die Stimmung in der franz\xc3\xb6sischen Hauptstadt ist. Vielleicht ist ja derzeit einer von euch dort - oder jemand, den ihr kennt, der hier einige S\xc3\xa4tze schreiben k\xc3\xb6nnte.'",missing_value,missing_value,8.0,0.0,0.0,0.0,0.0,0.0,7.0,1.0,1.0,1.0,2015-01-08 15:52:14,1,0,0,0,0,0,0,0,0,0,201501,0,16.0
348,351,10972,JUNGE FREIHEIT,13479664941.0,10153496482939942,2015-01-08 00:00:00,ISLAMIST,2015-01-14 13:54:20,link,b'Der t\xc3\xbcrkische Ministerpr\xc3\xa4sident Ahmet Davutoglu hat Parallelen zwischen Pegida und der Terrorvereinigung Islamischer Staat (IS) gezogen. Die Kurdische Gemeinde Deutschland warf dagegen Ankara ein doppeltes Spiel und heimliche Unterst\xc3\xbctzung des IS vor. >>',b'T\xc3\xbcrkischer Ministerpr\xc3\xa4sident vergleicht Pegida und IS',http://jungefreiheit.de/politik/deutschland/2015/tuerkischer-ministerpraesident-vergleicht-pegida-und-is/,334.0,0.0,0.0,0.0,0.0,0.0,143.0,111.0,1.0,1.0,2015-01-14 13:54:20,1,0,0,0,0,0,0,0,1,0,201501,1,588.0
349,352,10973,JUNGE FREIHEIT,13479664941.0,10153496672574942,2015-01-08 00:00:00,ISLAMIST,2015-01-14 10:57:41,photo,b'DAS FANAL VON PARIS\n\nIslamistischer Terror: Nach dem ersten Schock \xc3\xbcber die Anschl\xc3\xa4ge in Frankreich reagiert unsere politische Klasse mit Ablenkungsman\xc3\xb6vern\n\nDie JF jetzt 4 Wochen mit einem Probeabo gratis testen:\nhttp://jungefreiheit.de/service/probeabo-bestellen/',b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10153496256739942/?type=3,90.0,0.0,0.0,0.0,0.0,0.0,5.0,13.0,1.0,1.0,2015-01-14 10:57:41,1,0,0,0,0,0,1,0,0,2,201501,1,108.0
350,353,11011,junge Welt,123292927706635.0,771380866231168,2015-01-09 00:00:00,ISLAMIST,2015-01-13 13:23:16,photo,"b'\xc2\xbbWir br\xc3\xa4uchten nur ein Bataillon von Journalisten und ein Bataillon von Politikern, das sofort eingesetzt werden kann, wenn solche Kriege gef\xc3\xbchrt werden, dann w\xc3\xa4re der ganze Spuk zu Ende.\xc2\xab\n\nLesen Sie morgen auf den jW-Thema-Seiten: Die Rede von Oskar Lafontaine auf der Rosa-Luxemburg-Konferenz \xc3\xbcber westliche Doppelmoral, NATO-Terror und die Verweigerung jedes Krieges von deutschem Boden. Auch am Kiosk! #rlk15 \n\nFoto: Andreas Domma'",b'Timeline Photos',https://www.facebook.com/junge.welt/photos/a.124194670949794.9293.123292927706635/771380742897847/?type=3,263.0,0.0,0.0,0.0,0.0,0.0,14.0,85.0,3.0,5.0,2015-01-13 13:23:16,1,0,0,0,0,0,1,0,0,2,201501,1,362.0
351,354,11012,ZDF,154149027994068.0,771411596267805,2015-01-09 00:00:00,ISLAMIST,2015-01-14 09:45:00,video,b'Unkommentierte Bilder der Mahnwache gegen islamistischen Terror am Brandenburger Tor gestern. #JeSuisCharlie',b'Gemeinsam gegen Terror',https://www.facebook.com/ZDF/videos/771411596267805/,441.0,0.0,0.0,0.0,0.0,0.0,58.0,96.0,3.0,5.0,2015-01-14 09:45:00,1,0,0,0,0,0,0,1,0,1,201501,1,595.0
352,355,11014,ZDF,154149027994068.0,772004446208520,2015-01-09 00:00:00,ISLAMIST,2015-01-15 20:25:00,video,"b'Sind wir hilflos gegen den Terror?\n\nDar\xc3\xbcber diskutieren um 22.15 Uhr bei Maybrit Illner u.a. Cem \xc3\x96zdemir und Wolfgang Bosbach, sowie die Islamwissenschaftlerin Lamya Kaddor und unser stellvertretender Chefredakteur Elmar Theve\xc3\x9fen.'",missing_value,https://www.facebook.com/ZDF/videos/772004446208520/,87.0,0.0,0.0,0.0,0.0,0.0,49.0,5.0,3.0,5.0,2015-01-15 20:25:00,1,0,0,0,0,0,0,1,0,1,201501,1,141.0
353,356,11016,Neue Westfälische,215604728519502.0,774762932603676,2015-01-09 00:00:00,ISLAMIST,2015-01-09 11:26:08,link,"b'Nach dem Anschlag in Paris in der Redaktion des satirischen Magazins ""Charlie Hebdo"" spricht die Polizei in NRW zurzeit s\xc3\xa4mtliche Medien des Landes an - offenbar aus Sorge um die Sicherheit in den Redaktionen.'",b'Sorge um Sicherheit in NRW-Redaktionen | Neue Westf\xc3\xa4lische - Mitte',http://www.nw.de/lokal/bielefeld/mitte/mitte/20301429_Sorge-um-Sicherheit-in-NRW-Redaktionen.html,8.0,0.0,0.0,0.0,0.0,0.0,6.0,4.0,3.0,5.0,2015-01-09 11:26:08,1,0,0,0,0,0,0,0,1,0,201501,0,18.0
354,357,11053,SWR Aktuell,112906815414721.0,826951284010267,2015-01-09 00:00:00,ISLAMIST,2015-01-14 16:28:53,video,b'#CharlieHebdo: wie reagieren die Menschen in Rheinland-Pfalz auf die erste Ausgabe seit den Terror-Attacken in Paris?',missing_value,https://www.facebook.com/SWRAktuell/videos/826951284010267/,4.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,5.0,2015-01-14 16:28:53,1,0,0,0,0,0,0,1,0,1,201501,1,6.0
355,358,11057,Monitor,186702484702033.0,827209713984637,2015-01-09 00:00:00,ISLAMIST,2015-01-11 17:35:25,status,"b'Trittbrettfahrer der Angst - am Donnerstag bei Monitor!\n\nDer Terroranschlag von Paris sorgt bei deutschen Innenpolitikern f\xc3\xbcr die \xc3\xbcblichen Reflexe: Mehr \xc3\x9cberwachung, Vorratsdatenspeicherung, St\xc3\xa4rkung der Geheimdienste. Und am rechten Rand trommeln Pegida, AfD und Rechtsextremisten f\xc3\xbcr ihre Vorstellung von einem islamophoben Abendland. \nWer verteidigt hier wessen Freiheiten vor wem? \nMehr dazu am Donnerstag bei Monitor, 21:45 Uhr im Ersten. Vormerken!\n\n#monitor #ardmonitor #pegida #afd #wdr #ard #daserste'",missing_value,missing_value,393.0,0.0,0.0,0.0,0.0,0.0,50.0,97.0,3.0,5.0,2015-01-11 17:35:25,1,0,0,0,0,0,0,0,0,0,201501,1,540.0
356,359,11059,Monitor,186702484702033.0,828072280565047,2015-01-09 00:00:00,ISLAMIST,2015-01-13 14:49:08,status,b'Kn\xc3\xa4ste als Radikalisierungsanstalten? Die Themen bei Monitor am Donnerstag.\n\nZwei der Pariser Attent\xc3\xa4ter sollen im Gef\xc3\xa4ngnis im Kontakt mit islamistischen Gewaltt\xc3\xa4tern weiter radikalisiert worden sein. Der Knast als Radikalisierungsanstalt? Mehr dazu am Donnerstag bei MONITOR. Um 21:45 Uhr im Ersten. Hier unsere geplanten Themen:\n\n1. Trittbrettfahrer der Angst: Wie mit den Anschl\xc3\xa4gen von Paris Politik gemacht wird\n2. Gefahr aus dem Knast: radikalisierte Islamisten\n3. Krieg gegen den IS: Wo Deutschlands Waffen wirklich landen\n4. Schmutziger Deal: wie die Politik den Atomkonzernen zu Millionen-Klagen verhilft',missing_value,missing_value,78.0,0.0,0.0,0.0,0.0,0.0,5.0,26.0,3.0,5.0,2015-01-13 14:49:08,1,0,0,0,0,0,0,0,0,0,201501,0,109.0
357,360,11065,Monitor,186702484702033.0,829134203792188,2015-01-09 00:00:00,ISLAMIST,2015-01-15 20:26:22,link,b'MONITOR um 21:50 Uhr - heute 5 Minuten sp\xc3\xa4ter (Tagesthemen Extra). Hier unsere Themen:\n\n1. Trittbrettfahrer der Angst: Wie mit den Anschl\xc3\xa4gen von Paris Politik gemacht wird\n2. Gefahr aus dem Knast: radikalisierte Islamisten\n3. Krieg gegen den IS: Wo Deutschlands Waffen wirklich landen\n4. Schmutziger Deal: wie die Politik den Atomkonzernen zu Millionen-Klagen verhilft\n\nWiederholungstermine:\nDonnerstag: 23:30 Uhr - tagesschau24 | Freitag: 05:00 Uhr - Das Erste | 09:15 Uhr - WDR | 20:15 Uhr - tagesschau24\n\n#ard #daserste #monitor #ardmonitor #wdr #tagesthemen',b'MONITOR-Sendungshomepage',http://www1.wdr.de/daserste/monitor/index.html,241.0,0.0,0.0,0.0,0.0,0.0,33.0,50.0,3.0,5.0,2015-01-15 20:26:22,1,0,0,0,0,0,0,0,1,0,201501,0,324.0
358,361,11087,Daily Express,129617873765147.0,860603397333254,2015-01-09 00:00:00,ISLAMIST,2015-01-09 18:47:42,link,b'BREAKING: Abu Hamza jailed for LIFE by US court...\n\nhttp://www.express.co.uk/news/uk/551184/Abu-Hamza-jail-life-terrorism',b'BREAKING: Hate preacher Abu Hamza jailed for life for supporting terrorism',http://www.express.co.uk/news/uk/551184/Abu-Hamza-jail-life-terrorism,2029.0,0.0,0.0,0.0,0.0,0.0,374.0,426.0,3.0,5.0,2015-01-09 18:47:42,1,0,0,0,0,0,0,0,1,0,201501,1,2829.0
359,362,11089,Daily Express,129617873765147.0,864026896990904,2015-01-09 00:00:00,ISLAMIST,2015-01-15 19:46:53,link,"b""Terror suspects 'on brink of launching major attack' shot dead in Belgium\n\nhttp://www.express.co.uk/news/world/552228/Belgian-terror-raids-three-dead-police-operation-Verviers""","b'BREAKING: Three dead in Belgian anti-terror raids, according to reports'",http://www.express.co.uk/news/world/552228/Belgian-terror-raids-three-dead-police-operation-Verviers,342.0,0.0,0.0,0.0,0.0,0.0,61.0,198.0,3.0,5.0,2015-01-15 19:46:53,1,0,0,0,0,0,0,0,1,0,201501,1,601.0
360,363,11092,WDR,124207927630198.0,874370369280613,2015-01-09 00:00:00,ISLAMIST,2015-01-12 11:49:41,link,"b'Altes Thema, neu diskutiert: Nach den Terroranschl\xc3\xa4gen in Paris ist die Debatte um die Vorratsdatenspeicherung neu entbrannt. Justizminister Maas (SPD) sprach sich dagegen aus. Der Bund Deutscher Kriminalbeamter sagt, dass die Daten bei der Terror-Bek\xc3\xa4mpfung von essentieller Bedeutung seien.'",b'WDR 2 Gespr\xc3\xa4ch zur Vorratsdatenspeicherung: Die Daten fehlen',http://www.wdr2.de/aktuell/vorratsdatenspeicherung-100.html,9.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,3.0,5.0,2015-01-12 11:49:41,1,0,0,0,0,0,0,0,1,0,201501,1,13.0
361,364,11096,London Evening Standard,165348596842143.0,876799159030413,2015-01-09 00:00:00,ISLAMIST,2015-01-09 12:41:58,link,b'BREAKING: Shots fired and hostage taken in another attack in Paris.\n\nMore details here:',b'Shots fired as gunman takes hostage at kosher grocery in Paris',https://www.standard.co.uk/news/world/breaking-news-shots-fired-as-gunman-takes-hostage-at-kosher-grocery-in-paris-9967928.html,190.0,0.0,0.0,0.0,0.0,0.0,26.0,169.0,3.0,5.0,2015-01-09 12:41:58,1,0,0,0,0,0,0,0,1,0,201501,0,385.0
362,365,11097,London Evening Standard,165348596842143.0,876854645691531,2015-01-09 00:00:00,ISLAMIST,2015-01-09 14:49:17,photo,b'Police release images of suspects believed to be involved in the Paris attacks http://bit.ly/1Awm4nn',b'Timeline Photos',https://www.facebook.com/eveningstandard/photos/a.330141550362846.78293.165348596842143/876854362358226/?type=3,187.0,0.0,0.0,0.0,0.0,0.0,52.0,57.0,3.0,5.0,2015-01-09 14:49:17,1,0,0,0,0,0,1,0,0,2,201501,0,296.0
363,366,11105,London Evening Standard,165348596842143.0,880181485358847,2015-01-09 00:00:00,ISLAMIST,2015-01-15 13:27:52,link,b'Watch the moment this handcuffed teenager helps save the life of a police officer who collapsed from a heart attack.',b'Handcuffed teen alerts police and helps save life of officer who collapsed from heart attack',https://www.standard.co.uk/news/crime/handcuffed-teen-alerts-police-and-helps-save-life-of-officer-who-collapsed-from-heart-attack-9979316.html,592.0,0.0,0.0,0.0,0.0,0.0,31.0,82.0,3.0,5.0,2015-01-15 13:27:52,1,0,0,0,0,0,0,0,1,0,201501,0,705.0
364,367,11141,City AM,213682385348579.0,914805071902970,2015-01-09 00:00:00,ISLAMIST,2015-01-12 08:06:52,link,"b'""Millions of citizens will come to express their love of liberty, their love of fraternity.""'",b'France attacks: Huge crowds gather in Paris ahead of solidarity march',http://www.cityam.com/206845/france-attacks-one-million-expected-march-paris-including-world-leaders-david-cameron-and,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,5.0,2015-01-12 08:06:52,1,0,0,0,0,0,0,0,1,0,201501,0,0.0
365,368,11149,RTL,179133132098813.0,921288447883274,2015-01-09 00:00:00,ISLAMIST,2015-01-11 09:00:00,photo,"b'Carolin Kebekus sorgt f\xc3\xbcr grandiosen ""Pussyterror"". Schau jetzt bei RTL NOW rein: http://rtl-now.rtl.de/carolinkebekuspussyterror.php'",b'Timeline Photos',https://www.facebook.com/meinRTL/photos/a.317833411562117.86456.179133132098813/920356117976507/?type=3,866.0,0.0,0.0,0.0,0.0,0.0,101.0,23.0,3.0,5.0,2015-01-11 09:00:00,1,0,0,0,0,0,1,0,0,2,201501,1,990.0
366,369,11161,The Times and The Sunday Times,147384458624178.0,977974902231792,2015-01-09 00:00:00,ISLAMIST,2015-01-10 21:40:06,photo,"b""Tomorrow's Sunday Times front page: Terror alert over 150 UK jihadists""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/977974882231794/?type=3,105.0,0.0,0.0,0.0,0.0,0.0,29.0,26.0,3.0,5.0,2015-01-10 21:40:06,1,0,0,0,0,0,1,0,0,2,201501,1,160.0
367,370,11168,The Times and The Sunday Times,147384458624178.0,980616621967620,2015-01-09 00:00:00,ISLAMIST,2015-01-14 22:44:30,photo,"b""Tomorrow's front page: A prosperous west will beat terror, vows Obama\nhttp://thetim.es/1C27cij""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/980616615300954/?type=3,88.0,0.0,0.0,0.0,0.0,0.0,19.0,23.0,3.0,5.0,2015-01-14 22:44:30,1,0,0,0,0,0,1,0,0,2,201501,1,130.0
368,371,11171,SR.de,139381656076338.0,1001395689874926,2015-01-09 00:00:00,ISLAMIST,2015-01-10 15:23:31,photo,b'Rund 1.000 Menschen haben am Mittag vor dem franz\xc3\xb6sischen Generalkonsulat der Opfer der Terroranschl\xc3\xa4ge in Frankreich gedacht. #JeSuisCharlie\n\nhttp://sronline.sr-galerie.de/popup.php?type=album&id=314',b'Timeline Photos',https://www.facebook.com/SRonline.de/photos/a.390138457667322.110254.139381656076338/1001395276541634/?type=3,25.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,3.0,5.0,2015-01-10 15:23:31,1,0,0,0,0,0,1,0,0,2,201501,1,28.0
369,372,11175,The Daily Star,161612017189003.0,1005562152793981,2015-01-09 00:00:00,ISLAMIST,2015-01-09 14:40:18,photo,b'A SECOND hostage situation unfolding in Paris.\n\nTwo dead as six people \xe2\x80\x93 inc. mother & young baby \xe2\x80\x93 are held captive in Kosher supermarket.\n\nhttp://www.scottishdailystar.co.uk/news/latest-news/419240/Paris-shooting-Kosher-grocery-shop-hostage-Charlie-Hebdo-Vincennes',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1005561882794008/?type=3,55.0,0.0,0.0,0.0,0.0,0.0,11.0,20.0,3.0,5.0,2015-01-09 14:40:18,1,0,0,0,0,0,1,0,0,2,201501,0,86.0
370,373,11176,The Daily Star,161612017189003.0,1005612906122239,2015-01-09 00:00:00,ISLAMIST,2015-01-09 16:27:11,photo,b'BREAKING: Terror brothers behind Charlie Hebdo massacre killed by armed police following Paris siege \n\nhttp://www.dailystar.co.uk/news/latest-news/418859/Ten-shot-dead-at-offices-of-Paris-magazine',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1005612876122242/?type=3,675.0,0.0,0.0,0.0,0.0,1.0,115.0,86.0,3.0,5.0,2015-01-09 16:27:11,1,0,0,0,0,0,1,0,0,2,201501,1,877.0
371,374,11210,The Daily Star,161612017189003.0,1008585829158280,2015-01-09 00:00:00,ISLAMIST,2015-01-14 21:52:12,photo,"b'VIDEO: Watch teen in handcuffs save the life of cop having heart attack \n\nSee, not everyone is a bad guy!\n\nhttp://www.dailystar.co.uk/news/latest-news/420184/Watch-teen-handcuffs-save-life-cop-heart-attack'",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1008585515824978/?type=3,235.0,0.0,0.0,0.0,0.0,0.0,13.0,18.0,3.0,5.0,2015-01-14 21:52:12,1,0,0,0,0,0,1,0,0,2,201501,0,266.0
372,375,11215,The Daily Star,161612017189003.0,1009051752445021,2015-01-09 00:00:00,ISLAMIST,2015-01-15 19:24:04,photo,"b'BREAKING: Two terror suspects shot dead in ""jihadist-related"" police raid at Belgium bakery\n\nPolice chief warned the group had plotted ""grand scale attacks""...\n\nhttp://www.dailystar.co.uk/news/latest-news/420361/Anti-terror-raid-in-Belgium'",b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1009051712445025/?type=3,140.0,0.0,0.0,0.0,0.0,0.0,14.0,30.0,3.0,5.0,2015-01-15 19:24:04,1,0,0,0,0,0,1,0,0,2,201501,1,184.0
373,376,11218,Sky News,164665060214766.0,1012571528757444,2015-01-09 00:00:00,ISLAMIST,2015-01-09 16:04:15,video,"b""VIDEO: This was the moment gunfire and explosions were heard at a warehouse where the Charlie Hebdo shooting suspects were holed up.\n\nIt's reported they have been killed and their hostage freed. Read more: http://bit.ly/1FzNZIP""",missing_value,https://www.facebook.com/skynews/videos/1012553762092554/,2668.0,0.0,0.0,0.0,0.0,0.0,428.0,1325.0,3.0,5.0,2015-01-09 16:04:15,1,0,0,0,0,0,0,1,0,1,201501,0,4421.0
374,377,11223,Sky News,164665060214766.0,1015233001824630,2015-01-09 00:00:00,ISLAMIST,2015-01-13 17:14:23,video,b'Dramatic new video shows Paris gunmen apparently shooting at a police car as they carried out their attacks last week. Read more: http://bit.ly/1IrvpAy',missing_value,https://www.facebook.com/skynews/videos/1015233001824630/,3541.0,0.0,0.0,0.0,0.0,0.0,538.0,3517.0,3.0,5.0,2015-01-13 17:14:23,1,0,0,0,0,0,0,1,0,1,201501,0,7596.0
375,378,11232,Frankfurter Rundschau,134100583282150.0,1047331401959059,2015-01-09 00:00:00,ISLAMIST,2015-01-10 16:31:30,link,"b'Die Freien W\xc3\xa4hler im R\xc3\xb6mer hatten f\xc3\xbcr Samstag zu einem Schweigemarsch f\xc3\xbcr die Opfer des Terroranschlages auf die Pariser Satirezeitung Charlie Hebdo aufgerufen. 60 Teilnehmer kamen, rund 300 Gegendemonstranten blockierten allerdings die Route.'",b'Protest gegen Freie W\xc3\xa4hler: Schweigemarsch blockiert',"http://www.fr-online.de/frankfurt/protest-gegen-freie-waehler-schweigemarsch-blockiert,1472798,29529372,view,asFirstTeaser.html",71.0,0.0,0.0,0.0,0.0,0.0,17.0,13.0,3.0,5.0,2015-01-10 16:31:30,1,0,0,0,0,0,0,0,1,0,201501,1,101.0
376,379,11238,Frankfurter Rundschau,134100583282150.0,1049944041697795,2015-01-09 00:00:00,ISLAMIST,2015-01-14 11:38:44,link,"b'Statt nach dem Terror in Paris eine Versch\xc3\xa4rfung der Sicherheitspolitik hinzunehmen, sollten wir uns freiheitlicher Werte versichern. Nur dann wird aus Angst kein Hass, meint FR-Autor Stephan Hebel in seinem Leitartikel.'",b'Sicherheitspolitik: Die andere Art der inneren Sicherheit',"http://www.fr-online.de/meinung/sicherheitspolitik-die-andere-art-der-inneren-sicherheit,1472602,29557082.html",26.0,0.0,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2015-01-14 11:38:44,1,0,0,0,0,0,0,0,1,0,201501,1,31.0
377,380,11239,BR - Bayerischer Rundfunk,157820960901646.0,1050121995004867,2015-01-09 00:00:00,ISLAMIST,2015-01-09 18:16:56,photo,"b'""Je suis Charlie"": Symbol der Solidarit\xc3\xa4t - auch der BR setzt ein Zeichen.\n\nBR-KollegInnen melden sich zu Wort (Bildergalerie): http://br.de/s/1XvOHT3 \n\nBR-Intendant Ulrich Wilhelm: \n""Wir sind alle Charlie"". Mit diesem Slogan, der zum Symbol f\xc3\xbcr die Solidarit\xc3\xa4t mit den Opfern des Pariser Anschlags geworden ist, signalisiert auch der BR sein Eintreten f\xc3\xbcr die Freiheit der unabh\xc3\xa4ngigen Berichterstattung. Das Attentat auf das Satiremagazin ist ein Attentat auf die Presse- und Meinungsfreiheit und damit ein Angriff auf unsere demokratischen Werte. Gerade jetzt d\xc3\xbcrfen wir uns als Journalisten nicht einsch\xc3\xbcchtern lassen. Wir werden weiter verantwortungsvoll informieren, umfassend aufkl\xc3\xa4ren und vorurteilsfrei berichten.""\n\nBild: Funkhaus des BR in M\xc3\xbcnchen mit Schriftzug ""Je suis Charlie"", Rechte: BR/Lisa Hinder'","b""BR - Bayerischer Rundfunk's cover photo""",https://www.facebook.com/bayerischer.rundfunk/photos/a.522239827793089.140229.157820960901646/1050121705004896/?type=3,790.0,0.0,0.0,0.0,0.0,0.0,17.0,83.0,3.0,5.0,2015-01-09 18:16:56,1,0,0,0,0,0,1,0,0,2,201501,0,890.0
378,381,11281,ARD,48219766388.0,10152514207841389,2015-01-09 00:00:00,ISLAMIST,2015-01-09 22:07:06,video,"b'""Ich will die nicht ertragen, die in voller Absicht den Fundamentalismus der Terroristen mit einem Islam vermischen, der \xc3\xbcberwiegend friedlich ist."" Sigmund Gottlieb kommentiert die Terrorakte in Frankreich.'",missing_value,https://www.facebook.com/ARD/videos/10152514207841389/,1459.0,1.0,0.0,0.0,0.0,0.0,183.0,528.0,3.0,5.0,2015-01-09 22:07:06,1,0,0,0,0,0,0,1,0,1,201501,1,2171.0
379,382,11291,BBC News,228735667216.0,10152536537787217,2015-01-09 00:00:00,ISLAMIST,2015-01-09 13:18:56,video,b'Gunman linked to policewoman killing suspected of new shooting in eastern Paris.\n\nWatch: Police surround Paris supermarket where gunman reported to be holding hostages. #CharlieHebdo\n\nLive updates: bbc.in/14ulyLt',missing_value,https://www.facebook.com/bbcnews/videos/10152536537787217/,12098.0,0.0,0.0,0.0,0.0,0.0,978.0,4023.0,3.0,5.0,2015-01-09 13:18:56,1,0,0,0,0,0,0,1,0,1,201501,0,17099.0
380,383,11293,BBC News,228735667216.0,10152541100692217,2015-01-09 00:00:00,ISLAMIST,2015-01-11 09:42:30,video,"b'More than 1 million people are expected to march in Paris in memory of the 17 victims of the #CharlieHebdo terror attacks. Thousands of soldiers and police are being deployed to protect the marchers.\n\nLondon will also hold a rally - and Tower Bridge will light up in the blue, white and red of the French flag.\n\nLIVE coverage: http://bbc.in/1y6xUUu #JeSuisCharlie'",missing_value,https://www.facebook.com/bbcnews/videos/10152540995972217/,17697.0,0.0,0.0,0.0,0.0,0.0,722.0,2600.0,3.0,5.0,2015-01-11 09:42:30,1,0,0,0,0,0,0,1,0,1,201501,1,21019.0
381,384,11295,BBC News,228735667216.0,10152541697192217,2015-01-09 00:00:00,ISLAMIST,2015-01-11 16:31:03,video,"b'""These extremists... do not represent the Muslim community. We are here with the French people, with the Jews, with all countries to fight against terror"" - Mehdi, Paris.\n\nLIVE coverage: http://bbc.in/1y6xUUu #JeSuisCharlie #MarcheRepublicaine'",missing_value,https://www.facebook.com/bbcnews/videos/10152541697192217/,23387.0,0.0,0.0,0.0,0.0,0.0,997.0,3676.0,3.0,5.0,2015-01-11 16:31:03,1,0,0,0,0,0,0,1,0,1,201501,1,28060.0
382,385,11358,SÜDWEST PRESSE Online,167154977630.0,10152901590732631,2015-01-09 00:00:00,ISLAMIST,2015-01-13 17:42:55,photo,"b'Die neue Ausgabe von ""Charlie Hebdo"" erscheint morgen weltweit drei Millionen Mal. Die S\xc3\x9cDWEST PRESSE macht morgen mit dem Titelblatt der ""Charlie Hebdo"" auf. Warum? Weil wir glauben, dass dieser Anschlag unsere Welt ver\xc3\xa4ndert hat. Es steht mehr auf dem Spiel als Meinungs- und Pressefreiheit. Es geht um unsere Art zu leben, zu denken, zu handeln.'",b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10152901579897631/?type=3,283.0,0.0,0.0,0.0,0.0,0.0,58.0,69.0,3.0,5.0,2015-01-13 17:42:55,1,0,0,0,0,0,1,0,0,2,201501,0,410.0
383,386,11386,RP ONLINE,50327854366.0,10153007906054367,2015-01-09 00:00:00,ISLAMIST,2015-01-13 12:38:57,link,b'Am D\xc3\xbcsseldorf Airport ist ein mutma\xc3\x9flicher Terrorhelfer festgenommen worden. (via RP D\xc3\xbcsseldorf)',b'Flughafen D\xc3\xbcsseldorf: Mutma\xc3\x9flicher islamistischer Terrorhelfer festgenommen',http://www.rp-online.de/nrw/staedte/duesseldorf/mutmasslicher-islamistischer-terrorhelfer-festgenommen-aid-1.4795803,277.0,0.0,0.0,0.0,0.0,0.0,16.0,78.0,3.0,5.0,2015-01-13 12:38:57,1,0,0,0,0,0,0,0,1,0,201501,1,371.0
384,387,11389,RP ONLINE,50327854366.0,10153009719179367,2015-01-09 00:00:00,ISLAMIST,2015-01-14 05:29:40,photo,b'Guten Morgen! Das ist unsere heutige Titelseite. Themen sind unter anderem: Terrorverd\xc3\xa4chtiger am D\xc3\xbcsseldorfer Flughafen gefasst (www.rp-online.de/1.4797832) und das Gedenken an die Terror-Opfer von Paris in Berlin (www.rp-online.de/1.4797811). \n\nwww.rp-online.de/epaper-einzelausgaben',b'Timeline Photos',https://www.facebook.com/rponline/photos/a.388028984366.165204.50327854366/10153009717704367/?type=3,18.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2015-01-14 05:29:40,1,0,0,0,0,0,1,0,0,2,201501,1,22.0
385,388,11391,RP ONLINE,50327854366.0,10153011847474367,2015-01-09 00:00:00,ISLAMIST,2015-01-15 05:34:35,photo,"b'Guten Morgen! Das ist unsere heutige Titelseite. Themen der Ausgabe unter anderem: die erste Ausgabe von ""Charlie Hebdo"" nach dem Anschlag (www.rp-online.de/1.4800354) und die schnelle Eingreiftruppe ""Nato Responce Force Land"", die befreundete osteurop\xc3\xa4ische L\xc3\xa4nder sch\xc3\xbctzen soll (www.rp-online.de/1.4800544).\n\nwww.rp-online.de/epaper-einzelausgaben'",b'Timeline Photos',https://www.facebook.com/rponline/photos/a.388028984366.165204.50327854366/10153011847274367/?type=3,13.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,5.0,2015-01-15 05:34:35,1,0,0,0,0,0,1,0,0,2,201501,0,15.0
386,389,11399,Freie Presse,375109771472.0,10153051446351473,2015-01-09 00:00:00,ISLAMIST,2015-01-09 07:09:10,photo,"b'Guten Morgen!\n""Was darf die Satire? Alles"", formulierte einst der gro\xc3\x9fe Kurt Tucholsky. Heute vor 125 Jahren kam der Journalist und Schriftsteller in Berlin zur Welt - und sein Satz von 1919 ist aktueller denn je. Denn der Anschlag auf ""Charlie Hebdo"" wirft wieder die Frage auf, was Satire kann - und ob sie auch weltanschauliche Gef\xc3\xbchle verletzten darf.\n\nMehr unter http://bit.ly/1zYJSgW'",b'Timeline Photos',https://www.facebook.com/freiepresse/photos/a.10151210045371473.471017.375109771472/10153051444901473/?type=3,62.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,3.0,5.0,2015-01-09 07:09:10,1,0,0,0,0,0,1,0,0,2,201501,0,75.0
387,390,11404,WELT,97515118114.0,10153055294453115,2015-01-09 00:00:00,ISLAMIST,2015-01-11 15:46:38,link,b'In Paris beginnt der Schweigemarsch in Gedenken an die Opfer der Terroranschl\xc3\xa4ge. Viele Spitzenpolitiker aus aller Welt sind vor Ort.',b'Die Kanzlerin zeigt Frankreich ihre Solidarit\xc3\xa4t',http://trib.al/MJAMcFS,1626.0,0.0,0.0,0.0,0.0,0.0,204.0,241.0,3.0,5.0,2015-01-11 15:46:38,1,0,0,0,0,0,0,0,1,0,201501,1,2071.0
388,391,11442,JUNGE FREIHEIT,13479664941.0,10153496482939942,2015-01-09 00:00:00,ISLAMIST,2015-01-14 13:54:20,link,b'Der t\xc3\xbcrkische Ministerpr\xc3\xa4sident Ahmet Davutoglu hat Parallelen zwischen Pegida und der Terrorvereinigung Islamischer Staat (IS) gezogen. Die Kurdische Gemeinde Deutschland warf dagegen Ankara ein doppeltes Spiel und heimliche Unterst\xc3\xbctzung des IS vor. >>',b'T\xc3\xbcrkischer Ministerpr\xc3\xa4sident vergleicht Pegida und IS',http://jungefreiheit.de/politik/deutschland/2015/tuerkischer-ministerpraesident-vergleicht-pegida-und-is/,334.0,0.0,0.0,0.0,0.0,0.0,143.0,111.0,3.0,5.0,2015-01-14 13:54:20,1,0,0,0,0,0,0,0,1,0,201501,1,588.0
389,392,11443,JUNGE FREIHEIT,13479664941.0,10153496672574942,2015-01-09 00:00:00,ISLAMIST,2015-01-14 10:57:41,photo,b'DAS FANAL VON PARIS\n\nIslamistischer Terror: Nach dem ersten Schock \xc3\xbcber die Anschl\xc3\xa4ge in Frankreich reagiert unsere politische Klasse mit Ablenkungsman\xc3\xb6vern\n\nDie JF jetzt 4 Wochen mit einem Probeabo gratis testen:\nhttp://jungefreiheit.de/service/probeabo-bestellen/',b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10153496256739942/?type=3,90.0,0.0,0.0,0.0,0.0,0.0,5.0,13.0,3.0,5.0,2015-01-14 10:57:41,1,0,0,0,0,0,1,0,0,2,201501,1,108.0
390,393,11491,junge Welt,123292927706635.0,786168144752440,2015-02-14 00:00:00,ISLAMIST,2015-02-19 08:38:20,photo,"b'\xc2\xbbAttack and Destroy\xc2\xab USA hat Kampfjets vom Typ \xc2\xbbA-10 Thunderbolt II\xc2\xab sowie rund 300 Milit\xc3\xa4rangeh\xc3\xb6rige aus Arizona nach Spangdahlem in Rheinland-Pfalz verlegt. Fur die Flugzeuge und ihre Besatzungen ist dies nur eine vor\xc3\xbcbergehende Zwischenlandung, bevor es im Sonmer weiter Richtung Osten geht. Die zwischenzeitliche Verlegung von 600 US-Fallschirmj\xc3\xa4gern in die West- #Ukraine dient ebenso eher zur Destabilisierung der Region... https://www.jungewelt.de/2015/02-19/054.php Foto: Boris Roessler/dpa - Bildfunk'",b'Mobile Uploads',https://www.facebook.com/junge.welt/photos/a.785882634780991.1073741837.123292927706635/786168121419109/?type=3,18.0,0.0,0.0,0.0,0.0,0.0,1.0,24.0,2.0,1.0,2015-02-19 08:38:20,1,0,0,0,0,0,1,0,0,2,201502,0,43.0
391,394,11584,Daily Express,129617873765147.0,882130865180507,2015-02-14 00:00:00,ISLAMIST,2015-02-14 16:13:18,photo,b'BREAKING: Shots fired at Danish cafe meeting attended by controversial cartoonist\n\nhttp://www.express.co.uk/news/world/558200/Copenhagen-Denmark-shooting-cafe',b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/882130815180512/?type=3,59.0,0.0,0.0,0.0,0.0,0.0,11.0,24.0,2.0,1.0,2015-02-14 16:13:18,1,0,0,0,0,0,1,0,0,2,201502,0,94.0
392,395,11629,WDR,124207927630198.0,909768829074100,2015-02-14 00:00:00,ISLAMIST,2015-02-16 08:52:12,link,b'Um 10.11 Uhr setzt sich der K\xc3\xb6lner Rosenmontagszug in Bewegung. Zwei Wagen thematisieren jetzt doch den Anschlag auf Charlie Hebdo. #wdrjeck',"b'Doch ""Charlie Hebdo""-Wagen im K\xc3\xb6lner Zug'",http://www1.wdr.de/themen/panorama/sp_karneval15/rosenmontag-102.html,345.0,0.0,0.0,0.0,0.0,0.0,35.0,51.0,2.0,1.0,2015-02-16 08:52:12,1,0,0,0,0,0,0,0,1,0,201502,0,431.0
393,396,11647,City AM,213682385348579.0,933968626653281,2015-02-14 00:00:00,ISLAMIST,2015-02-17 19:05:00,link,"b'""Following the 9/11 terrorist attacks, fund managers with Middle-Eastern and South-Asian sounding names experienced a drop in fund flows""'","b'Why fund managers with ""foreign sounding"" names attract less cash'",http://www.cityam.com/209638/whats-name-fund-managers-foreign-sounding-names-attract-10-cent-less-inflows,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2015-02-17 19:05:00,1,0,0,0,0,0,0,0,1,0,201502,1,0.0
394,397,11662,The Times and The Sunday Times,147384458624178.0,998902140139068,2015-02-14 00:00:00,ISLAMIST,2015-02-14 11:27:04,link,"b'A baker was summoned for questioning by French police. His crime? He was working too hard\n\n\xe2\x80\x9cWhen you see how many people are out of work in France, I can\xe2\x80\x99t understand why they are attacking those who create employment and wealth.\xe2\x80\x9d\n\nhttp://thetim.es/1zTzdZd'",b'Baguette king told he must spend one day a week loafing | The Times',http://thetim.es/1zTzdZd,175.0,0.0,0.0,0.0,0.0,0.0,23.0,60.0,2.0,1.0,2015-02-14 11:27:04,1,0,0,0,0,0,0,0,1,0,201502,0,258.0
395,398,11672,The Times and The Sunday Times,147384458624178.0,1001448333217782,2015-02-14 00:00:00,ISLAMIST,2015-02-17 22:41:04,photo,"b""Tomorrow's front page:\nCameron incensed as bishops stir welfare row\n- Church leaders launch attack on political culture""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/1001448326551116/?type=3,71.0,0.0,0.0,0.0,0.0,0.0,16.0,17.0,2.0,1.0,2015-02-17 22:41:04,1,0,0,0,0,0,1,0,0,2,201502,0,104.0
396,399,11679,SR.de,139381656076338.0,1024654060882422,2015-02-14 00:00:00,ISLAMIST,2015-02-17 08:03:53,photo,"b'Schon am vergangenen Freitag haben die Narren das Rathaus in Gro\xc3\x9frosseln gest\xc3\xbcrmt. Das Oberkommando hatte in diesem Jahr der Karnevalsverein \xe2\x80\x9eHinne-Hott\xe2\x80\x9c Na\xc3\x9fweiler. Der Angriff erfolgte unter dem Motto: \xe2\x80\x9eR\xc3\xa4uber und Gendarm"". Heute haben die siegreichen Narren uns den Foto-Beweis geschickt.\n\n(Foto: Gemeinde Gro\xc3\x9frosseln)'",b'Timeline Photos',https://www.facebook.com/SRonline.de/photos/a.390138457667322.110254.139381656076338/1024653690882459/?type=3,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,2015-02-17 08:03:53,1,0,0,0,0,0,1,0,0,2,201502,0,4.0
397,400,11746,Mirror Politics,1542228052683519.0,1557291714510486,2015-02-14 00:00:00,ISLAMIST,2015-02-16 09:57:57,photo,b'The threat of a lone wolf is once again in the forefront of thoughts after the Copenhagen shootings.\nhttp://www.mirror.co.uk/news/world-news/copenhagen-shootings-security-tightened-uk-5169460',b'Timeline Photos',https://www.facebook.com/MirrorPolitics/photos/a.1552623691643955.1073741828.1542228052683519/1557288761177448/?type=3,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,2015-02-16 09:57:57,1,0,0,0,0,0,1,0,0,2,201502,0,3.0
398,401,11760,WAZ,117194401183.0,10152526067796184,2015-02-14 00:00:00,ISLAMIST,2015-02-15 06:46:21,link,b'Nach dem Terroranschlag in Kopenhagen \xc3\xbcberschlagen sich die Ereignisse. Unser \xc3\x9cberblick am Morgen:',b'Polizei erschie\xc3\x9ft nach Terroranschlag Mann in Kopenhagen',http://www.derwesten.de/politik/polizei-erschiesst-nach-terroranschlag-mann-in-kopenhagen-id10350127.html,73.0,0.0,0.0,0.0,0.0,0.0,15.0,34.0,2.0,1.0,2015-02-15 06:46:21,1,0,0,0,0,0,0,0,1,0,201502,1,122.0
399,402,11762,WAZ,117194401183.0,10152527979341184,2015-02-14 00:00:00,ISLAMIST,2015-02-16 08:17:37,link,"b'Die d\xc3\xa4nische Polizei hat nach den Terroranschl\xc3\xa4gen von Kopenhagen zwei M\xc3\xa4nner festgenommen. Sie sollen dem Attent\xc3\xa4ter ""mit Rat und Tat"" geholfen haben.'",b'Zwei Festnahmen nach Terroranschl\xc3\xa4gen in Kopenhagen',http://www.derwesten.de/politik/daenen-unter-schock-id10353668.html,29.0,0.0,0.0,0.0,0.0,0.0,3.0,7.0,2.0,1.0,2015-02-16 08:17:37,1,0,0,0,0,0,0,0,1,0,201502,1,39.0
400,403,11787,Daily Telegraph,110032161104.0,10152554045376105,2015-02-14 00:00:00,ISLAMIST,2015-02-16 02:11:46,photo,b'Have you seen this man from Liverpool? He allegedly targeted a man in his 50s who was looking for love through classifieds and forced him at knife-point to handover cash and his bank account details. http://bit.ly/1AGEKCS',b'Timeline Photos',https://www.facebook.com/dailytelegraph/photos/a.363988801104.158734.110032161104/10152554045351105/?type=3,68.0,0.0,0.0,0.0,0.0,0.0,26.0,135.0,2.0,1.0,2015-02-16 02:11:46,1,0,0,0,0,0,1,0,0,2,201502,0,229.0
401,404,11825,Channel 4 News,6622931938.0,10152734348671939,2015-02-14 00:00:00,ISLAMIST,2015-02-16 09:13:45,video,b'Paying respect to the victims of the Copenhagen shootings...',missing_value,https://www.facebook.com/Channel4News/videos/10152734348671939/,124.0,0.0,0.0,0.0,0.0,0.0,22.0,21.0,2.0,1.0,2015-02-16 09:13:45,1,0,0,0,0,0,0,1,0,1,201502,0,167.0
402,405,11855,ITV News,148007467671.0,10152768306927672,2015-02-14 00:00:00,ISLAMIST,2015-02-16 08:20:24,video,"b'Police are searching for a mugger who knocked a frail 92-year-old man to the ground and grabbed his wallet before fleeing with just \xc2\xa35.\r\n\r\nCCTV footage of the ""sickening"" attack was released in a bid to catch the culprit: http://bit.ly/1v3xcJB'",missing_value,https://www.facebook.com/itvnews/videos/10152768306927672/,2369.0,0.0,0.0,0.0,0.0,4.0,3962.0,23631.0,2.0,1.0,2015-02-16 08:20:24,1,0,0,0,0,0,0,1,0,1,201502,0,29966.0
403,406,11861,Financial Times,8860325749.0,10153042729785750,2015-02-14 00:00:00,ISLAMIST,2015-02-16 14:22:57,video,"b'Three people, including the suspected gunman, were killed during twin attacks in Copenhagen during the weekend. Denmark, which has an unusually high number of fighters in Isis, is seen as particularly vulnerable to terror attacks. \n\nMore on this story: http://on.ft.com/1FSicPP'",missing_value,https://www.facebook.com/financialtimes/videos/10153042729785750/,126.0,0.0,0.0,0.0,0.0,0.0,11.0,22.0,2.0,1.0,2015-02-16 14:22:57,1,0,0,0,0,0,0,1,0,1,201502,1,159.0
404,407,11874,Financial Times,8860325749.0,10153050324715750,2015-02-14 00:00:00,ISLAMIST,2015-02-19 18:35:48,video,"b""Labour leader Ed Miliband attacks bankers, tax evaders and energy companies. But is he too soft on the 'vested interests' on his own side, such as trade unions and the NHS? \n\nMore on this story: http://on.ft.com/1w1mBQf""",missing_value,https://www.facebook.com/financialtimes/videos/10153050324715750/,148.0,0.0,0.0,0.0,0.0,0.0,12.0,26.0,2.0,1.0,2015-02-19 18:35:48,1,0,0,0,0,0,0,1,0,1,201502,0,186.0
405,408,11937,Freie Presse,375109771472.0,10153142799406473,2015-02-14 00:00:00,ISLAMIST,2015-02-16 07:35:39,photo,"b'Guten Morgen! Das bringt der Tag heute:\n\nNachdem der Karnevalsumzug in Braunschweig gestern wegen Terrorgefahr abgesagt werden musste, finden heute in Faschingshochburgen wie K\xc3\xb6ln oder D\xc3\xbcsseldorf die traditionellen Rosenmontagsumz\xc3\xbcge statt (Foto: Oliver Berg/dpa). Wo hier in der Region gefeiert wird, erfahren Sie unter: www.freiepresse.de/karneval\n\nAm Abend haben islamkritische B\xc3\xbcndnisse wie Pegida, Legida und Cegida wieder Kundgebungen und Demonstrationen angemeldet. Auch Gegenaktionen sind geplant.\n\nIn Berlin starten heute die Tarifgespr\xc3\xa4che f\xc3\xbcr die rund eine Million Angestellten der L\xc3\xa4nder. Gewerkschaften und Arbeitgeber stimmen sich gegenseitig auf schwierige Verhandlungen ein.\n\nKommen Sie gut in die neue Woche!'",b'Timeline Photos',https://www.facebook.com/freiepresse/photos/a.10151210045371473.471017.375109771472/10153142798181473/?type=3,10.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.0,2015-02-16 07:35:39,1,0,0,0,0,0,1,0,0,2,201502,1,11.0
406,409,11956,Bild,25604775729.0,10153155274550730,2015-02-14 00:00:00,ISLAMIST,2015-02-15 07:09:33,photo,b'Schon ausgeschlafen? In Berlin ist die Sonne schon da: Guten Morgen!\nDie Kollegen der BILD am Sonntag haben heute diese Titelseite f\xc3\xbcr euch:\n\nHeirat mit Agentin: So lockte das FBI den ISIS-Terroristen Deso Dogg in die Liebesfalle! \nhttp://on.bild.de/177wccd\n\nUnd: 8:0! Bayern feiert Robbens rechten Fu\xc3\x9f!\nhttp://on.bild.de/1AAJF8y',b'Timeline Photos',https://www.facebook.com/bild/photos/a.166767505729.158690.25604775729/10153155269025730/?type=3,537.0,0.0,0.0,0.0,0.0,0.0,69.0,36.0,2.0,1.0,2015-02-15 07:09:33,1,0,0,0,0,0,1,0,0,2,201502,1,642.0
407,410,12099,Monitor,186702484702033.0,848749491830659,2015-02-21 00:00:00,LEFT,2015-02-26 08:00:00,status,"b'Aktuelle MONITOR-Pressemeldung: \xe2\x80\x9eIn was bin ich da hinein geraten?\xe2\x80\x9c Erster deutscher IS-R\xc3\xbcckkehrer bricht sein Schweigen | Hessische LKA-Chefin pl\xc3\xa4diert f\xc3\xbcr \xe2\x80\x9eDeradikalisierungsprogramme\xe2\x80\x9c\n\nNicht erst seit den Anschl\xc3\xa4gen von Paris und Kopenhagen gelten sie als \xe2\x80\x9etickende Zeitbomben\xe2\x80\x9c: Deutsche R\xc3\xbcckkehrer aus dem IS-Kampfgebiet. Im ARD-Magazin MONITOR (heute, 21:45 Uhr im Ersten) spricht nun erstmals einer von ihnen \xc3\xb6ffentlich \xc3\xbcber seine Reise nach Syrien und seine R\xc3\xbcckkehr nach Deutschland. Dabei handelt es sich um einen jungen Mann aus Hessen, der im vergangenen Jahr \xc3\xbcber die T\xc3\xbcrkei nach Syrien gereist ist und dort mehrere Wochen in einem IS-Lager verbracht hat. \n \nIn seinen Schilderungen gibt er tiefe Einblicke in das Rekrutierungssystem des IS. Demnach hielten sich ca. 1.000 kampfbereite Dschihadisten in dem Lager im syrisch-t\xc3\xbcrkischen Grenzgebiet auf, von denen die gro\xc3\x9fe Mehrzahl bereit war, als Selbstmordattent\xc3\xa4ter zu sterben. In einer Woche sollen ca. 500 Neuank\xc3\xb6mmlinge im Lager eingetroffen sein, die meisten von ihnen aus arabischen Staaten. Aber auch M\xc3\xa4nner aus Deutschland sollen sich in dem Lager aufgehalten haben. Direkt nach ihrer Ankunft seien ihnen Ausweise und Handys abgenommen worden. Die Reise \xc3\xbcber die Grenze sollen deutsche Dschihadisten mit Hilfe von Schmugglerbanden organisiert haben. Nach Angaben des R\xc3\xbcckkehrers sei das Gebiet regelm\xc3\xa4\xc3\x9fig von Kampfjets \xc3\xbcberflogen worden. \n \nNach mehrw\xc3\xb6chigem Aufenthalt habe er sich entschlossen, das Lager wieder zu verlassen und nach Deutschland zur\xc3\xbcckzukehren, auch weil er nicht als Selbstmordattent\xc3\xa4ter sterben wollte. \xe2\x80\x9eIch habe gemerkt, dass ich einen gro\xc3\x9fen Fehler gemacht habe\xe2\x80\x9c, sagte er dem ARD-Magazin. \xc3\x9cber die Umst\xc3\xa4nde seiner Flucht wollte er keine detaillierteren Ausk\xc3\xbcnfte geben. Bei der R\xc3\xbcckreise aus der T\xc3\xbcrkei nach Deutschland wurde er von Mitarbeitern des \xe2\x80\x9eViolence Prevention Network\xe2\x80\x9c (VPN) unterst\xc3\xbctzt, einem Verein, der sich in Deutschland um islamistische Straft\xc3\xa4ter k\xc3\xbcmmert. Er habe sich entschlossen, mit seiner Geschichte jetzt an die \xc3\x96ffentlichkeit zu gehen, \xe2\x80\x9edamit andere nicht denselben Fehler machen.\xe2\x80\x9c\n \nMitarbeiter des VPN halten die Bekenntnisse des jungen Mannes im Kern f\xc3\xbcr glaubw\xc3\xbcrdig. Auch weitere Recherchen des ARD-Magazins haben wesentliche Teile der Schilderungen best\xc3\xa4tigt.\n \nVor dem Hintergrund des von MONITOR recherchierten Falls pl\xc3\xa4diert die Pr\xc3\xa4sidentin des hessischen Landeskriminalamtes, Sabine Thurau, f\xc3\xbcr Deradikalisierungsprogramme f\xc3\xbcr IS-R\xc3\xbcckkehrer: \xe2\x80\x9eIch w\xc3\xbcrde mir w\xc3\xbcnschen, dass bundesweit mehr solcher Kooperationen mit Beratungsstellen entstehen\xe2\x80\x9c, sagte Thurau gegen\xc3\xbcber MONITOR.\n \nZur Zeit besucht der junge Mann, der anonym bleiben will, wieder eine Schule in Hessen und wird von Mitarbeitern des VPN betreut. \n \nDas ausf\xc3\xbchrliche Interview sendet MONITOR heute um 21:45 Uhr im Ersten. \n\n#ard #wdr #ardmonitor #georgrestle #daserste #lka #dschihad #jihad #is #islamismus'",missing_value,missing_value,72.0,0.0,0.0,0.0,0.0,0.0,26.0,20.0,0.0,1.0,2015-02-26 08:00:00,1,0,0,0,0,0,0,0,0,0,201502,0,118.0
408,411,12104,Monitor,186702484702033.0,848984755140466,2015-02-21 00:00:00,LEFT,2015-02-26 09:34:46,video,b'Zum ersten Mal spricht ein deutscher R\xc3\xbcckkehrer vor der Kamera \xc3\xbcber das System Islamischer Staat. Dies und mehr heute Abend bei MONITOR. Um 21:45 Uhr im Ersten. Teilen. Weitersagen. Einschalten.\r\n\r\n#ard #monitor #wdr #daserste #georgrestle #is #dschihad #jihad',missing_value,https://www.facebook.com/monitor.wdr/videos/848984755140466/,137.0,0.0,0.0,0.0,0.0,0.0,37.0,64.0,0.0,1.0,2015-02-26 09:34:46,1,0,0,0,0,0,0,1,0,1,201502,0,238.0
409,412,12105,Monitor,186702484702033.0,848993861806222,2015-02-21 00:00:00,LEFT,2015-02-26 10:13:32,link,"b'Der R\xc3\xbcckkehrer: Mehmets Begegnung mit dem IS\n\nM\xc3\xa4nner wie er gelten als ""tickende Zeitbomben"": Mehmet reist in ein IS-Lager, will sich zum K\xc3\xa4mpfer ausbilden lassen. Doch dann kommen Zweifel. Wie ihm die Flucht zur\xc3\xbcck nach Deutschland gelang, hat er MONITOR geschildert.\n\nHeute Abend um 21:45 Uhr bei MONITOR im Ersten.\n\n#wdr #ardmonitor #monitor #tagesschau #ard #daserste #dschihad #jihad #mehmet #is'",b'R\xc3\xbcckkehr aus dem Dschihad: Deutscher erz\xc3\xa4hlt von IS-Lager',http://www.tagesschau.de/inland/is-rueckkehrer-dschihad-101.html,118.0,0.0,0.0,0.0,0.0,0.0,47.0,79.0,0.0,1.0,2015-02-26 10:13:32,1,0,0,0,0,0,0,0,1,0,201502,0,244.0
410,413,12114,Monitor,186702484702033.0,849485605090381,2015-02-21 00:00:00,LEFT,2015-02-27 15:36:37,status,"b'""Kopf ab und weg damit"" - Wie umgehen mit den IS-R\xc3\xbcckkehrern?\n\nDamit war fast zu rechnen: Unser Bericht \xc3\xbcber den IS-R\xc3\xbcckkehrer schl\xc3\xa4gt nicht nur hier hohe Wellen. Und die Reaktionen sind so gut wie einhellig; wobei ""Wegsperren!"" noch zu den humaneren Varianten z\xc3\xa4hlt. Ach, wenn es doch nur so einfach w\xc3\xa4re! \nJa, ein differenzierter Blick f\xc3\xa4llt schwer angesichts der monstr\xc3\xb6sen Bilder des IS-Terrors, die wir t\xc3\xa4glich ertragen m\xc3\xbcssen. Und ebenso gilt, dass ich f\xc3\xbcr keinen, der aus dem IS-Kampfgebiet zur\xc3\xbcck kehrt, die Hand ins Feuer legen w\xc3\xbcrde. Wer sich verblendet aufmacht, um f\xc3\xbcr ein Terror-Kalifat zu sterben, der darf nicht erwarten, dass eine Gesellschaft die Arme aufmacht, um ihn wieder freudig aufzunehmen. \n\nUnd trotzdem m\xc3\xbcssen wir differenzieren - gerade, wenn wir nicht wollen, dass aus R\xc3\xbcckkehrern Attent\xc3\xa4ter werden. F\xc3\xbcr diesen differenzierten Blick haben wir gestern geworben. Weil wir wissen, dass auch deutsche Gef\xc3\xa4ngnisse Brutst\xc3\xa4tten f\xc3\xbcr islamistische Terroristen sind. Weil wir wissen, dass viele der R\xc3\xbcckkehrer in der islamistischen Szene als Verr\xc3\xa4ter gelten. Weil wir glauben, dass gesellschaftliche Integration das beste Mittel gegen Radikalisierung ist. Deshalb sollten wir genau hinschauen, wer da zur\xc3\xbcck kehrt. Immerhin wissen wir: Nur die Minderheit gilt als ""kampferprobt"" und viele kommen auch deshalb zur\xc3\xbcck, weil sie die Brutalit\xc3\xa4t des IS-Terrors nicht ertragen. \n\nKeine Frage: Wer sich an Straftaten beteiligt hat, gegen den muss ermittelt werden. Es gilt aber auch: Wer sich glaubw\xc3\xbcrdig distanziert, der hat eine zweite Chance verdient. Nicht aus p\xc3\xa4dagogischem \xc3\x9cbereifer, sondern im Interesse unserer Sicherheit.\n\nGeorg Restle\n\n#monitor #ardmonitor #ard #georgrestle #daserste'",missing_value,missing_value,247.0,0.0,0.0,0.0,0.0,0.0,75.0,27.0,0.0,1.0,2015-02-27 15:36:37,1,0,0,0,0,0,0,0,0,0,201502,1,349.0
411,414,12138,Radio Bremen,155771627779074.0,875956222427274,2015-02-21 00:00:00,LEFT,2015-02-25 19:58:00,link,"b'Krawalle bei Fu\xc3\x9fballspielen: \nIrgendwie sind immer die Anderen Schuld: Die Fans, die Polizei, das Fanprojekt... Keine L\xc3\xb6sung in Sicht?'","b'""Die Ultra-Szene steigt nicht in den Dialog ein"" - Angriffe bei Fu\xc3\x9fballspielen - Radio Bremen'",http://www.radiobremen.de/politik/themen/fussball-polizei102.html,18.0,0.0,0.0,0.0,0.0,0.0,8.0,3.0,0.0,1.0,2015-02-25 19:58:00,0,1,0,0,0,0,0,0,1,0,201502,0,29.0
412,415,12145,Daily Express,129617873765147.0,888298541230406,2015-02-21 00:00:00,LEFT,2015-02-23 10:50:00,link,"b""'Britain is burying its head in the sand over the growing threat to our nuclear power plants'\n\nhttp://www.express.co.uk/news/uk/559718/Nclear-plants-are-at-risk-from-a-terrorist-strike-by-unmanned-drones""","b""TERROR THREAT ALERT: UK's nuclear plants are at SERIOUS risk of terrorist drone strikes""",http://www.express.co.uk/news/uk/559718/Nclear-plants-are-at-risk-from-a-terrorist-strike-by-unmanned-drones,140.0,0.0,0.0,0.0,0.0,0.0,40.0,71.0,0.0,1.0,2015-02-23 10:50:00,0,1,0,0,0,0,0,0,1,0,201502,1,251.0
413,416,12150,London Evening Standard,165348596842143.0,900000390043623,2015-02-21 00:00:00,LEFT,2015-02-22 13:52:09,link,b'Aqsa Mahmood is believed to have recruited the three London schoolgirls',"b""'She's a disgrace,' say family of British jihadi bride thought to have recruited missing London...""",http://bit.ly/1AiALMx,176.0,0.0,0.0,0.0,0.0,0.0,113.0,43.0,0.0,1.0,2015-02-22 13:52:09,0,1,0,0,0,0,0,0,1,0,201502,0,332.0
414,417,12157,London Evening Standard,165348596842143.0,901969346513394,2015-02-21 00:00:00,LEFT,2015-02-26 15:35:47,link,"b'They claim Jihadi John ""Was repeatedly detained at airports, deported, barred from entering countries and even allegedly assaulted by officers.""'","b""Pressure group sparks row by suggesting radicalisation of Jihadi John is due to 'harassment' by...""",https://www.standard.co.uk/news/uk/jihadi-john-named-cage-faces-pressure-after-suggesting-harassment-by-british-security-services-to-blame-for-radicalisation-10072643.html,91.0,0.0,0.0,0.0,0.0,0.0,96.0,52.0,0.0,1.0,2015-02-26 15:35:47,1,0,0,0,0,0,0,0,1,0,201502,0,239.0
415,418,12208,RTL,179133132098813.0,942466195765499,2015-02-21 00:00:00,LEFT,2015-02-22 17:35:01,photo,"b'Mit Hilfe eines speziellen Programms wollen Terroristen - ausgerechnet am Unabh\xc3\xa4ngigkeitstag - das komplette Datennetzwerk aller US-Beh\xc3\xb6rden lahm legen. Einziges Problem: John McClane. Der brummige Bulle bevorzugt die gute, alte, \'analoge\' Methode: Mit F\xc3\xa4usten, Dienstspistole und K\xc3\xb6pfchen r\xc3\xbcckt er den Terroristen auf den Pelz - und das kann er wie kein Zweiter...\n\n""Stirb langsam 4.0"" um 20:15 Uhr bei RTL!'",b'Timeline Photos',https://www.facebook.com/meinRTL/photos/a.317833411562117.86456.179133132098813/942390785773040/?type=3,297.0,0.0,0.0,0.0,0.0,0.0,36.0,18.0,0.0,1.0,2015-02-22 17:35:01,0,1,0,0,0,0,1,0,0,2,201502,1,351.0
416,419,12217,The Times and The Sunday Times,147384458624178.0,1004373726258576,2015-02-21 00:00:00,LEFT,2015-02-22 22:35:40,photo,"b""Tomorrow's Times front page: Jihadists call for UK attacks on shoppers""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/1004373709591911/?type=3,71.0,0.0,0.0,0.0,0.0,0.0,20.0,31.0,0.0,1.0,2015-02-22 22:35:40,1,0,0,0,0,0,1,0,0,2,201502,0,122.0
417,420,12227,The Times and The Sunday Times,147384458624178.0,1006651709364111,2015-02-21 00:00:00,LEFT,2015-02-26 15:01:01,photo,"b""Today's Peter Brookes cartoon: Quarter of UK Muslims in sympathy with Paris attackers http://thetim.es/1LIW37R""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/1006651696030779/?type=3,230.0,0.0,0.0,0.0,0.0,0.0,44.0,79.0,0.0,1.0,2015-02-26 15:01:01,0,1,0,0,0,0,1,0,0,2,201502,0,353.0
418,421,12229,The Times and The Sunday Times,147384458624178.0,1006857289343553,2015-02-21 00:00:00,LEFT,2015-02-26 22:49:35,photo,"b""Tomorrow's front page: Isis butcher had been MI5 terror suspect for six years""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/1006857252676890/?type=3,45.0,0.0,0.0,0.0,0.0,0.0,17.0,25.0,0.0,1.0,2015-02-26 22:49:35,0,1,0,0,0,0,1,0,0,2,201502,1,87.0
419,422,12232,The Times and The Sunday Times,147384458624178.0,1007347139294568,2015-02-21 00:00:00,LEFT,2015-02-27 22:26:30,photo,"b""Tomorrow's front page: Hundreds more jihadists have slipped net, says MI5""",b'Timeline Photos',https://www.facebook.com/timesandsundaytimes/photos/a.212406988788591.78923.147384458624178/1007346979294584/?type=3,44.0,0.0,0.0,0.0,0.0,0.0,15.0,9.0,0.0,1.0,2015-02-27 22:26:30,1,0,0,0,0,0,1,0,0,2,201502,0,68.0
420,423,12246,The Daily Star,161612017189003.0,1033359173347612,2015-02-21 00:00:00,LEFT,2015-02-25 08:26:31,link,b'NEW GHOST TERROR:\n\nEvil spirit spotted at Hampton Court',"b""GHOST TERROR: Spirit of The Grey Lady captured on camera at 'haunted' Hampton Court""",http://www.dailystar.co.uk/news/latest-news/427433/Ghost-The-Grey-Lady-snapped-haunted-Hampton-Court,168.0,0.0,0.0,0.0,0.0,0.0,38.0,66.0,0.0,1.0,2015-02-25 08:26:31,0,1,0,0,0,0,0,0,1,0,201502,1,272.0
421,424,12287,BR - Bayerischer Rundfunk,157820960901646.0,1080081058675627,2015-02-21 00:00:00,LEFT,2015-02-25 08:51:14,photo,b'Oben: Heute vor 70 Jahren ist das Funkhaus bei schweren Fliegerangriffen auf M\xc3\xbcnchen mit Brandbomben besch\xc3\xa4digt worden (Bildrechte: BR/Hans Sch\xc3\xbcrer). Verletzte gab es nicht zu verzeichnen. \nUnten: Aktuelle Aufnahme des Geb\xc3\xa4udes an der Ecke Hopfen-/Marsstra\xc3\x9fe. \nBildergalerie des sogenannten Riemerschmidbaus: http://br.de/s/1bs1t0M',b'Timeline Photos',https://www.facebook.com/bayerischer.rundfunk/photos/a.546041238746281.145688.157820960901646/1079755228708210/?type=3,90.0,0.0,0.0,0.0,0.0,0.0,2.0,7.0,0.0,1.0,2015-02-25 08:51:14,0,1,0,0,0,0,1,0,0,2,201502,0,99.0
422,425,12314,Mirror Politics,1542228052683519.0,1560520034187654,2015-02-21 00:00:00,LEFT,2015-02-25 17:03:11,video,b'Watch as a furious radio caller gives Grant Shapps a piece of her mind...',"b'Watch Grant Shapps blasted by radio listener for ""tiresome"" attacks on Miliband'",http://www.mirror.co.uk/news/uk-news/watch-grant-shapps-blasted-radio-5230183,5.0,0.0,0.0,0.0,0.0,0.0,1.0,38.0,0.0,1.0,2015-02-25 17:03:11,0,1,0,0,0,0,0,1,0,1,201502,0,44.0
423,426,12443,ITV News,148007467671.0,10152792442392672,2015-02-21 00:00:00,LEFT,2015-02-26 17:19:08,video,"b'David Haines\' daughter, Bethany, tells ITV News that families of \'Jihadi John\'s\' victims will only get closure once ""there\'s a bullet between his eyes"" http://bit.ly/1BB6zP9'",missing_value,https://www.facebook.com/itvnews/videos/10152792442392672/,3409.0,0.0,0.0,0.0,0.0,0.0,263.0,245.0,0.0,1.0,2015-02-26 17:19:08,1,0,0,0,0,0,0,1,0,1,201502,0,3917.0
424,427,12462,SÜDWEST PRESSE Online,167154977630.0,10152992228057631,2015-02-21 00:00:00,LEFT,2015-02-27 10:39:05,photo,b'Die Abstimmung \xc3\xbcber den Busbahnhof im Wei\xc3\x9fenhorner Stadtrat schl\xc3\xa4gt hohe Wellen: SPD-Chef Herbert Richter attackiert CSU und \xc3\x96DP. Diese rechtfertigen ihr Nein zu den umstrittenen \xc3\x9cberdachungspl\xc3\xa4nen. www.swp.de/3073359',b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10152992227937631/?type=3,5.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2015-02-27 10:39:05,0,1,0,0,0,0,1,0,0,2,201502,0,6.0
425,428,12473,Financial Times,8860325749.0,10153069970445750,2015-02-21 00:00:00,LEFT,2015-02-27 14:33:48,video,"b'What will a folding electric bicycle and Formula 1 car have in common? We could find out as early as next year: http://on.ft.com/1Dh68EH \n\nWatch how the maker of the ""Swiss army knife"" of bikes is taking advantage of cycling booms in London and other cities:'",missing_value,https://www.facebook.com/financialtimes/videos/10153069970445750/,202.0,0.0,0.0,0.0,0.0,0.0,10.0,122.0,0.0,1.0,2015-02-27 14:33:48,0,1,0,0,0,0,0,1,0,1,201502,0,334.0
426,429,12491,SPIEGEL ONLINE,38246844868.0,10153091581104869,2015-02-21 00:00:00,LEFT,2015-02-27 16:08:42,link,"b'Der ehemalige bayrische Ministerpr\xc3\xa4sident G\xc3\xbcnther Beckstein (CSU) und Hessens Regierungschef Volker Bouffier (CDU) sollen im NSU-Prozess als Zeugen aussagen. Das fordern die Anw\xc3\xa4lte der Familie eines der Opfer. Sie sind \xc3\xbcberzeugt, der Verfassungsschutz war aktiv an einem der Morde beteiligt. Belegen sollen das abgeh\xc3\xb6rte Telefonate.'",b'Streit im NSU-Prozess: Staatsanw\xc3\xa4lte attackieren Nebenkl\xc3\xa4ger',http://www.spiegel.de/panorama/justiz/nsu-prozess-heftiger-streit-um-mord-an-yozgat-a-1020805.html,102.0,0.0,0.0,0.0,0.0,0.0,47.0,20.0,0.0,1.0,2015-02-27 16:08:42,0,1,0,0,0,0,0,0,1,0,201502,0,169.0
427,430,12522,The Guardian,10513336322.0,10153119055531323,2015-02-21 00:00:00,LEFT,2015-02-26 11:39:58,link,"b'The militant dubbed \xe2\x80\x98Jihadi John\xe2\x80\x99 has been named as Mohammad Emwazi, a 26-year-old west Londoner and university graduate.'",b'UK man behind Isis beheadings named as Mohammed Emwazi',http://gu.com/p/466b2/fb,713.0,0.0,0.0,0.0,0.0,0.0,291.0,352.0,0.0,1.0,2015-02-26 11:39:58,1,0,0,0,0,0,0,0,1,0,201502,0,1356.0
428,431,12736,Daily Express,129617873765147.0,922009194526007,2015-04-19 00:00:00,ISLAMIST,2015-04-21 16:30:01,link,b'TERROR WARNING: Islamic State is using refugee crisis to smuggle jihadists into UK and Europe...\n\nhttp://www.express.co.uk/news/uk/571932/Islamic-State-jihadists-Middle-East-refugees-smuggle-Europe-Nato-chief',"b'IS is smuggling jihadists to Europe disguised as desperate refugees, warns Nato chief'",http://www.express.co.uk/news/uk/571932/Islamic-State-jihadists-Middle-East-refugees-smuggle-Europe-Nato-chief,393.0,0.0,0.0,0.0,0.0,0.0,171.0,346.0,0.0,1.0,2015-04-21 16:30:01,1,0,0,0,0,0,0,0,1,0,201504,1,910.0
429,432,12739,London Evening Standard,165348596842143.0,930232653687063,2015-04-19 00:00:00,ISLAMIST,2015-04-19 08:20:26,link,missing_value,b'Police probe shooting at convenience store in Stoke Newington on Saturday night',https://www.standard.co.uk/news/crime/stoke-newington-shooting-mets-gang-crime-unit-probe-incident-convenience-store-dalston-10187413.html,207.0,0.0,0.0,0.0,0.0,0.0,14.0,46.0,0.0,1.0,2015-04-19 08:20:26,1,0,0,0,0,0,0,0,1,0,201504,0,267.0
430,433,12741,London Evening Standard,165348596842143.0,930968096946852,2015-04-19 00:00:00,ISLAMIST,2015-04-20 13:50:31,link,"b'""He grabbed her by the arms and hit her on the head.""'",b'Pregnant dog walker attacked with plastic dog ball launcher',https://www.standard.co.uk/news/crime/pregnant-dog-walker-attacked-with-plastic-dog-ball-launcher-10189755.html,60.0,0.0,0.0,0.0,0.0,0.0,5.0,16.0,0.0,1.0,2015-04-20 13:50:31,1,0,0,0,0,0,0,0,1,0,201504,0,81.0
431,434,12779,WDR,124207927630198.0,953649534686029,2015-04-19 00:00:00,ISLAMIST,2015-04-20 09:43:59,status,"b'Das gesamte IT-Netz der Bundesarbeitsagentur ist ausgefallen. Seit Mitternacht geht nichts mehr. Die Ursache ist noch unbekannt, ein Hackerangriff ist nicht ausgeschlossen. Einzelne Beratungen finden wohl auch ohne PC statt. Wer einen Termin hat, sollte den auch wahrnehmen. Wenn man heute ohne Termin hin wollte oder keine Frist zu wahren ist, den Besuch vielleicht besser aufschieben. Mehr Infos: http://bit.ly/1Ga7TXY'",missing_value,missing_value,42.0,0.0,0.0,0.0,0.0,0.0,11.0,22.0,0.0,1.0,2015-04-20 09:43:59,1,0,0,0,0,0,0,0,0,0,201504,0,75.0
432,435,12907,BR - Bayerischer Rundfunk,157820960901646.0,1115021545181578,2015-04-19 00:00:00,ISLAMIST,2015-04-22 13:26:17,video,"b'""Ich habe Flossenb\xc3\xbcrg verlassen, aber Flossenb\xc3\xbcrg hat mich nie mehr verlassen"", sagt Jack Terry. Als der j\xc3\xbcdische Junge aus Polen vor 70 Jahren hier befreit wurde, war er 15 Jahre alt und wog 34 Kilo. \nUnsere Dokumentation ""\xc3\x9cberall war Tod \xe2\x80\x93 Vom Leiden und Sterben im KZ-Flossenb\xc3\xbcrg"" zeichnet heute um 22 Uhr die Geschichte nach. \xc3\x9cberlebende des Terrors berichten von ihren grauenvollen Erfahrungen, von ihrem tagt\xc3\xa4glichen \xc3\x9cberlebenskampf.\nVorher begibt sich die \xe2\x80\x9eKontrovers\xe2\x80\x9c-Story um 21 Uhr auf die Spuren des Todesmarsches der Juden von Flossenb\xc3\xbcrg.\nMehr: http://br.de/s/1h3XCiz'",b'\xc3\x9cberall war Tod',https://www.facebook.com/bayerischer.rundfunk/videos/1115021545181578/,17.0,0.0,0.0,0.0,0.0,0.0,4.0,16.0,0.0,1.0,2015-04-22 13:26:17,1,0,0,0,0,0,0,1,0,1,201504,1,37.0
433,436,12937,WAZ,117194401183.0,10152645620366184,2015-04-19 00:00:00,ISLAMIST,2015-04-19 07:31:45,link,"b'Sie retten Leben und werden attackiert: Die Polizei fordert lange Haft f\xc3\xbcr Angriffe auf Notarzt, Feuerwehr und Polizei.'",b'Polizei will hohe Haftstrafen f\xc3\xbcr Angriffe auf Einsatzkr\xc3\xa4fte',http://www.derwesten.de/politik/polizei-fordert-hoehere-strafen-fuer-angriffe-auf-einsatzkraefte-id10576319.html,986.0,0.0,0.0,0.0,0.0,0.0,106.0,60.0,0.0,1.0,2015-04-19 07:31:45,1,0,0,0,0,0,0,0,1,0,201504,0,1152.0
434,437,12973,ARD,48219766388.0,10152729137771389,2015-04-19 00:00:00,ISLAMIST,2015-04-24 12:43:04,link,"b'Auf bis zu acht Milliarden Euro pro Jahr sch\xc3\xa4tzen Fahnder den Umsatz aus dem Verkauf illegal erlangter Kulturg\xc3\xbcter weltweit. Die Gier der Sammler, Grabr\xc3\xa4uber und H\xc3\xa4ndler zerst\xc3\xb6rt nicht nur die Vergangenheit von V\xc3\xb6lkern, sondern finanziert auch Terrornetzwerke wie den IS:'",b'Raubgr\xc3\xa4ber - Ein Feature \xc3\xbcber die Gier der Sammler',http://www.ard.de/home/radio/Raubgraeber/1656878/index.html,5.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,2015-04-24 12:43:04,1,0,0,0,0,0,0,0,1,0,201504,1,8.0
435,438,13127,HNA,237702348824.0,10153339167523825,2015-04-19 00:00:00,ISLAMIST,2015-04-19 07:19:21,photo,b'Brennende Stra\xc3\x9fen nach einem Angriff der Au\xc3\x9ferirdischen? Nope ... einfach nur ein Samstagabend in Kassel. \n\nIch w\xc3\xbcnsche euch einen Sonnigen Start in den Tag!',b'Timeline Photos',https://www.facebook.com/HNA/photos/a.256900728824.169956.237702348824/10153339166323825/?type=3,691.0,0.0,0.0,0.0,0.0,0.0,14.0,62.0,0.0,1.0,2015-04-19 07:19:21,1,0,0,0,0,0,1,0,0,2,201504,0,767.0
436,439,13139,JUNGE FREIHEIT,13479664941.0,10153767789199942,2015-04-19 00:00:00,ISLAMIST,2015-04-21 13:29:03,link,"b'Eine geplante Konferenz von Sympathisanten der Terrororganisation Hamas in Berlin ist auf Widerstand gesto\xc3\x9fen. Politiker von SPD, CDU und Gr\xc3\xbcnen forderten einen Abbruch der Veranstaltung, wenn es dort zu antisemitischen Aussagen kommen sollte. >>'",b'Kritik an geplanter Pal\xc3\xa4stinenser-Konferenz in Berlin',https://jungefreiheit.de/politik/deutschland/2015/kritik-an-geplanter-palaestinenser-konferenz-in-berlin/,193.0,0.0,0.0,0.0,0.0,0.0,50.0,39.0,0.0,1.0,2015-04-21 13:29:03,1,0,0,0,0,0,0,0,1,0,201504,1,282.0
437,440,13160,Sunday Express,143537355839363.0,373232182869878,2015-06-26 00:00:00,ISLAMIST,2015-06-28 07:32:19,link,"b'The United Nations (UN), American government and African Union have condemned the fatal shooting of former Lesotho Defence Force (LDF) Commander Maaparankoe Mahao.'",b'World condemns Mahao killing \xe2\x80\x93 Sunday Express',http://sundayexpress.co.ls/world-condemns-mahao-killing/,15.0,0.0,0.0,0.0,0.0,0.0,7.0,18.0,2.0,1.0,2015-06-28 07:32:19,1,0,0,0,0,0,0,0,1,0,201506,0,40.0
438,441,13165,Sunday Express,143537355839363.0,373345706191859,2015-06-26 00:00:00,ISLAMIST,2015-06-28 16:40:02,photo,"b'Mahao\xe2\x80\x99s last moments\n\n\xe2\x80\x9cAccording to Maaparankoe\xe2\x80\x99s two nephews who were with him during the attack, three 4\xc3\x974 vehicles blocked the road and my brother had to immediately stop his truck. One vehicle blocked them in front, the other was on the driver\xe2\x80\x99s side and the other at the back.\n\n\xe2\x80\x9cSince he was the one driving at the time, Maaparankoe realised that the people who had blocked him were soldiers and he immediately raised his hands in surrender.\n\n - See more http://sundayexpress.co.ls/mahaos-last-moments/'",b'Timeline Photos',https://www.facebook.com/SundayExpres/photos/a.146136895579409.1073741828.143537355839363/373345706191859/?type=3,74.0,0.0,0.0,0.0,1.0,0.0,73.0,49.0,2.0,1.0,2015-06-28 16:40:02,1,0,0,0,0,0,1,0,0,2,201506,0,197.0
439,442,13179,Süddeutsche Zeitung,215982125159841.0,846447715446609,2015-06-26 00:00:00,ISLAMIST,2015-06-26 14:47:28,link,b'Es ist der erste derartige Terrorakt in Kuwait: Ein Selbstmordattent\xc3\xa4ter hat sich in einer schiitischen Moschee in die Luft gesprengt und etliche Menschen get\xc3\xb6tet. Der IS hat sich zu der Tat bekannt.',b'Kuwait: Dschihadist ver\xc3\xbcbt Anschlag auf Moschee - Dutzende Tote',http://www.sueddeutsche.de/politik/anschlag-des-islamischer-staat-dschihadist-veruebt-anschlag-auf-moschee-in-kuwait-dutzende-tote-1.2540123,36.0,0.0,0.0,0.0,0.0,0.0,22.0,18.0,2.0,1.0,2015-06-26 14:47:28,1,0,0,0,0,0,0,0,1,0,201506,1,76.0
440,443,13220,The Sunday People,633052486757819.0,901793983217000,2015-06-26 00:00:00,ISLAMIST,2015-06-26 11:41:44,link,b'Live updates on what is becoming an increasingly worrying day...',"b""Man decapitated in 'terror' attack in France""",http://www.mirror.co.uk/news/world-news/isis-grenoble-beheading-live-updates-5951603,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2015-06-26 11:41:44,1,0,0,0,0,0,0,0,1,0,201506,0,1.0
441,444,13259,Monitor,186702484702033.0,909583125747295,2015-06-26 00:00:00,ISLAMIST,2015-07-01 14:11:39,link,"b'Wirtschaftsnobelpreistr\xc3\xa4ger Joseph E. Stieglitz: Griechenlandkrise ist ""Europas Anschlag auf die griechische Demokratie"". \n\nMehr dazu morgen bei Monitor, 21.45 Uhr im Ersten!'",b'Europas Anschlag auf die griechische Demokratie',http://www.project-syndicate.org/commentary/greece-referendum-troika-eurozone-by-joseph-e--stiglitz-2015-06/german#as2RmEpMTfpVXEKD.01,676.0,0.0,0.0,0.0,0.0,0.0,70.0,305.0,2.0,1.0,2015-07-01 14:11:39,1,0,0,0,0,0,0,0,1,0,201507,0,1051.0
442,445,13369,DIE RHEINPFALZ,138065952884396.0,998153666875616,2015-06-26 00:00:00,ISLAMIST,2015-06-30 07:19:08,link,"b'Kopfbedeckungen aller Art sch\xc3\xbctzen bei den hitzigen Temperaturen bekanntlich vor der Sonne. Nun helfen Hut oder M\xc3\xbctze ebenfalls vor Bussard-Angriffen im Gimmeldinger Tal bei Neustadt. Zumindest r\xc3\xa4t das Forstamt w\xc3\xa4hrend der sogenannten \xc3\x84stlingsphase dazu. Andere M\xc3\xb6glichkeit: einen Stock in die H\xc3\xb6he heben. Bevor uns allerdings der Arm abf\xc3\xa4llt, greifen wir doch lieber zur M\xc3\xbctze.(sb)'",b'Neustadt: Bussardangriffe m\xc3\xb6glich',http://www.rheinpfalz.de/lokal/mittelhaardter-rundschau/artikel/stadt-magazin-bussardangriffe-moeglich/,17.0,0.0,0.0,0.0,0.0,0.0,1.0,7.0,2.0,1.0,2015-06-30 07:19:08,1,0,0,0,0,0,0,0,1,0,201506,0,25.0
443,446,13388,City AM,213682385348579.0,1004496889600454,2015-06-26 00:00:00,ISLAMIST,2015-06-29 08:09:00,link,"b'The threat level has increased since last year, meaning an attack is ""highly likely"".'",b'Police upgrade Wimbledon security following terrorist attacks',http://www.cityam.com/218933/wimbledon-police-upgrade-security-following-terrorist-attacks,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2015-06-29 08:09:00,1,0,0,0,0,0,0,0,1,0,201506,0,0.0
444,447,13393,City AM,213682385348579.0,1005231526193657,2015-06-26 00:00:00,ISLAMIST,2015-06-30 16:44:00,link,"b'Police warned passers-by not to be alarmed as ""bodies"" were hoisted out of the station.'",b'In pictures: Operation Strong Tower anti-terror training exercise',http://www.cityam.com/219121/pictures-police-offers-and-emergency-services-take-part-operation-strong-tower-anti-terror,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2015-06-30 16:44:00,1,0,0,0,0,0,0,0,1,0,201506,0,2.0
445,448,13441,Sky News,164665060214766.0,1122324987782097,2015-06-26 00:00:00,ISLAMIST,2015-06-26 09:18:57,video,"b""A man has been decapitated and an Islamist flag raised near a French factory in Grenoble. Here's what we know so far http://trib.al/BZ7LgOE""",missing_value,https://www.facebook.com/skynews/videos/1122324987782097/,630.0,0.0,0.0,0.0,0.0,0.0,301.0,971.0,2.0,1.0,2015-06-26 09:18:57,1,0,0,0,0,0,0,1,0,1,201506,0,1902.0
446,449,13443,Sky News,164665060214766.0,1122348377779758,2015-06-26 00:00:00,ISLAMIST,2015-06-26 10:07:01,video,b'Video: Everything we know about the France beheading attack so far. http://trib.al/12ItyC0',missing_value,https://www.facebook.com/skynews/videos/1122348377779758/,362.0,0.0,0.0,0.0,0.0,0.0,98.0,314.0,2.0,1.0,2015-06-26 10:07:01,1,0,0,0,0,0,0,1,0,1,201506,0,774.0
447,450,13547,BBC News,228735667216.0,10152907315692217,2015-06-26 00:00:00,ISLAMIST,2015-06-26 11:00:19,video,"b'""Attackers wanted to blow up factory"" in Saint-Quentin-Fallavier - French President Francois Hollande \nLatest updates: http://bbc.in/1GwvZKW'",b'French President Francois Hollande gives statement after attac...',https://www.facebook.com/bbcnews/videos/10152907315692217/,1241.0,0.0,0.0,0.0,0.0,0.0,197.0,327.0,2.0,1.0,2015-06-26 11:00:19,1,0,0,0,0,0,0,1,0,1,201506,0,1765.0
448,451,13601,Channel 4 News,6622931938.0,10153033749246939,2015-06-26 00:00:00,ISLAMIST,2015-06-26 12:49:43,video,"b'Islamic State claims Kuwait mosque suicide attack - in which at least four people have been killed, with more in a critical condition.\n \nRead more - http://bit.ly/1GBKPPr'",missing_value,https://www.facebook.com/Channel4News/videos/10153033749246939/,68.0,0.0,0.0,0.0,0.0,0.0,33.0,33.0,2.0,1.0,2015-06-26 12:49:43,1,0,0,0,0,0,0,1,0,1,201506,0,134.0
449,452,13612,Channel 4 News,6622931938.0,10153044080461939,2015-06-26 00:00:00,ISLAMIST,2015-06-30 20:31:00,video,"b'""We tried to make it as real as we possibly can.""\n\nPeople lay dying in the street as terrorists sprayed bullets outside a London tube station. After a furious gunfight with police the gunmen tried to escape on to the underground.\n\nThis was a training exercise - held in central London to test the capital\'s readiness to a terror attack.'",missing_value,https://www.facebook.com/Channel4News/videos/10153044080461939/,1980.0,0.0,0.0,0.0,0.0,0.0,392.0,3889.0,2.0,1.0,2015-06-30 20:31:00,1,0,0,0,0,0,0,1,0,1,201506,1,6261.0
450,453,13618,ITV News,148007467671.0,10153062823477672,2015-06-26 00:00:00,ISLAMIST,2015-06-26 20:34:18,video,"b""Obama leads singing of 'Amazing Grace' in a eulogy for the victims of the Charleston shooting""",missing_value,https://www.facebook.com/itvnews/videos/10153062823477672/,1488.0,0.0,0.0,0.0,0.0,0.0,97.0,252.0,2.0,1.0,2015-06-26 20:34:18,1,0,0,0,0,0,0,1,0,1,201506,0,1837.0
451,454,13728,JUNGE FREIHEIT,13479664941.0,10153972475884942,2015-06-26 00:00:00,ISLAMIST,2015-06-26 09:25:43,photo,b'+++ EILMELDUNG +++ Erneut Terror in Frankreich: Gek\xc3\xb6pfter Mann bei Grenoble entdeckt. Islamistische Flagge lag neben der Leiche +++ EILMELDUNG +++',b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10153972475884942/?type=3,305.0,0.0,0.0,0.0,0.0,0.0,37.0,148.0,2.0,1.0,2015-06-26 09:25:43,1,0,0,0,0,0,1,0,0,2,201506,1,490.0
452,455,13873,Metro,117118184990145.0,921143147920974,2015-09-17 00:00:00,ISLAMIST,2015-09-19 17:40:04,link,b'She is in critical condition.',b'Woman left with severe burns after acid attack',http://trib.al/lUmuSJ2,131.0,0.0,0.0,0.0,0.0,0.0,48.0,68.0,1.0,1.0,2015-09-19 17:40:04,1,0,0,0,0,0,0,0,1,0,201509,0,247.0
453,456,13955,NDR.de,182848831765655.0,1013029938747536,2015-09-17 00:00:00,ISLAMIST,2015-09-19 11:20:00,link,"b'Neun Fu\xc3\x9fball-Zweitligisten haben sich inzwischen dem FC St. Pauli angeschlossen und werden keine ""Wir helfen""-Aufn\xc3\xa4her mit dem ""Bild""-Logo tragen. Ausl\xc3\xb6ser sind Tweets des ""Bild""-Chefs Diekmann, der den Club wegen seiner Absage angriff und u.a. tweetete, ""Beim @fcstpauli sind #refugeesnotwelcome"".'","b'Keine ""Bild""-Aktion: Quartett folgt FC St. Pauli'","http://www.ndr.de/sport/fussball/kiezclub-hamburg-fluechtlinge,stpauli4948.html",79.0,0.0,0.0,0.0,0.0,0.0,8.0,8.0,1.0,1.0,2015-09-19 11:20:00,1,0,0,0,0,0,0,0,1,0,201509,0,95.0
454,457,13970,London Evening Standard,165348596842143.0,1016315168412144,2015-09-17 00:00:00,ISLAMIST,2015-09-20 15:12:27,link,b'Keep checking back for updates to this breaking story as we get them.',"b""Man fighting for his life after being 'attacked with scissors' in shop""",https://www.standard.co.uk/news/crime/camden-stabbing-high-street-shut-after-shoppers-attacked-with-scissors-in-off-licence-a2951601.html,261.0,0.0,0.0,0.0,0.0,0.0,38.0,379.0,1.0,1.0,2015-09-20 15:12:27,1,0,0,0,0,0,0,0,1,0,201509,0,678.0
455,458,13971,London Evening Standard,165348596842143.0,1017277128315948,2015-09-17 00:00:00,ISLAMIST,2015-09-22 11:25:26,video,b'Police hunt for youth who robbed Lewisham shop with a foot-long knife.',b'Police hunt for youth who robbed Lewisham shop with a foot-lon...',https://www.facebook.com/eveningstandard/videos/1017277128315948/,416.0,0.0,0.0,0.0,0.0,0.0,154.0,739.0,1.0,1.0,2015-09-22 11:25:26,1,0,0,0,0,0,0,1,0,1,201509,0,1309.0
456,459,14007,Daily Express,129617873765147.0,1021209591272633,2015-09-17 00:00:00,ISLAMIST,2015-09-22 18:10:31,link,b'The classic political tactic of the scoundrel - deflect attention from your catastrophic mishandling of the economy by invoking nationalism...',b'Vladimir Putin could LASH OUT and attack West as Russia runs out of cash warns top general',http://www.express.co.uk/news/world/607187/Russia-president-Vladimir-Putin-Syria-ISIS-General-Petraeus-sanctions-Ukraine,223.0,0.0,0.0,0.0,0.0,0.0,108.0,60.0,1.0,1.0,2015-09-22 18:10:31,1,0,0,0,0,0,0,0,1,0,201509,0,391.0
457,460,14091,RTL,179133132098813.0,1057634704248647,2015-09-17 00:00:00,ISLAMIST,2015-09-20 17:29:22,photo,"b'Gleich um 20.15 Uhr auf RTL: ""The Dark Knight Rises"" mit Christian Bale. Nur Batman kann den Terror stoppen!'",b'Timeline Photos',https://www.facebook.com/meinRTL/photos/a.317833411562117.86456.179133132098813/1057634704248647/?type=3,153.0,0.0,0.0,0.0,0.0,0.0,31.0,15.0,1.0,1.0,2015-09-20 17:29:22,1,0,0,0,0,0,1,0,0,2,201509,1,199.0
458,461,14106,The Times and The Sunday Times,147384458624178.0,1130637726965508,2015-09-17 00:00:00,ISLAMIST,2015-09-21 06:00:03,link,b'It is the first fatal attack on a staff member at the zoo but the third in New Zealand in six years',b'Female keeper dies after tiger mauls her at zoo',http://thetim.es/1V4Qsmt,36.0,0.0,0.0,0.0,0.0,0.0,9.0,4.0,1.0,1.0,2015-09-21 06:00:03,1,0,0,0,0,0,0,0,1,0,201509,0,49.0
459,462,14343,ProSieben,64694257920.0,10153204656292921,2015-09-17 00:00:00,ISLAMIST,2015-09-19 18:14:00,video,"b'""Star Wars II - Angriff der Klonkrieger"": Unruhige Zeiten in der Sternen-Republik k\xc3\xbcndigen sich an! Jetzt einschalten auf ProSieben!'","b""Gleich geht's los!""",https://www.facebook.com/ProSieben/videos/10153204656292921/,730.0,0.0,0.0,0.0,0.0,0.0,31.0,29.0,1.0,1.0,2015-09-19 18:14:00,1,0,0,0,0,0,0,1,0,1,201509,0,790.0
460,463,14386,ITV News,148007467671.0,10153256057092672,2015-09-17 00:00:00,ISLAMIST,2015-09-18 15:47:11,video,"b""'Super gonorrhoea' outbreak, militants attack Pakistan air force base and Rugby World Cup set to kick-off - here are some of the headlines making ITV News' Daily Dose.""","b""'Super gonorrhoea' outbreak, militants attack Pakistan air for...""",https://www.facebook.com/itvnews/videos/10153256057092672/,64.0,0.0,0.0,0.0,0.0,0.0,24.0,34.0,1.0,1.0,2015-09-18 15:47:11,1,0,0,0,0,0,0,1,0,1,201509,0,122.0
461,464,14426,SPIEGEL ONLINE,38246844868.0,10153623408634869,2015-09-17 00:00:00,ISLAMIST,2015-09-18 10:40:37,photo,"b'""Ich hei\xc3\x9fe Hala, und das ist mein Freund Mahmood. Wir haben uns auf der Flucht in der T\xc3\xbcrkei kennengelernt. Ich bin aus Aleppo in Syrien. Die Angriffe sind immer n\xc3\xa4her an das Haus meiner Familie gekommen. Wir sind dann erst mal bei Freunden in einem anderen Stadtteil untergekommen. Kurz darauf ist unser Haus zerst\xc3\xb6rt worden.""\n\nIn dieser Kooperation mit Timo Stammberger Photography berichten Menschen vom #LaGeSo bei SPIEGEL ONLINE \xc3\xbcber ihre Flucht, alle Teile findet Ihr hier: http://spon.de/aeAcg #refugeeswelcome'",b'Timeline Photos',https://www.facebook.com/spiegelonline/photos/a.420707594868.190602.38246844868/10153623408634869/?type=3,1030.0,0.0,0.0,0.0,0.0,0.0,169.0,62.0,1.0,1.0,2015-09-18 10:40:37,1,0,0,0,0,0,1,0,0,2,201509,0,1261.0
462,465,14440,The Guardian,10513336322.0,10153642356721323,2015-09-17 00:00:00,ISLAMIST,2015-09-18 18:30:01,video,b'Cassetteboy remixes the news: attack of the mega-Trump',missing_value,https://www.facebook.com/theguardian/videos/10153642356721323/,1706.0,0.0,0.0,0.0,0.0,0.0,108.0,833.0,1.0,1.0,2015-09-18 18:30:01,1,0,0,0,0,0,0,1,0,1,201509,0,2647.0
463,466,14486,The Telegraph,143666524748.0,10153669556799749,2015-09-17 00:00:00,ISLAMIST,2015-09-21 21:15:00,link,"b""Brazil's largest indigenous tribe faces being wiped out.""","b""Brazil's largest indigenous tribe under attack by ranchers in Amazon""",http://www.telegraph.co.uk/news/worldnews/southamerica/brazil/11881072/Brazil-tribe-under-attack-by-ranchers.html,338.0,0.0,0.0,0.0,0.0,0.0,19.0,147.0,1.0,1.0,2015-09-21 21:15:00,1,0,0,0,0,0,0,0,1,0,201509,0,504.0
464,467,14532,Daily Mirror,6149699161.0,10153697684189162,2015-09-17 00:00:00,ISLAMIST,2015-09-17 20:45:00,link,b'They were petrified.',"b""Passengers screaming as footage shows 'flames shooting from plane engine'""",http://www.mirror.co.uk/news/uk-news/terrifying-footage-jet2-flight-shows-6464605?ICID=FB_mirror_main,145.0,0.0,0.0,0.0,0.0,0.0,48.0,43.0,1.0,1.0,2015-09-17 20:45:00,1,0,0,0,0,0,0,0,1,0,201509,0,236.0
465,468,14555,Daily Mirror,6149699161.0,10153703393164162,2015-09-17 00:00:00,ISLAMIST,2015-09-20 10:30:00,link,"b""Hospital staff explained to his family WHY they tied him down, but understandably they're not happy.""","b""Holidaymaker's nightmare as he's 'strapped to Greek hospital bed while recovering from heart attack'""",http://www.mirror.co.uk/news/uk-news/holidaymakers-nightmare-hes-strapped-greek-6479523?ICID=FB_mirror_main,61.0,0.0,0.0,0.0,0.0,0.0,6.0,7.0,1.0,1.0,2015-09-20 10:30:00,1,0,0,0,0,0,0,0,1,0,201509,0,74.0
466,469,14588,Daily Mirror,6149699161.0,10153712115599162,2015-09-17 00:00:00,ISLAMIST,2015-09-23 21:45:01,photo,"b""Tomorrow's Mirror front page: Vicki Michelle: I could've been blinded by live TV glass attack.\n\nhttp://www.mirror.co.uk/tv/tv-news/vicki-michelle-could-been-blinded-6502906#ICID=FB_mirror_main""",b'Timeline Photos',https://www.facebook.com/dailymirror/photos/a.394365354161.172272.6149699161/10153712115599162/?type=3,105.0,0.0,0.0,0.0,0.0,0.0,63.0,27.0,1.0,1.0,2015-09-23 21:45:01,1,0,0,0,0,0,1,0,0,2,201509,0,195.0
467,470,14628,JUNGE FREIHEIT,13479664941.0,10154214998054942,2015-09-17 00:00:00,ISLAMIST,2015-09-19 14:53:15,link,"b'Am Marsch f\xc3\xbcr das Leben haben sich in Berlin am Sonnabend mehrere tausend Menschen beteiligt. Sei demonstrierten damit gegen Abtreibungen, Sterbehilfe und f\xc3\xbcr ein Recht auf Leben. Nach Polizeiangaben nahmen 5.000 Menschen teil. Die Veranstalter sprachen von 7.000 Teilnehmern. Zeitweise wurde der Schweigemarsch von Linksextremisten blockiert. >>'",b'Tausende beim Marsch f\xc3\xbcr das Leben',https://jungefreiheit.de/politik/deutschland/2015/tausende-beim-marsch-fuer-das-leben/,377.0,0.0,0.0,0.0,0.0,0.0,48.0,98.0,1.0,1.0,2015-09-19 14:53:15,1,0,0,0,0,0,0,0,1,0,201509,0,523.0
468,471,14725,SWR Aktuell,112906815414721.0,958585757513485,2015-10-22 00:00:00,RIGHT,2015-10-22 15:12:44,video,"b'In #Wittlich in der Eifel haben Unbekannte ein Hotel verw\xc3\xbcstet, das als Fl\xc3\xbcchtlingsunterkunft dienen sollte. In #Ludwigshafen wurde au\xc3\x9ferdem ein Brandanschlag auf ein geplantes Fl\xc3\xbcchtlingsheim ver\xc3\xbcbt.'",missing_value,https://www.facebook.com/SWRAktuell/videos/958585757513485/,22.0,0.0,0.0,0.0,0.0,0.0,19.0,8.0,1.0,4.0,2015-10-22 15:12:44,0,0,1,0,0,0,0,1,0,1,201510,0,49.0
469,472,14821,London Evening Standard,165348596842143.0,1031095883600739,2015-10-22 00:00:00,RIGHT,2015-10-22 20:56:29,link,b'The man allegedly pinned the 28-year-old woman down and took her clothes off during the horrifying ordeal in south London.',b'Woman fights off rape attempt by glassing her attacker in south London',https://www.standard.co.uk/news/crime/woman-fights-off-rape-attempt-by-glassing-her-attacker-in-south-london-a3096396.html,199.0,0.0,0.0,0.0,0.0,0.0,43.0,171.0,1.0,4.0,2015-10-22 20:56:29,0,0,1,0,0,0,0,0,1,0,201510,0,413.0
470,473,14822,London Evening Standard,165348596842143.0,1031106126933048,2015-10-22 00:00:00,RIGHT,2015-10-22 21:21:59,link,missing_value,"b'Man, 32, admits shooting four-year-old girl dead during road rage row'",https://www.standard.co.uk/news/world/man-32-admits-shooting-fouryearold-girl-dead-during-road-rage-row-a3097376.html,54.0,0.0,0.0,0.0,0.0,0.0,19.0,20.0,1.0,4.0,2015-10-22 21:21:59,0,0,1,0,0,0,0,0,1,0,201510,0,93.0
471,474,14829,London Evening Standard,165348596842143.0,1033093653400962,2015-10-22 00:00:00,RIGHT,2015-10-27 07:14:51,link,"b'The victim\'s eyebrow was ""split open"" in the attack'","b""Man left needing stitches after late-night noodle bar seating fracas in London's Soho""",https://www.standard.co.uk/news/crime/man-is-punched-in-the-face-seconds-after-noodles-are-poured-over-his-head-during-assault-in-soho-a3099706.html,30.0,1.0,0.0,0.0,0.0,0.0,16.0,9.0,1.0,4.0,2015-10-27 07:14:51,0,0,1,0,0,0,0,0,1,0,201510,0,56.0
472,475,14891,The Times and The Sunday Times,147384458624178.0,1146057998756814,2015-10-22 00:00:00,RIGHT,2015-10-23 19:15:03,link,"b""A government minister was accused of fueling tensions when he compared the dead children to 'dogs'""",b'Infants burnt to death in attack by higher caste',http://thetim.es/1OMEfPy,43.0,0.0,0.0,0.0,0.0,0.0,19.0,20.0,1.0,4.0,2015-10-23 19:15:03,0,0,1,0,0,0,0,0,1,0,201510,0,82.0
473,476,14991,Channel 4,273250047329.0,10153032951472330,2015-10-22 00:00:00,RIGHT,2015-10-22 09:59:42,video,"b'\xe2\x80\x98D\xe2\x80\x99you want to pop out for a coffee?\xe2\x80\x99 A huge step for an 18-year-old whose face is disfigured from a brutal acid attack. Meet Shumi in this moving clip, as triple-amputee Giles Duley tries to persuade her to leave the clinic for the first time. The Girl Who Lost Her Face, Friday, 7.30pm. #UnreportedWorld'",b'The Girl Who Lost Her Face',https://www.facebook.com/Channel4/videos/10153032951472330/,1077.0,25.0,2.0,0.0,51.0,9.0,122.0,720.0,1.0,4.0,2015-10-22 09:59:42,0,0,1,0,0,0,0,1,0,1,201510,0,2006.0
474,477,15067,Channel 4 News,6622931938.0,10153294131211939,2015-10-22 00:00:00,RIGHT,2015-10-22 20:45:20,video,"b'Has a reduction in stop and search led to an increase in knife crime?\n\nSir Bernard Hogan-Howe, the Met Police Commissioner, thinks so. But Home Secretary Theresa May says those claims are ""simply not true"".'",b'Does stop and search reduce knife crime?',https://www.facebook.com/Channel4News/videos/10153294131211939/,58.0,0.0,0.0,0.0,0.0,0.0,12.0,14.0,1.0,4.0,2015-10-22 20:45:20,0,0,1,0,0,0,0,1,0,1,201510,0,84.0
475,478,15183,Hamburger Abendblatt,121580125458.0,10156105485990459,2015-10-22 00:00:00,RIGHT,2015-10-28 13:43:09,link,b'Tatort Hoheluftchaussee:',b'Lamborghini gesprengt: Rocker-Boss entgeht Anschlag knapp',http://www.abendblatt.de/hamburg/hamburg-nord/hoheluft-ost/article206340029,86.0,0.0,0.0,0.0,0.0,0.0,28.0,48.0,1.0,4.0,2015-10-28 13:43:09,0,0,1,0,0,0,0,0,1,0,201510,0,162.0
476,479,15204,Sunday Express,143537355839363.0,408283322698097,2015-11-13 00:00:00,ISLAMIST,2015-11-15 17:38:24,link,b'A 47-year-old Mazenod woman was repeatedly stabbed by a vicious thug as she refused to let go of her shoulder-bag in Maseru city at about midday yesterday. #sundayxpress',b'Thug brutally attacks woman in city centre | Sunday Express',http://sundayexpress.co.ls/thug-brutally-attacks-woman-in-city-centre/,4.0,0.0,0.0,0.0,0.0,0.0,9.0,20.0,34.0,2.0,2015-11-15 17:38:24,1,0,0,0,0,0,0,0,1,0,201511,0,33.0
477,480,15215,junge Welt,123292927706635.0,900574993311754,2015-11-13 00:00:00,ISLAMIST,2015-11-15 11:20:00,link,b'Nur ein Tag vor den #ParisAttacks wurden 40 Menschen in Beirut Opfer des #IS-Terrors.\n\nBild: Hasan Shaaban / Reuters',b'Mindestens 40 Tote bei Doppelanschlag in Beirut - junge Welt -',https://www.jungewelt.de/2015/11-14/116.php,151.0,0.0,0.0,0.0,0.0,0.0,16.0,155.0,34.0,2.0,2015-11-15 11:20:00,1,0,0,0,0,0,0,0,1,0,201511,1,322.0
478,481,15220,junge Welt,123292927706635.0,902026639833256,2015-11-13 00:00:00,ISLAMIST,2015-11-19 06:44:11,link,"b'#GERNED Aus dem gewollten \xc2\xbbZeichen gegen den Terror\xc2\xab wurde nach der Absage und der nichtssagenden Pressekonferenz des Herrn Bundesinnenminister #DeMaiziere eine gro\xc3\x9fe Verunsicherung. Es darf vermutet werden, dass dies politisch gewollt war. #doitlikedemaiziere\n\nFoto: Julian Stratenschulte/dpa'",b'Vertrauensvorschuss - junge Welt -',https://www.jungewelt.de/2015/11-19/035.php,18.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,34.0,2.0,2015-11-19 06:44:11,1,0,0,0,0,0,0,0,1,0,201511,1,25.0
479,482,15233,Neue Westfälische,215604728519502.0,928675360545765,2015-11-13 00:00:00,ISLAMIST,2015-11-17 18:31:10,photo,b'Das L\xc3\xa4nderspiel zwischen Deutschland und Holland ist gerade abgesagt worden. Mehr lesen Sie online:\nhttp://www.nw.de/nachrichten/thema/terror_in_paris/20628651_Liveticker-zur-Absage-des-Fussballlaenderspiels-Deutschland-gegen-Holland.html',b'Timeline Photos',https://www.facebook.com/NeueWestfaelische/photos/a.243688142377827.59494.215604728519502/928675360545765/?type=3,23.0,0.0,0.0,0.0,0.0,0.0,20.0,36.0,34.0,2.0,2015-11-17 18:31:10,1,0,0,0,0,0,1,0,0,2,201511,1,79.0
480,483,15246,The Morning Star,351763554897760.0,935308166543293,2015-11-13 00:00:00,ISLAMIST,2015-11-16 19:30:08,link,b'Tackling terror at its source | https://t.co/97yCP95svx #Isis',b'Tackling terror at its source',https://t.co/97yCP95svx,3.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,34.0,2.0,2015-11-16 19:30:08,1,0,0,0,0,0,0,0,1,0,201511,1,5.0
481,484,15263,SWR Aktuell,112906815414721.0,969229606449100,2015-11-13 00:00:00,ISLAMIST,2015-11-17 08:34:46,video,"b'Sp\xc3\xa4testens zum ersten Adventswochenende (28.-29. November) starten viele Weihnachtsm\xc3\xa4rkte im Land. Manche sind schon sogar schon eine Woche fr\xc3\xbcher dran, so der Markt in Koblenz. Nach den Terror-Anschl\xc3\xa4gen von Paris haben viele Menschen ein mulmiges Gef\xc3\xbchl. Doch wie ist die Sicherheitslage in Rheinland-Pfalz? SWR-Terrorismusexperte Holger Schmidt warnt vor falschen \xc3\x84ngsten. Es sei \xc3\xbcberhaupt kein Problem, auf einen Weihnachtsmarkt in Rheinland-Pfalz zu gehen.'",missing_value,https://www.facebook.com/SWRAktuell/videos/969229606449100/,10.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,34.0,2.0,2015-11-17 08:34:46,1,0,0,0,0,0,0,1,0,1,201511,1,19.0
482,485,15264,The Sunday People,633052486757819.0,969336653129399,2015-11-13 00:00:00,ISLAMIST,2015-11-14 13:17:11,link,"b""All the latest info on last night's horrific attacks""",b'What we know on Saturday lunchtime about Paris attacks',http://www.mirror.co.uk/news/world-news/paris-attacks-what-know-saturday-6831295?ICID=FB_mirror_main,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,2.0,2015-11-14 13:17:11,1,0,0,0,0,0,0,0,1,0,201511,0,4.0
483,486,15267,The Sunday People,633052486757819.0,969596313103433,2015-11-13 00:00:00,ISLAMIST,2015-11-15 09:11:01,link,b'Absolutely petrifying',b'Paris attack witness says black Mercedes pulled up and shooters fired rifles',http://sundaypeo.pl/1SQw9Em,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,34.0,2.0,2015-11-15 09:11:01,1,0,0,0,0,0,0,0,1,0,201511,0,2.0
484,487,15272,SWR Aktuell,112906815414721.0,969788893059838,2015-11-13 00:00:00,ISLAMIST,2015-11-18 14:47:33,link,"b'BKA -Chef M\xc3\xbcnch bei Tagung in Mainz: ""Deutschland ist erkl\xc3\xa4rtes Angriffsziel (der Terroristen)"". Integration ist wichtiges Instrument im Anti-Terror-Kampf.'","b'BKA-Chef M\xc3\xbcnch fordert in Mainz Integrationsma\xc3\x9fnahmen: ""Deutschland ist erkl\xc3\xa4rtes Angriffsziel""'",http://x.swr.de/s/d2z,6.0,0.0,0.0,0.0,0.0,0.0,4.0,4.0,34.0,2.0,2015-11-18 14:47:33,1,0,0,0,0,0,0,0,1,0,201511,1,14.0
485,488,15282,Monitor,186702484702033.0,971589022880038,2015-11-13 00:00:00,ISLAMIST,2015-11-15 17:06:30,status,"b'Abr\xc3\xbcsten!\n\nTag zwei nach den Anschl\xc3\xa4gen von Paris. Und schon \xc3\xbcbernehmen in Deutschland die Scharfmacher. Herr S\xc3\xb6der aus Bayern brauchte nur ein paar Stunden, um klar zu machen, wie die CSU aus den Anschl\xc3\xa4gen politisch Kapital schlagen will. Schamfrist? Keine! Der Krieg gegen den Terror ist ausgerufen, nach innen wie nach au\xc3\x9fen. Als w\xc3\xbcrde sich das Sicherheitsrisiko dadurch minimieren lassen, dass Fl\xc3\xbcchtlinge jetzt unter Generalverdacht gestellt werden. Als w\xc3\xbcrden wir nicht gerade die Fr\xc3\xbcchte eines Antiterrorkriegs ernten, der jetzt erneut losgetreten werden soll. \n\nWenn die Attent\xc3\xa4ter von Paris nicht Recht bekommen sollen, dann darf sich diese Gesellschaft nicht weiter spalten lassen. Dann m\xc3\xbcssen wir auch diejenigen weiter ins Land lassen, die der IS an einer Flucht hindern will. Und wir d\xc3\xbcrfen die Fehler nicht wiederholen, die ein US-amerikanischer Pr\xc3\xa4sident nach 9/11 der westlichen Welt verordnet hat. Deshalb: Abr\xc3\xbcsten! Sonst h\xc3\xa4tten die Terroristen von Paris am Ende doch noch gesiegt.\n\nGeorg Restle'",missing_value,missing_value,3389.0,0.0,0.0,0.0,0.0,0.0,225.0,873.0,34.0,2.0,2015-11-15 17:06:30,1,0,0,0,0,0,0,0,0,0,201511,1,4487.0
486,489,15300,taz,171844246207985.0,981338391925229,2015-11-13 00:00:00,ISLAMIST,2015-11-16 07:04:00,photo,b'Die taz von heute: Sonderausgabe zum Terror in Paris.',b'Timeline Photos',https://www.facebook.com/taz.kommune/photos/a.207013419357734.51100.171844246207985/981338391925229/?type=3,63.0,0.0,0.0,0.0,0.0,0.0,10.0,13.0,34.0,2.0,2015-11-16 07:04:00,1,0,0,0,0,0,1,0,0,2,201511,1,86.0
487,490,15302,taz,171844246207985.0,981586698567065,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:41:36,photo,b'Nach den #ParisAttacks:',b'Timeline Photos',https://www.facebook.com/taz.kommune/photos/a.207013419357734.51100.171844246207985/981586698567065/?type=3,1335.0,0.0,0.0,0.0,0.0,0.0,40.0,268.0,34.0,2.0,2015-11-16 11:41:36,1,0,0,0,0,0,1,0,0,2,201511,0,1643.0
488,491,15326,NDR.de,182848831765655.0,1037640806286449,2015-11-13 00:00:00,ISLAMIST,2015-11-14 15:39:54,link,"b'Der Auftritt der Eagles Of Death Metal ist eines der Anschlagsziele in #Paris gewesen. Marek Lieberberg, der die Deutschland-Tour der Band organisiert, spricht \xc3\xbcber Sicherheit bei Konzerten.'","b'""Wir k\xc3\xb6nnen Konzerte nicht gegen Terror sch\xc3\xbctzen""'","http://www.ndr.de/nachrichten/Wir-koennen-Konzerte-nicht-gegen-Terror-schuetzen,interview2912.html",86.0,0.0,0.0,0.0,0.0,0.0,9.0,7.0,34.0,2.0,2015-11-14 15:39:54,1,0,0,0,0,0,0,0,1,0,201511,0,102.0
489,492,15333,NDR.de,182848831765655.0,1039178226132707,2015-11-13 00:00:00,ISLAMIST,2015-11-18 06:19:19,link,"b'Im Pariser Vorort Saint-Denis l\xc3\xa4uft zur Stunde eine Anti-Terror-Razzia. Sch\xc3\xbcsse fielen, Verd\xc3\xa4chtige sollen sich in einem Haus verschanzt haben - zum Liveblog bei tagesschau.de.'",b'Anti-Terror-Einsatz in Paris - Ermittlungen in Hannover',https://www.tagesschau.de/paris-379.html,33.0,0.0,0.0,0.0,0.0,0.0,5.0,13.0,34.0,2.0,2015-11-18 06:19:19,1,0,0,0,0,0,0,0,1,0,201511,1,51.0
490,493,15334,NDR.de,182848831765655.0,1039179772799219,2015-11-13 00:00:00,ISLAMIST,2015-11-18 06:28:20,link,b'Welche Drohungen hat es vor dem L\xc3\xa4nderspiel in Hannover konkret gegeben? Wie gro\xc3\x9f war und ist die Terrorgefahr in Niedersachsens Hauptstadt wirklich? Wir haben einen \xc3\x9cberblick zusammengestellt.',b'Terror-Alarm: Was wir wissen - und was nicht',"http://www.ndr.de/nachrichten/niedersachsen/hannover_weser-leinegebiet/Viele-Fragen-nach-Terror-Alarm-in-Hannover,hannover9996.html",42.0,0.0,0.0,0.0,0.0,0.0,15.0,12.0,34.0,2.0,2015-11-18 06:28:20,1,0,0,0,0,0,0,0,1,0,201511,1,69.0
491,494,15336,NDR.de,182848831765655.0,1039360656114464,2015-11-13 00:00:00,ISLAMIST,2015-11-18 17:29:00,link,b'Hunderte Hamburger setzen am Mittwoch in Hamburg ein Zeichen gegen den Terror. Auch in Mecklenburg-Vorpommern und in Schleswig-Holstein gab es Gedenkveranstaltungen.',"b'Bisch\xc3\xb6fin Fehrs: ""Zeichen gegen den Schrecken""'","http://www.ndr.de/nachrichten/hamburg/Nous-sommes-Paris-Kundgebung-in-Hamburg,paris422.html",78.0,0.0,0.0,0.0,0.0,0.0,3.0,4.0,34.0,2.0,2015-11-18 17:29:00,1,0,0,0,0,0,0,0,1,0,201511,1,85.0
492,495,15338,NDR.de,182848831765655.0,1039643799419483,2015-11-13 00:00:00,ISLAMIST,2015-11-19 08:54:53,link,b'Nach NDR Informationen gab es einen detaillierten Anschlagsplan f\xc3\xbcr das L\xc3\xa4nderspiel in Hannover: F\xc3\xbcnf Attent\xc3\xa4ter sollten Sprengs\xc3\xa4tze im Stadion platzieren - auch ein Bahnhof war Anschlagsziel.',b'Anschlagsplan: F\xc3\xbcnf Attent\xc3\xa4ter - vier Sprengs\xc3\xa4tze',"http://www.ndr.de/nachrichten/niedersachsen/hannover_weser-leinegebiet/Anschlagsplan-Fuenf-Attentaeter-vier-Sprengsaetze,hannover9996.html",58.0,0.0,0.0,0.0,0.0,0.0,30.0,43.0,34.0,2.0,2015-11-19 08:54:53,1,0,0,0,0,0,0,0,1,0,201511,0,131.0
493,496,15342,London Evening Standard,165348596842143.0,1041198742590453,2015-11-13 00:00:00,ISLAMIST,2015-11-14 08:12:21,link,"b'Eight terrorists have been killed, seven in suicide attacks, and French authorities have said it is possible there are still others on the run.'","b'Paris attacks: Death toll stands at 120, with 200 more injured'",https://www.standard.co.uk/news/world/paris-attacks-death-toll-stands-at-120-with-200-more-injured-7am-update-a3114446.html,497.0,0.0,0.0,0.0,4.0,2.0,42.0,135.0,34.0,2.0,2015-11-14 08:12:21,1,0,0,0,0,0,0,0,1,0,201511,1,680.0
494,497,15343,London Evening Standard,165348596842143.0,1041220372588290,2015-11-13 00:00:00,ISLAMIST,2015-11-14 09:29:17,link,"b'In a heartwarming show of unity, French football fans were filmed singing the national anthem as they were evacuated from the Stade de France'",b'Parisians rally to support each other after night of terror in France',https://www.standard.co.uk/news/world/a3114461.html,1208.0,0.0,0.0,0.0,0.0,0.0,11.0,107.0,34.0,2.0,2015-11-14 09:29:17,1,0,0,0,0,0,0,0,1,0,201511,0,1326.0
495,498,15344,London Evening Standard,165348596842143.0,1041450645898596,2015-11-13 00:00:00,ISLAMIST,2015-11-14 19:06:13,link,b'Update: The first British casualty has been confirmed as the number of people dead rises to 129',"b'Paris attacks: Death toll stands at 120, with 200 more injured'",https://www.standard.co.uk/news/world/paris-attacks-death-toll-stands-at-120-with-200-more-injured-7am-update-a3114446.html,76.0,0.0,0.0,0.0,0.0,0.0,4.0,9.0,34.0,2.0,2015-11-14 19:06:13,1,0,0,0,0,0,0,0,1,0,201511,0,89.0
496,499,15345,London Evening Standard,165348596842143.0,1041771235866537,2015-11-13 00:00:00,ISLAMIST,2015-11-15 12:55:13,link,missing_value,"b""'You're stealing my customers': Beggar attacks poppy seller""",https://www.standard.co.uk/news/crime/poppy-seller-reveals-how-he-was-attacked-by-beggar-in-seven-kings-east-london-train-station-a3111986.html,160.0,0.0,0.0,0.0,1.0,0.0,26.0,28.0,34.0,2.0,2015-11-15 12:55:13,1,0,0,0,0,0,0,0,1,0,201511,0,215.0
497,500,15348,London Evening Standard,165348596842143.0,1042248515818809,2015-11-13 00:00:00,ISLAMIST,2015-11-16 14:37:24,link,missing_value,b'Armed police brought in to protect London from Paris-style attack',https://www.standard.co.uk/news/crime/paris-terror-attacks-more-armed-police-brought-in-to-protect-london-from-terror-threat-a3115511.html,1713.0,0.0,2.0,0.0,0.0,1.0,110.0,424.0,34.0,2.0,2015-11-16 14:37:24,1,0,0,0,0,0,0,0,1,0,201511,0,2250.0
498,501,15352,London Evening Standard,165348596842143.0,1043052212405106,2015-11-13 00:00:00,ISLAMIST,2015-11-18 08:34:53,link,"b""Turkish fans booed during a minute's silence for the victims of the Paris attacks last night.\n\nWatch video here:""","b""Turkish fans boo minute's silence for Paris attack victims""",https://www.standard.co.uk/sport/football/watch-turkey-fans-boo-minutes-silence-for-paris-attack-victims-a3117036.html,275.0,0.0,0.0,0.0,0.0,1.0,146.0,148.0,34.0,2.0,2015-11-18 08:34:53,1,0,0,0,0,0,0,0,1,0,201511,0,570.0
499,502,15364,Daily Express,129617873765147.0,1045394128854179,2015-11-13 00:00:00,ISLAMIST,2015-11-13 13:17:51,photo,"b""'To HELL with Jeremy Corbyn and his leftist bleeding heart brigade. Jihadi John is dead and we should ALL be celebrating' \n\nRead Douglas Murray's DEVASTATING verdict: \nhttp://bit.ly/1WWinR8""",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/1045394128854179/?type=3,1241.0,0.0,0.0,0.0,0.0,0.0,201.0,182.0,34.0,2.0,2015-11-13 13:17:51,1,0,0,0,0,0,1,0,0,2,201511,0,1624.0
500,503,15367,Daily Express,129617873765147.0,1045720212154904,2015-11-13 00:00:00,ISLAMIST,2015-11-14 01:15:00,link,b'BREAKING: Britons warned to EXERCISE CAUTION after Paris attacks',"b""BREAKING: Foreign Office warns Britons to 'EXERCISE CAUTION' after Paris attacks""",http://www.express.co.uk/news/world/619362/paris-attacks-british-foreign-office-terror,552.0,0.0,0.0,0.0,0.0,0.0,86.0,456.0,34.0,2.0,2015-11-14 01:15:00,1,0,0,0,0,0,0,0,1,0,201511,0,1094.0
501,504,15368,Daily Express,129617873765147.0,1045742768819315,2015-11-13 00:00:00,ISLAMIST,2015-11-14 03:15:01,link,b'Eagles Of Death Metal still searching for crew members...',"b""Rock band Eagles of Death Metal SAFE after 'hundreds of fans killed' in Paris gig attack""",http://www.express.co.uk/news/world/619365/Paris-attack-Eagles-Death-Metal-Bataclan-Julian-Dorio-Josh-Homme-Jesse-Hughes,283.0,0.0,0.0,0.0,0.0,0.0,21.0,76.0,34.0,2.0,2015-11-14 03:15:01,1,0,0,0,0,0,0,0,1,0,201511,0,380.0
502,505,15373,Daily Express,129617873765147.0,1046432488750343,2015-11-13 00:00:00,ISLAMIST,2015-11-15 13:41:26,link,b'Heartbreaking pictures...',b'Girlfriend of British victim Nick Alexander overwhelmed at Paris terror attacks vigil',http://www.express.co.uk/news/world/619541/Paris-terror-attacks-British-victim-Nick-Alexander-girlfriend-Polina-Buckley,655.0,0.0,0.0,0.0,1.0,0.0,79.0,128.0,34.0,2.0,2015-11-15 13:41:26,1,0,0,0,0,0,0,0,1,0,201511,0,863.0
503,506,15378,Daily Express,129617873765147.0,1047185848675007,2015-11-13 00:00:00,ISLAMIST,2015-11-17 01:42:14,link,"b'He said the Paris terror attacks were NOT a ""one-off event""...'","b'Islamic terrorists READY to launch ANOTHER horror attack after Paris, CIA boss warns'",http://www.express.co.uk/news/world/619933/isis-paris-terror-attack-islamic-state-isil-cia-john-brennan-Abdelhamid-Abaaoud,182.0,0.0,0.0,0.0,0.0,0.0,36.0,65.0,34.0,2.0,2015-11-17 01:42:14,1,0,0,0,0,0,0,0,1,0,201511,1,283.0
504,507,15382,Daily Express,129617873765147.0,1048242535236005,2015-11-13 00:00:00,ISLAMIST,2015-11-19 03:00:03,link,"b'""On your knees! Show me your back!""'",b'WATCH: The shocking moment anti-terror police ARREST two Paris suspects',http://www.express.co.uk/news/world/620477/isis-paris-attacks-terror-suspects-raid-police-armed-isil-is-islamic-state,206.0,0.0,0.0,0.0,0.0,0.0,16.0,22.0,34.0,2.0,2015-11-19 03:00:03,1,0,0,0,0,0,0,0,1,0,201511,0,244.0
505,508,15388,DIE RHEINPFALZ,138065952884396.0,1067218226635826,2015-11-13 00:00:00,ISLAMIST,2015-11-14 11:13:00,link,b'Ein 21-J\xc3\xa4hriger und ein 24-J\xc3\xa4hriger hatten auf der Plattform beim Schwanenweiher in #Landau vier Jugendliche mit einem Messer und einem Schlagring bedroht. Jetzt m\xc3\xbcssen die jungen M\xc3\xa4nner in Haft. (jsb)',b'\xc3\x9cberfall am Kiffertreff geahndet',http://www.rheinpfalz.de/nachrichten/titelseite/artikel/ueberfall-am-kiffertreff-geahndet/,30.0,0.0,0.0,0.0,0.0,0.0,4.0,13.0,34.0,2.0,2015-11-14 11:13:00,1,0,0,0,0,0,0,0,1,0,201511,0,47.0
506,509,15389,DIE RHEINPFALZ,138065952884396.0,1067711936586455,2015-11-13 00:00:00,ISLAMIST,2015-11-15 11:51:00,link,b'Die Terroranschl\xc3\xa4ge \xc3\xbcberschatteten gestern den SPD-Landesparteitag in #Ludwigshafen. Trotz allem drehte sich die Stimmung. (jsb)',b'Trauer und Taumel',https://www.rheinpfalz.de/index.php?id=211&no_cache=1&tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail&tx_news_pi1%5Bnews_preview%5D=463939,7.0,0.0,0.0,0.0,0.0,0.0,7.0,2.0,34.0,2.0,2015-11-15 11:51:00,1,0,0,0,0,0,0,0,1,0,201511,1,16.0
507,510,15394,DIE RHEINPFALZ,138065952884396.0,1069003936457255,2015-11-13 00:00:00,ISLAMIST,2015-11-18 09:32:00,link,"b'""Nicht \xc3\xbcberleben, sondern leben"" - so beschreibt Kerstin Witte-Petit, wie einige Jugendliche in Frankreich nach dem Anschlag am Freitag weitermachen. Geburtstag feiern, tanzen gehen. Der Angst zum Trotz. Ein Zeichen der Zivilcourage. (rxs)'",b'Generation Bataclan',http://www.rheinpfalz.de/nachrichten/kultur/artikel/generation-bataclan/,43.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,34.0,2.0,2015-11-18 09:32:00,1,0,0,0,0,0,0,0,1,0,201511,0,48.0
508,511,15401,City AM,213682385348579.0,1076029889113820,2015-11-13 00:00:00,ISLAMIST,2015-11-16 08:53:51,link,"b'Overnight, the death roll rose to 132.'","b""The UK to hold one minute's silence for Paris attacks victims""",http://www.cityam.com/228816/paris-attacks-minutes-silence-in-uk-to-mark-friday-nights-acts-of-terror,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,34.0,2.0,2015-11-16 08:53:51,1,0,0,0,0,0,0,0,1,0,201511,0,3.0
509,512,15402,City AM,213682385348579.0,1076061082444034,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:23:00,link,"b'In one raid, a rocket launcher was seized'",b'Paris attacks latest: More than 150 anti-terror raids in France',http://www.cityam.com/228820/paris-attacks-five-people-arrested-and-a-rocket-launcher-seized-in-lyon,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,34.0,2.0,2015-11-16 11:23:00,1,0,0,0,0,0,0,0,1,0,201511,0,2.0
510,513,15412,City AM,213682385348579.0,1077570262293116,2015-11-13 00:00:00,ISLAMIST,2015-11-19 20:08:00,link,b'The advice is at odds with how many in Paris reacted',"b""Run first, hide second: UK government's new terror advice""",http://www.cityam.com/229139/paris-attack-government-updates-guidance-for-responding-to-terrorist-attack-in-the-uk,2.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,34.0,2.0,2015-11-19 20:08:00,1,0,0,0,0,0,0,0,1,0,201511,0,6.0
511,514,15423,WDR,124207927630198.0,1112669112117403,2015-11-13 00:00:00,ISLAMIST,2015-11-17 18:24:10,link,"b'Das Fu\xc3\x9fball-L\xc3\xa4nderspiel Deutschland gegen Niederlande ist abgesagt. Laut Hannovers Polizeipr\xc3\xa4sident Kluwe gab es Hinweise, dass ein ""Sprengstoffanschlag im Stadion geplant"" war.\n\nDie Kollegen von der tagesschau halten euch auf dem Laufenden: http://www.tagesschau.de/newsticker/paris-371.html'",b'Fu\xc3\x9fball-L\xc3\xa4nderspiel Deutschland gegen Niederlande abgesagt',http://www.tagesschau.de/eilmeldung/eilmeldung-383.html,206.0,0.0,0.0,0.0,0.0,0.0,111.0,558.0,34.0,2.0,2015-11-17 18:24:10,1,0,0,0,0,0,0,0,1,0,201511,0,875.0
512,515,15435,SR.de,139381656076338.0,1174472332567260,2015-11-13 00:00:00,ISLAMIST,2015-11-16 10:15:01,link,b'In facebook-Gruppen und unter den Hashtags #NotInMyName und #MuslimsAreNoTerrorist distanzieren sich derzeit viele Muslime von den Terroristen des Islamischen Staates. Auch die islamischen Gemeinden im Saarland verurteilen die Anschl\xc3\xa4ge.',b'SR-online: Muslime im Saarland verurteilen Anschl\xc3\xa4ge',http://www.sr-online.de/sronline/nachrichten/politik_wirtschaft/muslime_gegen_terror102.html,20.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,34.0,2.0,2015-11-16 10:15:01,1,0,0,0,0,0,0,0,1,0,201511,1,23.0
513,516,15436,SR.de,139381656076338.0,1174489149232245,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:34:31,photo,"b""Mit einer Schweigeminute haben die Mitglieder des Saarl\xc3\xa4ndischen Landtags heute um 12.00 Uhr der Terroropfer von Paris gedacht. (Foto: Pasquale d'Angiolillo). Saarbahn und Busse, die sich um 12 Uhr an einer Haltestelle befanden, blieben f\xc3\xbcr eine Minute stehen. Auch der SR beteiligte sich: Die SR-Nachrichten um 12.00 Uhr begannen mit 20 Sekunden Stille.""",b'Timeline Photos',https://www.facebook.com/SRonline.de/photos/a.390138457667322.110254.139381656076338/1174489149232245/?type=3,48.0,0.0,0.0,0.0,0.0,0.0,6.0,6.0,34.0,2.0,2015-11-16 11:34:31,1,0,0,0,0,0,1,0,0,2,201511,1,60.0
514,517,15437,SR.de,139381656076338.0,1174512339229926,2015-11-13 00:00:00,ISLAMIST,2015-11-16 12:52:47,photo,"b""Auch in der Vorhalle des franz\xc3\xb6sischen Generalkonsulats am Saarbr\xc3\xbccker Ludwigsplatz liegt inzwischen ein Kondolenzbuch f\xc3\xbcr die Terroropfer von Paris aus. (Foto: Pasquale d'Angiolillo)""",b'Timeline Photos',https://www.facebook.com/SRonline.de/photos/a.390138457667322.110254.139381656076338/1174512339229926/?type=3,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,2.0,2015-11-16 12:52:47,1,0,0,0,0,0,1,0,0,2,201511,1,4.0
515,518,15438,SR.de,139381656076338.0,1174562129224947,2015-11-13 00:00:00,ISLAMIST,2015-11-16 15:27:56,link,"b'Rund 300 Polizeistellen will die Landesregierung bis 2020 streichen. Nach den Terroranschl\xc3\xa4gen von Paris fordern Linke, Gr\xc3\xbcne und Piraten wegen der versch\xc3\xa4rften Sicherheitslage nun eine Abkehr von diesen Pl\xc3\xa4nen.'",b'SR-online: Diskussion um Saar-Polizeireform nach Pariser Attentaten',http://www.sr-online.de/sronline/nachrichten/politik_wirtschaft/terror_paris_auswirkungen_polizeireform_saarland100.html,21.0,0.0,0.0,0.0,0.0,0.0,7.0,2.0,34.0,2.0,2015-11-16 15:27:56,1,0,0,0,0,0,0,0,1,0,201511,1,30.0
516,519,15441,SR.de,139381656076338.0,1175065042507989,2015-11-13 00:00:00,ISLAMIST,2015-11-17 17:20:27,photo,"b'Die Landeshauptstadt Saarbr\xc3\xbccken setzt ein Zeichen gegen Terror und f\xc3\xbcr Vielfalt sowie ein friedvolles Zusammenleben in der Welt. Am Turm des Rathauses St. Johann leuchtet seit Dienstagnachmittag, 17 Uhr, und fortan t\xc3\xa4glich ab Einbruch der Dunkelheit eine bunte Weltkugel. Sie setzt sich aus den Grundfarben der Flaggen aller Nationen dieser Erde zusammen.\n\nFoto: Marisa Winter'",b'Timeline Photos',https://www.facebook.com/SRonline.de/photos/a.390138457667322.110254.139381656076338/1175065042507989/?type=3,54.0,0.0,0.0,0.0,0.0,0.0,1.0,11.0,34.0,2.0,2015-11-17 17:20:27,1,0,0,0,0,0,1,0,0,2,201511,1,66.0
517,520,15443,SR.de,139381656076338.0,1175598965787930,2015-11-13 00:00:00,ISLAMIST,2015-11-18 21:43:55,link,"b'Die Frau, die sich heute bei dem Anti-Terroreinsatz in Saint-Denis selbst in die Luft gesprengt hat, soll Medienberichten zufolge noch bis vor zwei Jahren im lothringischen Creutzwald - direkt an der saarl\xc3\xa4ndischen Grenze - gelebt haben und die Cousine von Abdelhamid Abaaoud sein.'",b'SR-online: Selbstm\xc3\xb6rderin von Paris lebte angeblich in Creutzwald',http://www.sr-online.de/sronline/nachrichten/politik_wirtschaft/saint_denis_antiterror_einsatz_kreutzwald_grenze_frankreich100.html,7.0,0.0,0.0,0.0,0.0,0.0,3.0,53.0,34.0,2.0,2015-11-18 21:43:55,1,0,0,0,0,0,0,0,1,0,201511,1,63.0
518,521,15446,The Daily Star,161612017189003.0,1202879553062239,2015-11-13 00:00:00,ISLAMIST,2015-11-18 14:24:00,photo,b'First pic of Diesel the loyal police dog killed during Paris terror raids this morning.',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1202879553062239/?type=3,845.0,3.0,0.0,0.0,20.0,0.0,71.0,138.0,34.0,2.0,2015-11-18 14:24:00,1,0,0,0,0,0,1,0,0,2,201511,1,1077.0
519,522,15450,The Daily Star,161612017189003.0,1203498726333655,2015-11-13 00:00:00,ISLAMIST,2015-11-19 17:45:00,link,b'EXCLUSIVE: Premier League clubs will have armed forces at matches',b'How safe is your club? Armed cops drafted in as terror fears grip Premier League',http://www.dailystar.co.uk/news/latest-news/476540/Armed-police-terror-fears-ISIS-Premier-League-football-Paris-attacks,150.0,0.0,0.0,0.0,0.0,0.0,9.0,21.0,34.0,2.0,2015-11-19 17:45:00,1,0,0,0,0,0,0,0,1,0,201511,0,180.0
520,523,15454,Sky News,164665060214766.0,1207494019265193,2015-11-13 00:00:00,ISLAMIST,2015-11-13 22:20:15,video,"b'Within the Stade de France, worried fans flood the pitch as the news of the Paris attacks continues to pour in: reports say around 100 hostages have been taken at Bataclan concert hall and 158 people are dead'",missing_value,https://www.facebook.com/skynews/videos/1207494019265193/,13186.0,4.0,17.0,0.0,158.0,51.0,2080.0,19352.0,34.0,2.0,2015-11-13 22:20:15,1,0,0,0,0,0,0,1,0,1,201511,0,34848.0
521,524,15457,Sky News,164665060214766.0,1207672355914026,2015-11-13 00:00:00,ISLAMIST,2015-11-14 01:55:56,video,"b""Watch a subtitled version of Fran\xc3\xa7ois Hollande's speech this evening following the attacks in Paris. More information at http://trib.al/fe02fRY""",b'Fran\xc3\xa7ois Hollande on Paris Attacks',https://www.facebook.com/skynews/videos/1207672355914026/,3542.0,0.0,0.0,0.0,11.0,0.0,328.0,1202.0,34.0,2.0,2015-11-14 01:55:56,1,0,0,0,0,0,0,1,0,1,201511,0,5083.0
522,525,15458,Sky News,164665060214766.0,1207850849229510,2015-11-13 00:00:00,ISLAMIST,2015-11-14 10:02:12,video,"b'French President Hollande says #ParisAttacks are ""cowardly act of war"" committed by Islamic State http://trib.al/mR391QD'",missing_value,https://www.facebook.com/skynews/videos/1207850849229510/,3148.0,0.0,1.0,0.0,15.0,3.0,326.0,860.0,34.0,2.0,2015-11-14 10:02:12,1,0,0,0,0,0,0,1,0,1,201511,0,4353.0
523,526,15459,Sky News,164665060214766.0,1208104532537475,2015-11-13 00:00:00,ISLAMIST,2015-11-14 17:16:28,video,"b""Deadly attacks, helpful strangers, shows of solidarity and mourners' tributes. Here is the last 24 hours as told by a series of still images. http://trib.al/O166GrO""",b'Paris Attacks In Images',https://www.facebook.com/skynews/videos/1208104532537475/,1555.0,1.0,0.0,0.0,18.0,0.0,127.0,453.0,34.0,2.0,2015-11-14 17:16:28,1,0,0,0,0,0,0,1,0,1,201511,0,2154.0
524,527,15462,Sky News,164665060214766.0,1208245759190019,2015-11-13 00:00:00,ISLAMIST,2015-11-14 22:50:00,video,b'Family and friends of missing people have taken to social media to try to track down their loved ones in the aftermath of the #ParisAttacks\nhttp://trib.al/73Ef9W4',"b""Social Media Aids Search for Paris' Missing""",https://www.facebook.com/skynews/videos/1208245759190019/,1749.0,4.0,0.0,0.0,18.0,0.0,101.0,434.0,34.0,2.0,2015-11-14 22:50:00,1,0,0,0,0,0,0,1,0,1,201511,0,2306.0
525,528,15463,Sky News,164665060214766.0,1208598899154705,2015-11-13 00:00:00,ISLAMIST,2015-11-15 23:55:01,video,b'Vigils held around the world to pay tribute to the victims of the #ParisAttacks. Latest updates: http://trib.al/Vx4MyO4',b'World Shows Unity After #ParisAttacks',https://www.facebook.com/skynews/videos/1208598899154705/,2590.0,4.0,1.0,0.0,4.0,0.0,97.0,482.0,34.0,2.0,2015-11-15 23:55:01,1,0,0,0,0,0,0,1,0,1,201511,0,3178.0
526,529,15464,Sky News,164665060214766.0,1208709669143628,2015-11-13 00:00:00,ISLAMIST,2015-11-15 17:03:00,video,"b""Here's what we know so far about the eight #ParisAttacks suspects - latest updates here: http://trib.al/nYElMz1""",missing_value,https://www.facebook.com/skynews/videos/1208709669143628/,920.0,0.0,0.0,0.0,0.0,0.0,173.0,661.0,34.0,2.0,2015-11-15 17:03:00,1,0,0,0,0,0,0,1,0,1,201511,0,1754.0
527,530,15466,Sky News,164665060214766.0,1208942889120306,2015-11-13 00:00:00,ISLAMIST,2015-11-15 22:57:09,video,b'Video: French jets carry out their biggest ever bombing raid in Syria after #ParisAttacks. Latest updates: http://trib.al/jukOcdj',b'France Drops Bombs On IS-Held Raqqa',https://www.facebook.com/skynews/videos/1208942889120306/,16276.0,21.0,3.0,4.0,11.0,2.0,1802.0,7437.0,34.0,2.0,2015-11-15 22:57:09,1,0,0,0,0,0,0,1,0,1,201511,0,25556.0
528,531,15467,Sky News,164665060214766.0,1209227569091838,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:03:33,video,"b'A minute of silence is observed in Paris, and abroad, to commemorate the #ParisAttacks'",missing_value,https://www.facebook.com/skynews/videos/1209227569091838/,1852.0,1.0,0.0,0.0,3.0,0.0,72.0,346.0,34.0,2.0,2015-11-16 11:03:33,1,0,0,0,0,0,0,1,0,1,201511,0,2274.0
529,532,15469,Sky News,164665060214766.0,1209585912389337,2015-11-13 00:00:00,ISLAMIST,2015-11-17 09:00:00,video,"b""The French National Anthem will be played during tonight's England vs France match. \n\nHere are the lyrics if you would like to join in and show your support after #ParisAttack: trib.al/xwBKQjQ""",b'France National Anthem',https://www.facebook.com/skynews/videos/1209585912389337/,2328.0,3.0,0.0,0.0,0.0,0.0,120.0,436.0,34.0,2.0,2015-11-17 09:00:00,1,0,0,0,0,0,0,1,0,1,201511,0,2887.0
530,533,15471,Sky News,164665060214766.0,1209933282354600,2015-11-13 00:00:00,ISLAMIST,2015-11-16 22:24:40,video,"b'Mohammed Abdeslam, brother of #ParisAttacks terrorists Ibrahim & Salah, tells reporters he is innocent after his release from police custody.\n\nLatest updates from France: http://trib.al/t9FfnRB'","b""Suicide Bomber's Brother Speaks Out""",https://www.facebook.com/skynews/videos/1209933282354600/,3285.0,1.0,0.0,1.0,6.0,20.0,828.0,1170.0,34.0,2.0,2015-11-16 22:24:40,1,0,0,0,0,0,0,1,0,1,201511,1,5311.0
531,534,15475,Sky News,164665060214766.0,1210745135606748,2015-11-13 00:00:00,ISLAMIST,2015-11-17 22:33:20,video,"b'What we know about Abdelhamid Abaaoud, the Islamic State militant who is thought to have been the mastermind of the Paris attacks: http://trib.al/mo5kafr'",missing_value,https://www.facebook.com/skynews/videos/1210745135606748/,1543.0,0.0,0.0,0.0,0.0,25.0,446.0,685.0,34.0,2.0,2015-11-17 22:33:20,1,0,0,0,0,0,0,1,0,1,201511,0,2699.0
532,535,15476,Sky News,164665060214766.0,1210974945583767,2015-11-13 00:00:00,ISLAMIST,2015-11-18 07:37:39,video,b'Heavy gunfire heard as French police perform large-scale anti-terror raid based around an apartment in the #SaintDenis suburb of Paris http://trib.al/zVPT4gb',b'Anti-Terror Operation During #ParisSiege',https://www.facebook.com/skynews/videos/1210974945583767/,1317.0,0.0,3.0,0.0,0.0,3.0,115.0,462.0,34.0,2.0,2015-11-18 07:37:39,1,0,0,0,0,0,0,1,0,1,201511,1,1900.0
533,536,15477,Sky News,164665060214766.0,1211019452245983,2015-11-13 00:00:00,ISLAMIST,2015-11-18 09:05:16,video,b'French military troops patrol the streets of #SaintDenis in Paris as police and special forces surround an apartment connected to people involved in the #ParisAttacks http://trib.al/SJzqOk0',b'Military Patrol #SaintDenis Streets',https://www.facebook.com/skynews/videos/1211019452245983/,1405.0,0.0,3.0,0.0,1.0,0.0,76.0,327.0,34.0,2.0,2015-11-18 09:05:16,1,0,0,0,0,0,0,1,0,1,201511,0,1812.0
534,537,15480,Sky News,164665060214766.0,1211171345564127,2015-11-13 00:00:00,ISLAMIST,2015-11-18 15:43:35,video,"b'Sabrine, who lives below the apartment where the #ParisSiege took place, describes how she hid during the police assault that killed two #ParisAttacks suspects. \n\nMore on the Saint Denis raid: http://trib.al/1iAIsOo'",missing_value,https://www.facebook.com/skynews/videos/1211171345564127/,1309.0,2.0,0.0,0.0,0.0,1.0,422.0,273.0,34.0,2.0,2015-11-18 15:43:35,1,0,0,0,0,0,0,1,0,1,201511,0,2007.0
535,538,15498,BR - Bayerischer Rundfunk,157820960901646.0,1240031142680617,2015-11-13 00:00:00,ISLAMIST,2015-11-19 14:45:00,video,"b'Fl\xc3\xbcchtlingskrise, die grauenvollen Terrorverbrechen in Paris: Sogenannte Hassb\xc3\xbcrger und Rechtsradikale nutzen das zynisch f\xc3\xbcr ihre Zwecke. Sie hetzen nicht nur gegen Fl\xc3\xbcchtlinge und Andersdenkende. Sie sind zunehmend gewaltt\xc3\xa4tig: ein Journalist wird zusammengeschlagen, eine Politikerin lebensbedrohlich verletzt. Gewalt statt Diskurs. Die politische Kultur im Land ist in Gefahr!\n\nDer ganze Beitrag, heute Abend um 22.00 Uhr in der Sendung ""Capriccio"" und morgen in unserer Mediathek.'",b'Die Verrohung der Republik',https://www.facebook.com/bayerischer.rundfunk/videos/1240031142680617/,37.0,0.0,0.0,0.0,0.0,0.0,16.0,14.0,34.0,2.0,2015-11-19 14:45:00,1,0,0,0,0,0,0,1,0,1,201511,1,67.0
536,539,15502,Frankfurter Rundschau,134100583282150.0,1246959088662955,2015-11-13 00:00:00,ISLAMIST,2015-11-17 08:39:57,link,"b'Molenbeek, die Heimat vieler Islamisten, ist im \xc3\xb6ffentlichen Fokus. Belgiens Innenminister gesteht, in dem Viertel \xe2\x80\x9edie Lage derzeit nicht unter Kontrolle\xe2\x80\x9c zu haben. Die Polizei hat den Ort teilweise abgeriegelt.'",b'IS-Terror: Im Problemkiez lange nur zugesehen',"http://www.fr-online.de/terror/is-terror-im-problemkiez-lange-nur-zugesehen,29500876,32432386.html",21.0,0.0,0.0,0.0,0.0,0.0,13.0,7.0,34.0,2.0,2015-11-17 08:39:57,1,0,0,0,0,0,0,0,1,0,201511,0,41.0
537,540,15504,Frankfurter Rundschau,134100583282150.0,1247503735275157,2015-11-13 00:00:00,ISLAMIST,2015-11-18 07:47:42,photo,"b'\xe2\x80\x9eVerlassen Sie umgehend den Stadionbereich\xe2\x80\x9c, h\xc3\xb6rt FR-Sportredakteur Jan Christian M\xc3\xbcller gestern um 19.19 Uhr in Hannover. Wie er die R\xc3\xa4umung erlebt, schildert er in seiner Reportage, die Ihr in unserer Multimedia-App findet. Zur Spielabsage lest Ihr auch einen Kommentar und weitere Hintergr\xc3\xbcnde.\n \nZum Terror in Frankreich der Leitartikel unseres Korrespondenten Axel Veiel. Der Anschlag von Paris, so seine These, l\xc3\xb6st einen gef\xc3\xa4hrlichen Impuls aus: Frankreich r\xc3\xbcttelt an den S\xc3\xa4ulen seiner Demokratie - und spielt so in die H\xc3\xa4nde der Terroristen.\n \nUnsere iPad-App enth\xc3\xa4lt einen vergr\xc3\xb6\xc3\x9ferbaren Regionalteil. Auf Wunsch k\xc3\xb6nnt Ihr zu den Berichten aus Frankfurt und der hessischen Landespolitik auch Informationen aus Offenbach, Main-Kinzig, Main-Taunus, Hochtaunus, Darmstadt und Wiesbaden zuschalten.\n \nAusprobieren k\xc3\xb6nnt Ihr die App mit dem Tagespass aus dem Store https://itunes.apple.com/de/app/fr-digital/id834911051, Dauerlesern empfehlen wir ein Verlagsabo: http://www.fr-digital.de/index.php?id=65'","b""Photos from Frankfurter Rundschau's post""",https://www.facebook.com/FrankfurterRundschau/photos/a.846026048756263.1073741830.134100583282150/1247503295275201/?type=3,6.0,0.0,0.0,0.0,0.0,0.0,3.0,3.0,34.0,2.0,2015-11-18 07:47:42,1,0,0,0,0,0,1,0,0,2,201511,1,12.0
538,541,15509,Mirror Politics,1542228052683519.0,1643497799223210,2015-11-13 00:00:00,ISLAMIST,2015-11-16 10:17:57,link,"b'British forces stopped an attack in the UK, according to the Prime Minister'","b'Terror attack on British soil foiled in the last month, says David Cameron'",http://www.mirror.co.uk/news/uk-news/terror-attack-british-soil-foiled-6839858,55.0,0.0,0.0,0.0,0.0,0.0,26.0,14.0,34.0,2.0,2015-11-16 10:17:57,1,0,0,0,0,0,0,0,1,0,201511,0,95.0
539,542,15514,Mirror Politics,1542228052683519.0,1643998985839758,2015-11-13 00:00:00,ISLAMIST,2015-11-18 10:58:59,link,"b""The remarks are 'offensive to the thousands who suffer mental illness'.""","b""Ken Livingstone says Labour MP with depression is 'disturbed' in shocking attack""",http://www.mirror.co.uk/news/uk-news/ken-livingstone-blasts-labour-rival-6853409,25.0,0.0,0.0,0.0,0.0,0.0,14.0,11.0,34.0,2.0,2015-11-18 10:58:59,1,0,0,0,0,0,0,0,1,0,201511,0,50.0
540,543,15523,WAZ,117194401183.0,10153033269736184,2015-11-13 00:00:00,ISLAMIST,2015-11-15 18:19:42,link,"b'Die franz\xc3\xb6sische Polizei glaubt, dass dieser Mann ein Tatbeteiligter bei der Terror-Serie war.'",b'Franz\xc3\xb6sische Polizei sucht nach einem fl\xc3\xbcchtigen Attent\xc3\xa4ter',http://www.derwesten.de/politik/article11288921.ece,83.0,0.0,0.0,0.0,0.0,0.0,10.0,468.0,34.0,2.0,2015-11-15 18:19:42,1,0,0,0,0,0,0,0,1,0,201511,1,561.0
541,544,15527,WAZ,117194401183.0,10153034217741184,2015-11-13 00:00:00,ISLAMIST,2015-11-16 13:39:52,photo,"b'Paris \xc3\xa4ndert alles? WAZ-Chefredakteur Andreas Tyrock fordert einen ""Aufstand der Anst\xc3\xa4ndigen"" gegen rechte Demagogen, die den Terror von Paris f\xc3\xbcr ihre Zwecke zu instrumentalisieren versuchen. Seinen ganzen Leitartikel lest ihr hier: http://www.derwesten.de/11288153'",b'Timeline Photos',https://www.facebook.com/waz/photos/a.181313716183.130756.117194401183/10153034217741184/?type=3,903.0,0.0,0.0,0.0,0.0,0.0,53.0,302.0,34.0,2.0,2015-11-16 13:39:52,1,0,0,0,0,0,1,0,0,2,201511,1,1258.0
542,545,15530,WAZ,117194401183.0,10153035636091184,2015-11-13 00:00:00,ISLAMIST,2015-11-17 13:35:59,photo,"b'Zum Gedenken an die Opfer des Terroranschlags vom 13. November erstrahlt der Eiffelturm in blau, wei\xc3\x9f und rot.\n\nBild: Ludovic Marin/AFP/Getty Images'","b""WAZ's cover photo""",https://www.facebook.com/waz/photos/a.10150580643066184.367167.117194401183/10153035635821184/?type=3,274.0,0.0,1.0,0.0,0.0,0.0,2.0,7.0,34.0,2.0,2015-11-17 13:35:59,1,0,0,0,0,0,1,0,0,2,201511,1,284.0
543,546,15531,WAZ,117194401183.0,10153037003741184,2015-11-13 00:00:00,ISLAMIST,2015-11-18 12:00:01,photo,"b""Eure Meinung ist gefragt: Was k\xc3\xb6nnen B\xc3\xbcrger und Beh\xc3\xb6rden im Angesicht der Terrorgefahr tun? \n\nEinige Antworten wollen wir in den kommenden Tagen mit Namen in der WAZ drucken. Wenn ihr das nicht wollt, schreibt's einfach dazu.\n\nBild: dpa""",b'Timeline Photos',https://www.facebook.com/waz/photos/a.181313716183.130756.117194401183/10153037003741184/?type=3,17.0,0.0,0.0,0.0,0.0,0.0,84.0,2.0,34.0,2.0,2015-11-18 12:00:01,1,0,0,0,0,0,1,0,0,2,201511,1,103.0
544,547,15559,Daily Telegraph,110032161104.0,10153084876251105,2015-11-13 00:00:00,ISLAMIST,2015-11-14 05:16:40,video,"b'VIDEO: Two explosions were heard near the Stade de France stadium, where France were playing Germany in a football match. #ParisAttacks http://bit.ly/1MOkjFE\n\nCourtesy: Instagram/jsstagram'",missing_value,https://www.facebook.com/dailytelegraph/videos/10153084876251105/,166.0,0.0,0.0,0.0,0.0,0.0,7.0,22.0,34.0,2.0,2015-11-14 05:16:40,1,0,0,0,0,0,0,1,0,1,201511,0,195.0
545,548,15560,Daily Telegraph,110032161104.0,10153084908606105,2015-11-13 00:00:00,ISLAMIST,2015-11-14 06:05:33,video,"b'VIDEO: French students sing the French national anthem, La Marseillaise at a vigil at Union Square following #ParisAttacks. Follow the live updates of the terrorist attacks here: http://bit.ly/1QnpKC4 #PrayforParis\n\nCourtesy: Twitter/moneyries'",missing_value,https://www.facebook.com/dailytelegraph/videos/10153084908606105/,202.0,0.0,0.0,0.0,0.0,0.0,9.0,29.0,34.0,2.0,2015-11-14 06:05:33,1,0,0,0,0,0,0,1,0,1,201511,1,240.0
546,549,15561,Daily Telegraph,110032161104.0,10153084977771105,2015-11-13 00:00:00,ISLAMIST,2015-11-14 08:15:00,video,"b""#ParisAttacks 3D VIDEO timeline - A night of horror following multiple terror attacks across Paris. Here's how it unfolded.""",missing_value,https://www.facebook.com/dailytelegraph/videos/10153084977771105/,861.0,0.0,1.0,0.0,0.0,0.0,75.0,1421.0,34.0,2.0,2015-11-14 08:15:00,1,0,0,0,0,0,0,1,0,1,201511,1,2358.0
547,550,15562,Daily Telegraph,110032161104.0,10153085092271105,2015-11-13 00:00:00,ISLAMIST,2015-11-14 10:13:09,photo,"b""The Sydney Opera House stands tonight, illuminated, in support of Paris in the wake of today's terrorist attacks. #PrayForParis Picture: Richard Dobson""","b""Daily Telegraph's cover photo""",https://www.facebook.com/dailytelegraph/photos/a.10150616828351105.376413.110032161104/10153085092131105/?type=3,16419.0,0.0,0.0,0.0,3.0,0.0,138.0,2221.0,34.0,2.0,2015-11-14 10:13:09,1,0,0,0,0,0,1,0,0,2,201511,1,18781.0
548,551,15565,Daily Telegraph,110032161104.0,10153086551341105,2015-11-13 00:00:00,ISLAMIST,2015-11-15 10:01:00,video,b'VIDEO: Thousands of people gathered in London\xe2\x80\x99s Trafalgar Square on Saturday evening for a vigil to show solidarity with the victims of the Paris attacks.\n\nCourtesy: YouTube/woutervdijke via storyful',b'Thousands gather in Trafalgar Square to show solidarity with P...',https://www.facebook.com/dailytelegraph/videos/10153086551341105/,344.0,0.0,0.0,0.0,1.0,0.0,11.0,23.0,34.0,2.0,2015-11-15 10:01:00,1,0,0,0,0,0,0,1,0,1,201511,0,379.0
549,552,15567,Daily Telegraph,110032161104.0,10153086566706105,2015-11-13 00:00:00,ISLAMIST,2015-11-15 10:31:00,video,"b'VIDEO: A pianist performs John Lennon\xe2\x80\x99s \xe2\x80\x98Imagine\xe2\x80\x99 outside the Bataclan concert hall in Paris, in memorial of the more than 120 people killed in multiple bombing and shooting attacks across the French capital. \n\nCourtesy: Twitter/Natalia Gallois'","b""Pianist plays John Lennon's 'Imagine' after deadly Paris attacks""",https://www.facebook.com/dailytelegraph/videos/10153086566706105/,595.0,0.0,0.0,0.0,0.0,0.0,18.0,57.0,34.0,2.0,2015-11-15 10:31:00,1,0,0,0,0,0,0,1,0,1,201511,0,670.0
550,553,15571,Daily Telegraph,110032161104.0,10153087595906105,2015-11-13 00:00:00,ISLAMIST,2015-11-15 23:50:48,video,b'VIDEO: Crowds attending Florence + The Machine concert at Sydney Opera House on Saturday evening held a minute\xe2\x80\x99s silence to pay respect to the victims of the deadly attacks in Paris. Were you there? \n\nCourtesy: Clive Dickens',b'Minute silence at Sydney Opera House',https://www.facebook.com/dailytelegraph/videos/10153087595906105/,109.0,0.0,0.0,0.0,0.0,0.0,4.0,8.0,34.0,2.0,2015-11-15 23:50:48,1,0,0,0,0,0,0,1,0,1,201511,0,121.0
551,554,15595,Daily Telegraph,110032161104.0,10153092256466105,2015-11-13 00:00:00,ISLAMIST,2015-11-19 07:01:00,video,"b""VIDEO: Grieving husband Antoine Leiris has posted a defiant Facebook message to the terrorists responsible for his wife's murder.""","b""Husband's heartbreaking post to Paris terrorists""",https://www.facebook.com/dailytelegraph/videos/10153092256466105/,1256.0,0.0,0.0,0.0,1.0,0.0,97.0,871.0,34.0,2.0,2015-11-19 07:01:00,1,0,0,0,0,0,0,1,0,1,201511,1,2225.0
552,555,15596,Daily Telegraph,110032161104.0,10153093201846105,2015-11-13 00:00:00,ISLAMIST,2015-11-19 20:32:08,photo,"b'CONFIRMED DEAD: The mastermind of the Paris attacks Abdelhamid Abaaoud, 27, was killed during a raid on a suburban apartment with officials identifying his body through fingerprints. http://bit.ly/1NetkOP'",b'Timeline Photos',https://www.facebook.com/dailytelegraph/photos/a.363988801104.158734.110032161104/10153093201846105/?type=3,1006.0,0.0,0.0,1.0,0.0,0.0,218.0,75.0,34.0,2.0,2015-11-19 20:32:08,1,0,0,0,0,0,1,0,0,2,201511,0,1300.0
553,556,15602,ARD,48219766388.0,10153127014476389,2015-11-13 00:00:00,ISLAMIST,2015-11-14 19:05:00,video,"b'Der Brennpunkt: ""Terror in Paris"" hier im Livestream. Direkt im Anschluss daran eine Sonderausgabe von hart aber fair: ""Terrorkrieg in Paris - was macht die Angst mit unserem Europa?""'",b'Brennpunkt ab 20:15 Uhr im Livestream',http://www.ardmediathek.de/tv/Das-Erste/live?kanal=208,21.0,0.0,0.0,0.0,0.0,0.0,64.0,5.0,34.0,2.0,2015-11-14 19:05:00,1,0,0,0,0,0,0,1,0,1,201511,1,90.0
554,557,15609,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153153909045976,2015-11-13 00:00:00,ISLAMIST,2015-11-14 07:53:00,photo,b'Wir informieren Sie \xc3\xbcber die Ereignisse im Liveblog: \nfaz.net/-i9y-8a6gj#GEPC;s36 \n\nDie Anschl\xc3\xa4ge in #Paris sind an mindestens sechs verschiedenen Orten erfolgt \xe2\x80\x93 Eine \xc3\x9cbersicht: faz.net/-i9y-8a6ok#GEPC;s6\n\n#ParisAttacks',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153153909045976/?type=3,39.0,0.0,0.0,0.0,0.0,0.0,18.0,29.0,34.0,2.0,2015-11-14 07:53:00,1,0,0,0,0,0,1,0,0,2,201511,0,86.0
555,558,15610,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153154348805976,2015-11-13 00:00:00,ISLAMIST,2015-11-14 15:27:00,photo,b'Die Tat in Paris ist unfassbar \xe2\x80\x93 schreibt Mathias M\xc3\xbcller von Blumencron.\nfaz.net/-i9y-8a6tn#GEPC;s6\n\n#ParisAttacks',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153154348805976/?type=3,465.0,0.0,0.0,0.0,0.0,0.0,43.0,67.0,34.0,2.0,2015-11-14 15:27:00,1,0,0,0,0,0,1,0,0,2,201511,0,575.0
556,559,15612,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153155566960976,2015-11-13 00:00:00,ISLAMIST,2015-11-15 08:18:04,photo,b'Berthold Kohler kommentiert den Kampf gegen den Terror: \n\nfaz.net/-i9y-8a7fr#GEPC;s6',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153155566960976/?type=3,366.0,0.0,0.0,0.0,0.0,0.0,63.0,63.0,34.0,2.0,2015-11-15 08:18:04,1,0,0,0,0,0,1,0,0,2,201511,1,492.0
557,560,15613,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153155826820976,2015-11-13 00:00:00,ISLAMIST,2015-11-15 12:33:00,photo,b'Bleiben Sie \xc3\xbcber die aktuellen Ereignisse informiert \xe2\x80\x93 im FAZ.NET-Liveblog: faz.net/-i9y-8a6gj#GEPC;s6\n\nWas bislang \xc3\xbcber die Opfer bekannt ist: faz.net/-i9y-8a7xn#GEPC;s6\n\nWas wir \xc3\xbcber die Attent\xc3\xa4ter wissen: faz.net/-i9y-8a7v1#GEPC;s6\n\n#ParisAttacks',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153155826820976/?type=3,20.0,0.0,0.0,0.0,0.0,0.0,10.0,9.0,34.0,2.0,2015-11-15 12:33:00,1,0,0,0,0,0,1,0,0,2,201511,0,39.0
558,561,15626,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153160855830976,2015-11-13 00:00:00,ISLAMIST,2015-11-18 17:48:01,photo,b'Champagner schl\xc3\xbcrfend dem Terror trotzen \xe2\x80\x93 sieht so die westliche Freiheit aus? \n\nfaz.net/-gsf-8ab3t#GEPC;s6',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153160855830976/?type=3,166.0,0.0,0.0,0.0,0.0,0.0,51.0,22.0,34.0,2.0,2015-11-18 17:48:01,1,0,0,0,0,0,1,0,0,2,201511,1,239.0
559,562,15632,BBC News,228735667216.0,10153204123772217,2015-11-13 00:00:00,ISLAMIST,2015-11-13 16:34:22,video,"b'US military ""reasonably certain"" drone strike in Syria killed IS militant known as ""Jihadi John"" http://bbc.in/1NOUslY'",missing_value,https://www.facebook.com/bbcnews/videos/10153204123772217/,6252.0,1.0,0.0,0.0,0.0,0.0,867.0,1644.0,34.0,2.0,2015-11-13 16:34:22,1,0,0,0,0,0,0,1,0,1,201511,0,8764.0
560,563,15633,BBC News,228735667216.0,10153204783752217,2015-11-13 00:00:00,ISLAMIST,2015-11-13 22:43:27,video,b'Footage shows #Parisattacks scenes. Continuing coverage live: http://www.bbc.co.uk/news/live/world-europe-34815972',missing_value,https://www.facebook.com/bbcnews/videos/10153204783752217/,8744.0,0.0,3.0,0.0,38.0,11.0,987.0,7866.0,34.0,2.0,2015-11-13 22:43:27,1,0,0,0,0,0,0,1,0,1,201511,0,17649.0
561,564,15634,BBC News,228735667216.0,10153204863647217,2015-11-13 00:00:00,ISLAMIST,2015-11-13 23:20:42,video,b'Paris Attacks: This video appears to show the moment explosions were heard at the Stade de France stadium. At least 40 people are feared dead in multiple shooting and bomb attacks across the city. http://bbc.in/1OJoBof',b'Paris Attacks',https://www.facebook.com/bbcnews/videos/10153204863647217/,18139.0,0.0,12.0,0.0,40.0,11.0,2100.0,12354.0,34.0,2.0,2015-11-13 23:20:42,1,0,0,0,0,0,0,1,0,1,201511,0,32656.0
562,565,15635,BBC News,228735667216.0,10153205496067217,2015-11-13 00:00:00,ISLAMIST,2015-11-14 05:16:51,video,b'Video shows football fans being evacuated from the Stade de France after a suicide blast near the stadium http://bbc.in/1N2XqEQ #ParisAttacks',missing_value,https://www.facebook.com/bbcnews/videos/10153205496067217/,12306.0,0.0,10.0,1.0,16.0,3.0,717.0,3620.0,34.0,2.0,2015-11-14 05:16:51,1,0,0,0,0,0,0,1,0,1,201511,0,16673.0
563,566,15636,BBC News,228735667216.0,10153206178427217,2015-11-13 00:00:00,ISLAMIST,2015-11-14 13:37:10,video,"b'Gunman at Bataclan concert hall told people to lie down and then ""kept shooting,"" #ParisAttacks survivor says http://bbc.in/1kvZPv6'",missing_value,https://www.facebook.com/bbcnews/videos/10153206178427217/,8025.0,1.0,1.0,0.0,11.0,7.0,483.0,1417.0,34.0,2.0,2015-11-14 13:37:10,1,0,0,0,0,0,0,1,0,1,201511,0,9945.0
564,567,15637,BBC News,228735667216.0,10153206780812217,2015-11-13 00:00:00,ISLAMIST,2015-11-14 18:58:22,video,"b""French prosecutor: 'One of the terrorists at Bataclan known' #ParisAttacks\n\nGet the latest: bbc.in/1O8Rrv2""",b'Paris Attacks',https://www.facebook.com/bbcnews/videos/10153206780812217/,4519.0,0.0,0.0,1.0,2.0,0.0,374.0,890.0,34.0,2.0,2015-11-14 18:58:22,1,0,0,0,0,0,0,1,0,1,201511,1,5786.0
565,568,15638,BBC News,228735667216.0,10153206816477217,2015-11-13 00:00:00,ISLAMIST,2015-11-14 19:17:30,video,b'Paris hit by three teams of attackers - French prosecutor #ParisAttacks \n\nRead more here: bbc.in/1Yb2h8J \n\nGet the latest: bbc.in/1OJoBof',b'Paris Terror Attacks',https://www.facebook.com/bbcnews/videos/10153206816477217/,4486.0,0.0,0.0,0.0,1.0,2.0,387.0,713.0,34.0,2.0,2015-11-14 19:17:30,1,0,0,0,0,0,0,1,0,1,201511,0,5589.0
566,569,15639,BBC News,228735667216.0,10153206908582217,2015-11-13 00:00:00,ISLAMIST,2015-11-14 20:05:26,video,"b'Pianist gives rendition of John Lennon\'s ""Imagine"" outside Bataclan concert hall, after #ParisAttacks - Footage courtesy of Rasmus Tantholdt, TV2 bbc.in/1Yb2h8J'",missing_value,https://www.facebook.com/bbcnews/videos/10153206908582217/,29885.0,29.0,1.0,0.0,4.0,0.0,643.0,4944.0,34.0,2.0,2015-11-14 20:05:26,1,0,0,0,0,0,0,1,0,1,201511,0,35506.0
567,570,15640,BBC News,228735667216.0,10153207092642217,2015-11-13 00:00:00,ISLAMIST,2015-11-14 21:53:32,video,b'Fly-through video shows key locations where #ParisAttacks took place bbc.in/1OKUk8v',missing_value,https://www.facebook.com/bbcnews/videos/10153207092642217/,10667.0,0.0,1.0,0.0,20.0,5.0,412.0,3778.0,34.0,2.0,2015-11-14 21:53:32,1,0,0,0,0,0,0,1,0,1,201511,0,14883.0
568,571,15641,BBC News,228735667216.0,10153207919112217,2015-11-13 00:00:00,ISLAMIST,2015-11-15 10:35:25,video,b'French bass Nicolas Courjal ends Marr Show with stirring rendition of La Marseillaise following #ParisAttacks',b'La Marseillaise closes Marr Show',https://www.facebook.com/bbcnews/videos/10153207919112217/,6588.0,5.0,0.0,0.0,0.0,0.0,260.0,1400.0,34.0,2.0,2015-11-15 10:35:25,1,0,0,0,0,0,0,1,0,1,201511,0,8253.0
569,572,15642,BBC News,228735667216.0,10153208387662217,2015-11-13 00:00:00,ISLAMIST,2015-11-15 16:38:31,video,b'Many were young music fans at a concert - details are beginning to emerge about the 129 #ParisAttacks victims http://bbc.in/1N54aSG',missing_value,https://www.facebook.com/bbcnews/videos/10153208387662217/,6710.0,1.0,0.0,0.0,22.0,1.0,565.0,2168.0,34.0,2.0,2015-11-15 16:38:31,1,0,0,0,0,0,0,1,0,1,201511,0,9467.0
570,573,15643,BBC News,228735667216.0,10153209600757217,2015-11-13 00:00:00,ISLAMIST,2015-11-16 10:51:05,video,b'#ParisAttacks: How Parisians feel - in one word http://bbc.in/1MhqIvG\n\nLatest updates: http://bbc.in/1kzTcIj',missing_value,https://www.facebook.com/bbcnews/videos/10153209600757217/,1383.0,0.0,0.0,0.0,0.0,0.0,131.0,329.0,34.0,2.0,2015-11-16 10:51:05,1,0,0,0,0,0,0,1,0,1,201511,0,1843.0
571,574,15644,BBC News,228735667216.0,10153209615797217,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:06:39,video,b'Europe falls silent for one minute to remember victims of the #ParisAttacks http://bbc.in/1PIfO4J',missing_value,https://www.facebook.com/bbcnews/videos/10153209615797217/,6559.0,4.0,0.0,0.0,0.0,0.0,314.0,879.0,34.0,2.0,2015-11-16 11:06:39,1,0,0,0,0,0,0,1,0,1,201511,0,7756.0
572,575,15645,BBC News,228735667216.0,10153210069527217,2015-11-13 00:00:00,ISLAMIST,2015-11-16 17:40:47,video,b'Members of the French parliament sing La Marseillaise after President Hollande vows to eradicate terrorism \n\nFull story: http://bbc.in/1MhXvAT',missing_value,https://www.facebook.com/bbcnews/videos/10153210069527217/,20279.0,34.0,1.0,0.0,4.0,0.0,698.0,4412.0,34.0,2.0,2015-11-16 17:40:47,1,0,0,0,0,0,0,1,0,1,201511,1,25428.0
573,576,15649,BBC News,228735667216.0,10153213045792217,2015-11-13 00:00:00,ISLAMIST,2015-11-18 06:39:07,video,b'Could there be a ninth suspect? #ParisAttacks http://bbc.in/1Ll3otj',b'Paris attacks: Video shows possible ninth suspect',https://www.facebook.com/bbcnews/videos/10153213045792217/,3120.0,0.0,0.0,0.0,0.0,0.0,141.0,438.0,34.0,2.0,2015-11-18 06:39:07,1,0,0,0,0,0,0,1,0,1,201511,0,3699.0
574,577,15650,BBC News,228735667216.0,10153213139097217,2015-11-13 00:00:00,ISLAMIST,2015-11-18 08:32:50,video,b'Explosions and gunfire heard in Saint Denis suburb #ParisAttacks\nContinuous coverage here: http://bbc.in/1S0Jw48 and via www.bbc.com/parisattacks',b'Paris attacks: Explosions and gunfire heard',https://www.facebook.com/bbcnews/videos/10153213139097217/,4086.0,0.0,3.0,0.0,6.0,3.0,233.0,1166.0,34.0,2.0,2015-11-18 08:32:50,1,0,0,0,0,0,0,1,0,1,201511,0,5497.0
575,578,15651,BBC News,228735667216.0,10153213384222217,2015-11-13 00:00:00,ISLAMIST,2015-11-18 13:03:26,video,"b'""One of the ways to defeat terrorism is to show them we will not be cowed"" - David Cameron at #PMQs bbc.in/1Mm22lK'","b""Prime Minister's Questions""",https://www.facebook.com/bbcnews/videos/10153213384222217/,4249.0,2.0,0.0,0.0,0.0,0.0,518.0,556.0,34.0,2.0,2015-11-18 13:03:26,1,0,0,0,0,0,0,1,0,1,201511,1,5325.0
576,579,15653,BBC News,228735667216.0,10153215794437217,2015-11-13 00:00:00,ISLAMIST,2015-11-19 15:51:45,video,"b""Latest from Paris. BBC Ros Atkins is live in the BBC newsroom, discussing Friday's attacks, the death of Abdelhamid Abaaoud and the impact of this week on France. All questions welcome. Join Ros now.""",missing_value,https://www.facebook.com/bbcnews/videos/10153215794437217/,1854.0,0.0,0.0,0.0,0.0,0.0,1186.0,190.0,34.0,2.0,2015-11-19 15:51:45,1,0,0,0,0,0,0,1,0,1,201511,0,3230.0
577,580,15669,Augsburger Allgemeine,121104385783.0,10153279437885784,2015-11-13 00:00:00,ISLAMIST,2015-11-16 21:30:43,photo,"b'Als unsere Fotografin Anne Wall heute Augsburger in der Schweigeminute f\xc3\xbcr die Terroropfer fotografierte, flatterte eine Taube durchs Bild. Mit dieser Aufnahme verabschieden wir uns.'",b'Timeline Photos',https://www.facebook.com/AugsburgerAllgemeine/photos/a.379128945783.159200.121104385783/10153279437885784/?type=3,1110.0,0.0,0.0,0.0,0.0,0.0,26.0,44.0,34.0,2.0,2015-11-16 21:30:43,1,0,0,0,0,0,1,0,0,2,201511,1,1180.0
578,581,15673,Handelsblatt,104709558232.0,10153282342758233,2015-11-13 00:00:00,ISLAMIST,2015-11-14 09:27:11,photo,b'Ohne weitere Worte. #ZitatdesTages #TweetdesTages #TimCook #Apple #ParisAttacks Zum Original- Tweet: http://bit.ly/1HJbGjz (tha)',b'Timeline Photos',https://www.facebook.com/handelsblatt/photos/a.10150261034178233.323431.104709558232/10153282342758233/?type=3,119.0,0.0,0.0,0.0,0.0,0.0,4.0,5.0,34.0,2.0,2015-11-14 09:27:11,1,0,0,0,0,0,1,0,0,2,201511,0,128.0
579,582,15676,Handelsblatt,104709558232.0,10153284909568233,2015-11-13 00:00:00,ISLAMIST,2015-11-15 19:51:30,photo,b'Terror in Paris: Was nahezu zeitgleich in verschiedenen Stadtteilen passierte. (tha)',b'Timeline Photos',https://www.facebook.com/handelsblatt/photos/a.10150261034178233.323431.104709558232/10153284909568233/?type=3,17.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,34.0,2.0,2015-11-15 19:51:30,1,0,0,0,0,0,1,0,0,2,201511,1,26.0
580,583,15678,Handelsblatt,104709558232.0,10153285674263233,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:00:01,photo,b'#Paris #ParisAttacks #Schweigeminute (tha)',b'Timeline Photos',https://www.facebook.com/handelsblatt/photos/a.10150261034178233.323431.104709558232/10153285674263233/?type=3,69.0,0.0,0.0,0.0,0.0,0.0,3.0,5.0,34.0,2.0,2015-11-16 11:00:01,1,0,0,0,0,0,1,0,0,2,201511,0,77.0
581,584,15679,Handelsblatt,104709558232.0,10153286226008233,2015-11-13 00:00:00,ISLAMIST,2015-11-16 19:30:00,photo,b'Unsere morgige Ausgabe besch\xc3\xa4ftigt sich mit dem Aktionsplan gegen die Terrormiliz Islamischer Staat. Die gesamte Ausgabe lesen Sie hier: https://epaper.handelsblatt.com (sdm)',b'Timeline Photos',https://www.facebook.com/handelsblatt/photos/a.10150261034178233.323431.104709558232/10153286226008233/?type=3,6.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,34.0,2.0,2015-11-16 19:30:00,1,0,0,0,0,0,1,0,0,2,201511,1,10.0
582,585,15695,szonline,258172067920.0,10153304724422921,2015-11-13 00:00:00,ISLAMIST,2015-11-14 14:23:21,photo,"b'Die Anschlagsserie l\xc3\xb6st weltweit Entsetzen aus. Vielerorts z\xc3\xbcndeten Menschen Kerzen an, Geb\xc3\xa4ude erstrahlen aus Solidarit\xc3\xa4t in den franz\xc3\xb6sischen Nationalfarben. Mehr zum Geschehen in Paris: www.sz-link.de/paris-live'",b'Nous sommes Unis',https://www.facebook.com/szonline/photos/a.10153304320772921.1073741863.258172067920/10153304873962921/?type=3,1190.0,0.0,0.0,0.0,0.0,0.0,19.0,156.0,34.0,2.0,2015-11-14 14:23:21,1,0,0,0,0,0,1,0,0,2,201511,0,1365.0
583,586,15697,szonline,258172067920.0,10153306638602921,2015-11-13 00:00:00,ISLAMIST,2015-11-15 16:25:13,photo,"b'Die Anschlagsserie l\xc3\xb6st weltweit Entsetzen aus. Vielerorts z\xc3\xbcndeten Menschen Kerzen an, Geb\xc3\xa4ude erstrahlen aus Solidarit\xc3\xa4t in den franz\xc3\xb6sischen Nationalfarben. Mehr zum Geschehen in Paris: www.sz-link.de/paris-live'",b'Nous sommes Unis',https://www.facebook.com/szonline/photos/a.10153304320772921.1073741863.258172067920/10153306633322921/?type=3,1190.0,0.0,0.0,0.0,0.0,0.0,19.0,156.0,34.0,2.0,2015-11-15 16:25:13,1,0,0,0,0,0,1,0,0,2,201511,0,1365.0
584,587,15699,szonline,258172067920.0,10153307659232921,2015-11-13 00:00:00,ISLAMIST,2015-11-16 10:49:38,photo,b'Zum Gedenken an die Opfer der Terroranschl\xc3\xa4ge in Paris gab es heute 12 Uhr in ganz Europa eine Schweigeminute.\n\nFoto: dpa',b'Timeline Photos',https://www.facebook.com/szonline/photos/a.442366222920.215947.258172067920/10153307659232921/?type=3,170.0,0.0,0.0,0.0,0.0,0.0,4.0,6.0,34.0,2.0,2015-11-16 10:49:38,1,0,0,0,0,0,1,0,0,2,201511,1,180.0
585,588,15714,Channel 4 News,6622931938.0,10153334141216939,2015-11-13 00:00:00,ISLAMIST,2015-11-13 23:05:01,video,"b'""This is an attack on all of humanity and the universal values that we share"" \n\nUS president Barack Obama makes a statement about the ongoing attacks in Paris.'",b'Obama speaks during Paris attacks',https://www.facebook.com/Channel4News/videos/10153334141216939/,1350.0,0.0,0.0,0.0,3.0,0.0,212.0,679.0,34.0,2.0,2015-11-13 23:05:01,1,0,0,0,0,0,0,1,0,1,201511,0,2244.0
586,589,15715,Channel 4 News,6622931938.0,10153335000311939,2015-11-13 00:00:00,ISLAMIST,2015-11-14 14:10:00,video,"b'\xe2\x80\x9cWe were wondering if they were real bullets or not, and I saw him shoot someone and then I understood.\xe2\x80\x9d\n\nEyewitnesses described the horrific scenes as four gunmen stormed Le Bataclan concert hall in Paris, the deadliest of last night\xe2\x80\x99s terrorist attacks.'",b'Eyewitnesses describe horrific scene at Bataclan',https://www.facebook.com/Channel4News/videos/10153335000311939/,398.0,0.0,0.0,0.0,0.0,0.0,31.0,188.0,34.0,2.0,2015-11-14 14:10:00,1,0,0,0,0,0,0,1,0,1,201511,1,617.0
587,590,15718,Channel 4 News,6622931938.0,10153336644841939,2015-11-13 00:00:00,ISLAMIST,2015-11-15 11:51:22,video,"b'""Our brother, son and uncle. Everyone\'s best friend."" \n\nThe family of Nick Alexander, the first British victim of the Paris attacks to be named, pay tribute.\n\nHe was one of at least 89 people killed in the massacre at the Bataclan concert venue.'",b'British music lover killed in Bataclan massacre',https://www.facebook.com/Channel4News/videos/10153336644841939/,938.0,0.0,0.0,0.0,5.0,0.0,85.0,271.0,34.0,2.0,2015-11-15 11:51:22,1,0,0,0,0,0,0,1,0,1,201511,0,1299.0
588,591,15722,Channel 4 News,6622931938.0,10153338567961939,2015-11-13 00:00:00,ISLAMIST,2015-11-16 15:24:38,video,"b'Police raids and arrests have taken place across France and Brussels, with Belgian authorities charging two people.\n\nWhat do we know so far about the people behind the Paris attacks?'",b'Who were the Paris attackers?',https://www.facebook.com/Channel4News/videos/10153338567961939/,5869.0,1.0,0.0,1.0,12.0,22.0,612.0,6588.0,34.0,2.0,2015-11-16 15:24:38,1,0,0,0,0,0,0,1,0,1,201511,0,13105.0
589,592,15723,Channel 4 News,6622931938.0,10153338905756939,2015-11-13 00:00:00,ISLAMIST,2015-11-16 20:10:06,video,b'It\xe2\x80\x99s the poor Brussels suburb that\xe2\x80\x99s become a focal point for radicalisation.\n\nParaic O\xe2\x80\x99Brien is in Molenbeek \xe2\x80\x93 the centre of the police search today for more of the jihadists involved in the Paris massacres.',b'Molenbeek: the focus of terror search',https://www.facebook.com/Channel4News/videos/10153338905756939/,476.0,0.0,0.0,0.0,0.0,0.0,39.0,359.0,34.0,2.0,2015-11-16 20:10:06,1,0,0,0,0,0,0,1,0,1,201511,0,874.0
590,593,15724,Channel 4 News,6622931938.0,10153340338096939,2015-11-13 00:00:00,ISLAMIST,2015-11-17 15:50:28,video,"b'""I know them [Isis] from the inside...I am not afraid of them""\n\nJournalist and former Isis hostage Nicolas Henin has spoken out warning that retaliation strikes could play into the hands of terrorists.'",b'Former Isis hostage warns againt strikes',https://www.facebook.com/Channel4News/videos/10153340338096939/,977.0,0.0,0.0,0.0,0.0,0.0,54.0,688.0,34.0,2.0,2015-11-17 15:50:28,1,0,0,0,0,0,0,1,0,1,201511,1,1719.0
591,594,15726,Channel 4 News,6622931938.0,10153342203561939,2015-11-13 00:00:00,ISLAMIST,2015-11-18 17:26:49,video,"b'""I was 100 metres from the first explosion. The bomb would not have differentiated between a Muslim and a Buddhist.""\n\nWho were the six Muslims killed by Islamist militants in the Paris attacks?'",b'The Muslims killed in the Paris attacks',https://www.facebook.com/Channel4News/videos/10153342203561939/,4064.0,1.0,0.0,0.0,29.0,2.0,225.0,5162.0,34.0,2.0,2015-11-18 17:26:49,1,0,0,0,0,0,0,1,0,1,201511,0,9483.0
592,595,15728,Channel 4 News,6622931938.0,10153344048381939,2015-11-13 00:00:00,ISLAMIST,2015-11-19 20:14:17,video,"b'""This is a war between Muslims and non-Muslims""\n\nThe Belgian suburb of Molenbeek is being called Europe\'s ""Jihadi central"" - there have been a several raids this week in the former home to Abdelhamid Abaaoud, suspected ringleader of the Paris attacks.'",b'Belgian town at centre of Jihad trail',https://www.facebook.com/Channel4News/videos/10153344048381939/,252.0,0.0,0.0,0.0,0.0,3.0,68.0,111.0,34.0,2.0,2015-11-19 20:14:17,1,0,0,0,0,0,0,1,0,1,201511,0,434.0
593,596,15730,ITV News,148007467671.0,10153353325412672,2015-11-13 00:00:00,ISLAMIST,2015-11-13 23:23:36,video,"b""US President Barack Obama has declared the Paris attacks 'an attack on all of humanity'.\n\nLive updates here: http://bit.ly/1N2zD7X""","b""Obama calls Paris attacks 'an attack on all humanity'""",https://www.facebook.com/itvnews/videos/10153353325412672/,2600.0,0.0,0.0,0.0,4.0,0.0,274.0,738.0,34.0,2.0,2015-11-13 23:23:36,1,0,0,0,0,0,0,1,0,1,201511,0,3616.0
594,597,15731,ITV News,148007467671.0,10153354011612672,2015-11-13 00:00:00,ISLAMIST,2015-11-14 11:13:45,video,"b'This video, filmed by a Le Monde.fr journalist, shows terrified people clambering out of windows during the Paris attacks. #ParisAttacks.\n\nFollow ITV News for all the latest on this story.'",missing_value,https://www.facebook.com/itvnews/videos/10153354011612672/,654.0,0.0,0.0,0.0,2.0,0.0,125.0,421.0,34.0,2.0,2015-11-14 11:13:45,1,0,0,0,0,0,0,1,0,1,201511,0,1202.0
595,598,15732,ITV News,148007467671.0,10153354138557672,2015-11-13 00:00:00,ISLAMIST,2015-11-14 12:59:13,video,"b'David Cameron tells the French people after the Paris attacks. ""We stand with you. United"".\n\nFor the latest on the #ParisAttacks http://bit.ly/1PsQCAr'",missing_value,https://www.facebook.com/itvnews/videos/10153354138557672/,4232.0,0.0,0.0,0.0,0.0,0.0,798.0,937.0,34.0,2.0,2015-11-14 12:59:13,1,0,0,0,0,0,0,1,0,1,201511,0,5967.0
596,599,15733,ITV News,148007467671.0,10153354983662672,2015-11-13 00:00:00,ISLAMIST,2015-11-14 22:21:02,video,"b""Hundreds of people have gathered in Trafalgar Square in London for a vigil showing solidarity with Paris following Friday's terror attacks.""",b'Paris attacks: Trafalgar Square vigil',https://www.facebook.com/itvnews/videos/10153354983662672/,13898.0,0.0,0.0,0.0,7.0,1.0,169.0,1861.0,34.0,2.0,2015-11-14 22:21:02,1,0,0,0,0,0,0,1,0,1,201511,1,15936.0
597,600,15734,ITV News,148007467671.0,10153355985192672,2015-11-13 00:00:00,ISLAMIST,2015-11-15 15:29:09,video,"b""Crowds gathered to sing The Beatles' Hey Jude at Place de la R\xc3\xa9publique in tribute to the victims of Friday's Paris terror attacks.\n\nLatest updates here: http://bit.ly/1MvixK8""",b'Crowd sings Hey Judge in tribute to Paris attack victims.',https://www.facebook.com/itvnews/videos/10153355985192672/,3506.0,4.0,0.0,0.0,0.0,0.0,91.0,478.0,34.0,2.0,2015-11-15 15:29:09,1,0,0,0,0,0,0,1,0,1,201511,1,4079.0
598,601,15736,ITV News,148007467671.0,10153357225152672,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:02:42,video,b'Police raid a property in the Brussels district of Molenbeek in the wake of the Paris attacks.\n\nFollow ITV News for the latest on this story: http://bit.ly/1SvWg2D',missing_value,https://www.facebook.com/itvnews/videos/10153357225152672/,350.0,0.0,0.0,0.0,0.0,0.0,8.0,70.0,34.0,2.0,2015-11-16 11:02:42,1,0,0,0,0,0,0,1,0,1,201511,0,428.0
599,602,15737,ITV News,148007467671.0,10153357305522672,2015-11-13 00:00:00,ISLAMIST,2015-11-16 12:30:37,video,b'Mourners around the world paused for a minute to remember the victims of the Paris terror attacks. http://bit.ly/1kZ1JUV',b'World pauses in one-minute silence for Paris victims',https://www.facebook.com/itvnews/videos/10153357305522672/,1376.0,1.0,0.0,0.0,1.0,0.0,35.0,150.0,34.0,2.0,2015-11-16 12:30:37,1,0,0,0,0,0,0,1,0,1,201511,1,1563.0
600,603,15738,ITV News,148007467671.0,10153357363257672,2015-11-13 00:00:00,ISLAMIST,2015-11-16 13:30:30,video,b'Twenty-three people were arrested in France during overnight raids in the wake of the Paris attacks. Today counter-terror officers went door-to-door in the Brussels district of Molenbeek. \nFor more on the story: http://bit.ly/1LhHGWS',b'Police raids take place across France and Belgium in wake of a...',https://www.facebook.com/itvnews/videos/10153357363257672/,339.0,0.0,0.0,0.0,0.0,0.0,19.0,72.0,34.0,2.0,2015-11-16 13:30:30,1,0,0,0,0,0,0,1,0,1,201511,1,430.0
601,604,15739,ITV News,148007467671.0,10153357669912672,2015-11-13 00:00:00,ISLAMIST,2015-11-16 17:30:30,video,"b""France 'at war', anti-terror raids and moving tributes - here are some of the headlines making ITV News' Daily Dose.""","b""France 'at war, anti-terror raids and moving tributes""",https://www.facebook.com/itvnews/videos/10153357669912672/,305.0,0.0,0.0,0.0,0.0,0.0,20.0,82.0,34.0,2.0,2015-11-16 17:30:30,1,0,0,0,0,0,0,1,0,1,201511,1,407.0
602,605,15740,ITV News,148007467671.0,10153357900862672,2015-11-13 00:00:00,ISLAMIST,2015-11-16 20:38:46,video,"b""The Eiffel Tower, closed to the public since Friday's terrorist attacks in Paris which killed 129 people, has reopened - lit in the colours of the French flag.\n\nGet the latest from Paris here: http://bit.ly/1YdtPud""",b'Timelapse video of Eiffel Tower lit in colours of French flag',https://www.facebook.com/itvnews/videos/10153357900862672/,6055.0,1.0,0.0,0.0,0.0,0.0,71.0,505.0,34.0,2.0,2015-11-16 20:38:46,1,0,0,0,0,0,0,1,0,1,201511,1,6632.0
603,606,15742,ITV News,148007467671.0,10153358820882672,2015-11-13 00:00:00,ISLAMIST,2015-11-17 08:00:24,video,"b'Antoine Leiris, whose wife was killed in the Bataclan massacre, has written a defiant message to the gunmen and a touching tribute to his wife. Mr Leiris, who has a 17-month-old son, told the attackers they ""will not have my hatred"". Read more here: http://bit.ly/1N7tNSI'",missing_value,https://www.facebook.com/itvnews/videos/10153358820882672/,3247.0,6.0,0.0,0.0,6.0,0.0,224.0,4136.0,34.0,2.0,2015-11-17 08:00:24,1,0,0,0,0,0,0,1,0,1,201511,0,7619.0
604,607,15743,ITV News,148007467671.0,10153359353957672,2015-11-13 00:00:00,ISLAMIST,2015-11-17 14:54:06,video,"b'Watch David Cameron tell parliament there is a ""compelling case"" for the UK to take action in Syria.\n\nFor the latest on the British reaction to the Paris attacks: http://bit.ly/1NZiXgy'","b""Cameron: 'Compelling case' for UK action in Syria""",https://www.facebook.com/itvnews/videos/10153359353957672/,1690.0,1.0,0.0,0.0,0.0,0.0,341.0,478.0,34.0,2.0,2015-11-17 14:54:06,1,0,0,0,0,0,0,1,0,1,201511,0,2510.0
605,608,15744,ITV News,148007467671.0,10153359477447672,2015-11-13 00:00:00,ISLAMIST,2015-11-17 16:14:26,video,"b""A man who pulled a pregnant young woman to safety when she was clinging to a window ledge at the Bataclan theatre in Paris during Friday's terror attack has spoken out. \nFor more on the story: http://bit.ly/1X4RFWz""",b'Man who saved pregnant woman clinging to window at Bataclan th...',https://www.facebook.com/itvnews/videos/10153359477447672/,1111.0,1.0,0.0,0.0,0.0,0.0,44.0,155.0,34.0,2.0,2015-11-17 16:14:26,1,0,0,0,0,0,0,1,0,1,201511,1,1311.0
606,609,15747,ITV News,148007467671.0,10153359894042672,2015-11-13 00:00:00,ISLAMIST,2015-11-17 20:25:48,video,"b""English and French players and fans united for a moving rendition of France's national anthem, La Marseillaise, ahead of Tuesday night's international friendly at Wembley.\n\nAfter the powerful display of solidarity, both teams stood as one during a silence for the victims of the Paris attacks: http://bit.ly/1HWAiA7""",b'England v France: Players and fans unite to sign La Marseillaise',https://www.facebook.com/itvnews/videos/10153359894042672/,8532.0,9.0,0.0,0.0,0.0,0.0,188.0,1237.0,34.0,2.0,2015-11-17 20:25:48,1,0,0,0,0,0,0,1,0,1,201511,0,9966.0
607,610,15748,ITV News,148007467671.0,10153360671292672,2015-11-13 00:00:00,ISLAMIST,2015-11-18 07:17:40,video,"b""ITV News correspondent Emma Murphy reports from the Paris neighbourhood of St Denis where a huge police operation has been taking place in connection with Friday's terror attacks in the city. Get the latest updates here: http://bit.ly/1Ll0ZP7""",missing_value,https://www.facebook.com/itvnews/videos/10153360671292672/,361.0,0.0,0.0,0.0,0.0,0.0,24.0,100.0,34.0,2.0,2015-11-18 07:17:40,1,0,0,0,0,0,0,1,0,1,201511,1,485.0
608,611,15749,ITV News,148007467671.0,10153360915627672,2015-11-13 00:00:00,ISLAMIST,2015-11-18 12:10:40,video,"b""Police have set up a trauma centre for people affected by Wednesday's anti-terror raid in St Denis. Read the latest on this story here: http://bit.ly/1YgcnFs""",missing_value,https://www.facebook.com/itvnews/videos/10153360915627672/,134.0,0.0,0.0,0.0,0.0,0.0,11.0,24.0,34.0,2.0,2015-11-18 12:10:40,1,0,0,0,0,0,0,1,0,1,201511,1,169.0
609,612,15753,ITV News,148007467671.0,10153361047422672,2015-11-13 00:00:00,ISLAMIST,2015-11-18 14:10:59,video,b'The moment armed police captured two suspects near the scene of an anti-terror siege in St Denis has been caught on film. Read more here: http://bit.ly/1Qujk4g',missing_value,https://www.facebook.com/itvnews/videos/10153361047422672/,319.0,0.0,0.0,0.0,0.0,0.0,27.0,66.0,34.0,2.0,2015-11-18 14:10:59,1,0,0,0,0,0,0,1,0,1,201511,1,412.0
610,613,15758,ITV News,148007467671.0,10153362662572672,2015-11-13 00:00:00,ISLAMIST,2015-11-19 15:06:35,video,"b""Paris attacks 'mastermind' confirmed dead, junior doctors to walkout and man held over PC Yvonne Fletcher's murder - here are the headlines making ITV News' Daily Dose.""","b""Paris attacks 'mastermind' confirmed dead, junior doctors to w...""",https://www.facebook.com/itvnews/videos/10153362662572672/,664.0,0.0,0.0,0.0,1.0,0.0,75.0,90.0,34.0,2.0,2015-11-19 15:06:35,1,0,0,0,0,0,0,1,0,1,201511,0,830.0
611,614,15761,ITV News,148007467671.0,10153362727712672,2015-11-13 00:00:00,ISLAMIST,2015-11-19 16:18:42,video,"b'On #ITVTonight, Julie Etchingham asks how safe are we in Britain following the tragic Paris attacks?'",b'After Paris: Can We Be Safe? Tonight Special',https://www.facebook.com/itvnews/videos/10153362727712672/,277.0,0.0,0.0,0.0,0.0,0.0,76.0,67.0,34.0,2.0,2015-11-19 16:18:42,1,0,0,0,0,0,0,1,0,1,201511,0,420.0
612,615,15762,ITV News,148007467671.0,10153362837247672,2015-11-13 00:00:00,ISLAMIST,2015-11-19 17:26:41,video,"b'""At first we thought it was a bad joke"" one survivor of the Paris attacks tells Julie Etchingham on ITV\'s Tonight special ""After Paris: Can We Be Safe?""'","b""Bataclan survivor 'thought it was a bad joke'""",https://www.facebook.com/itvnews/videos/10153362837247672/,156.0,0.0,0.0,0.0,0.0,0.0,6.0,33.0,34.0,2.0,2015-11-19 17:26:41,1,0,0,0,0,0,0,1,0,1,201511,0,195.0
613,616,15770,SÜDWEST PRESSE Online,167154977630.0,10153611929012631,2015-11-13 00:00:00,ISLAMIST,2015-11-14 16:38:58,photo,"b'In der Oberliga hat der SSV Ulm 1846 Fu\xc3\x9fball am Samstagnachmittag mit 1:0 (1:0) gegen den Freiburger FC gewonnen. Torsch\xc3\xbctze: David Braig. \nDoch auch der schrecklichen Ereignissen in Paris gedachten die Fu\xc3\x9fballer - ein Banner erinnerte an die Opfer des Terrors in Paris. www.swp.de/ir,cp,2128037 (jo)'",b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10153611929012631/?type=3,51.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,34.0,2.0,2015-11-14 16:38:58,1,0,0,0,0,0,1,0,0,2,201511,1,52.0
614,617,15772,SÜDWEST PRESSE Online,167154977630.0,10153614693347631,2015-11-13 00:00:00,ISLAMIST,2015-11-16 09:33:00,photo,"b'Ulm und Neu-Ulm an den beiden Tagen nach den Terrormorden von #Paris: Die St\xc3\xa4dte zwar nicht in Schockstarre, die Menschen aber sp\xc3\xbcrbar schockiert. Auch den OB-Wahlkampf hat das IS-Morden erfasst. www.swp.de/3535618 (jo)'",b'Timeline Photos',https://www.facebook.com/suedwestpresse/photos/a.409659257630.187477.167154977630/10153614693347631/?type=3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,34.0,2.0,2015-11-16 09:33:00,1,0,0,0,0,0,1,0,0,2,201511,1,2.0
615,618,15800,Financial Times,8860325749.0,10153673034930750,2015-11-13 00:00:00,ISLAMIST,2015-11-16 15:16:41,video,"b""Friday's deadly attacks in Paris have raised questions about security in Europe. Can the continent's intelligence agencies keep up with the threat posed by Isis as it grows and evolves?\n\nFollow our coverage of the aftermath of the Paris attacks at: http://on.ft.com/1lrohy5""",b'Paris attacks expose security struggle',https://www.facebook.com/financialtimes/videos/10153673034930750/,85.0,0.0,0.0,0.0,0.0,0.0,5.0,20.0,34.0,2.0,2015-11-16 15:16:41,1,0,0,0,0,0,0,1,0,1,201511,0,110.0
616,619,15802,Financial Times,8860325749.0,10153674817895750,2015-11-13 00:00:00,ISLAMIST,2015-11-17 15:45:22,video,"b""Europe's changing borders: an FT progression map (video) showing how countries have reacted to the migration influx. \n\nRead more: Paris attacks renew questions about Europe\xe2\x80\x99s border-free travel http://on.ft.com/1N8ZZ8p""","b""Europe's changing borders""",https://www.facebook.com/financialtimes/videos/10153674817895750/,163.0,0.0,0.0,0.0,0.0,0.0,16.0,94.0,34.0,2.0,2015-11-17 15:45:22,1,0,0,0,0,0,0,1,0,1,201511,0,273.0
617,620,15804,Financial Times,8860325749.0,10153676670335750,2015-11-13 00:00:00,ISLAMIST,2015-11-18 15:46:35,video,"b'Russia will join France in increasing air strikes against Isis in Syria. But if world powers form a big coalition, how successful can they be fighting the Islamist extremists?\n\nRead more: \nSyria\xe2\x80\x99s Raqqa reaps wind of Isis occupation http://on.ft.com/1X7kRfq\nCould Paris atrocity have been thwarted? http://on.ft.com/1O2a1aa'",b'France and Russia step up Syria strikes',https://www.facebook.com/financialtimes/videos/10153676670335750/,175.0,0.0,0.0,0.0,0.0,0.0,14.0,66.0,34.0,2.0,2015-11-18 15:46:35,1,0,0,0,0,0,0,1,0,1,201511,0,255.0
618,621,15805,Financial Times,8860325749.0,10153678246155750,2015-11-13 00:00:00,ISLAMIST,2015-11-19 13:50:48,video,"b""Belgium protests to France over blame for the Paris attacks, expectations firm for a US rate rise in December and the payments app Square prices below its range as it goes public. Watch Thursday's World in 60 Seconds from FirstFT. \n\nSign up for our daily email briefing at ft.com/FirstFT""","b'FirstFT \xe2\x80\x94 Belgium protests, Fed rate rise hope'",https://www.facebook.com/financialtimes/videos/10153678246155750/,34.0,0.0,0.0,0.0,0.0,0.0,2.0,7.0,34.0,2.0,2015-11-19 13:50:48,1,0,0,0,0,0,0,1,0,1,201511,0,43.0
619,622,15807,Financial Times,8860325749.0,10153678840465750,2015-11-13 00:00:00,ISLAMIST,2015-11-19 20:01:39,video,"b'Our experts discuss the latest developments in Paris after police confirm that a raid in Saint-Denis killed Abdelhamid Abaaoud, suspected ringleader of Friday\xe2\x80\x99s terror attacks.\n\nRead more: http://on.ft.com/1MWfGh0'",b'Police say Abaaoud killed in Paris raid',https://www.facebook.com/financialtimes/videos/10153678840465750/,64.0,0.0,0.0,0.0,0.0,0.0,1.0,21.0,34.0,2.0,2015-11-19 20:01:39,1,0,0,0,0,0,0,1,0,1,201511,1,86.0
620,623,15818,SPIEGEL ONLINE,38246844868.0,10153731690659869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 06:30:16,video,b'Mindestens 120 Menschen sterben bei der Anschlagserie in Paris. Der \xc3\x9cberblick im Video:',missing_value,https://www.facebook.com/spiegelonline/videos/10153731690659869/,4028.0,0.0,0.0,0.0,0.0,0.0,1166.0,3933.0,34.0,2.0,2015-11-14 06:30:16,1,0,0,0,0,0,0,1,0,1,201511,0,9127.0
621,624,15821,SPIEGEL ONLINE,38246844868.0,10153731999929869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 09:50:18,link,"b'""Wir wissen, dass unser freies Leben st\xc3\xa4rker ist als jeder Terror.""'",b'Reaktionen auf Terror in Paris',http://www.spiegel.de/politik/ausland/paris-reaktionen-auf-die-terrorattacken-von-obama-merkel-putin-a-1062800.html,220.0,0.0,0.0,0.0,0.0,0.0,17.0,25.0,34.0,2.0,2015-11-14 09:50:18,1,0,0,0,0,0,0,0,1,0,201511,1,262.0
622,625,15822,SPIEGEL ONLINE,38246844868.0,10153732031664869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 10:12:24,link,"b'Frankreichs Staatspr\xc3\xa4sident Fran\xc3\xa7ois Hollande hat die Terrororganisation ""Islamischer Staat"" (IS) f\xc3\xbcr die Anschlagsserie in Paris verantwortlich gemacht.'",b'Terror in Paris: Hollande macht IS f\xc3\xbcr Anschlagsserie verantwortlich',http://spon.de/aeCEj,212.0,0.0,0.0,0.0,0.0,0.0,97.0,23.0,34.0,2.0,2015-11-14 10:12:24,1,0,0,0,0,0,0,0,1,0,201511,1,332.0
623,626,15823,SPIEGEL ONLINE,38246844868.0,10153732165574869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 12:15:00,video,"b'Berlin, Peking, Washington D.C.: Vor franz\xc3\xb6sischen Botschaften dr\xc3\xbccken Menschen den Franzosen ihr Mitgef\xc3\xbchl aus. In die Trauer mischt sich vielerorts die Entschlossenheit, den Terroristen keine Angst zu zeigen.'",missing_value,https://www.facebook.com/spiegelonline/videos/10153732165574869/,1059.0,0.0,0.0,0.0,0.0,0.0,43.0,133.0,34.0,2.0,2015-11-14 12:15:00,1,0,0,0,0,0,0,1,0,1,201511,1,1235.0
624,627,15825,SPIEGEL ONLINE,38246844868.0,10153732418294869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 14:56:09,video,"b'Die Terrormiliz ""Islamischer Staat"" hat sich zu den Anschl\xc3\xa4gen in Paris bekannt. SPIEGEL-ONLINE-Nahost-Experte Christoph Sydow \xc3\xbcber das IS-Bekennerschreiben und die Folgen f\xc3\xbcr Frankreich.'",missing_value,https://www.facebook.com/spiegelonline/videos/10153732418294869/,426.0,0.0,0.0,0.0,0.0,0.0,96.0,204.0,34.0,2.0,2015-11-14 14:56:09,1,0,0,0,0,0,0,1,0,1,201511,1,726.0
625,628,15826,SPIEGEL ONLINE,38246844868.0,10153732463579869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 15:15:00,video,"b'Die meisten Opfer bei den Anschl\xc3\xa4gen in Paris gab es im Club ""Bataclan"" - hier schossen die T\xc3\xa4ter w\xc3\xa4hrend eines Konzerts wahllos in die Menge. SPIEGEL-Reporter Rafael Buschmann berichtet im Video \xc3\xbcber die Situation am Tag nach dem Terrorakt.'",missing_value,https://www.facebook.com/spiegelonline/videos/10153732463579869/,124.0,0.0,0.0,0.0,0.0,0.0,29.0,42.0,34.0,2.0,2015-11-14 15:15:00,1,0,0,0,0,0,0,1,0,1,201511,1,195.0
626,629,15827,SPIEGEL ONLINE,38246844868.0,10153732810064869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 17:34:13,video,b'Der Tag nach dem Terror - hier unser Video-\xc3\x9cberblick zum Stand der Dinge in Paris.',missing_value,https://www.facebook.com/spiegelonline/videos/10153732810064869/,381.0,0.0,0.0,0.0,0.0,0.0,38.0,120.0,34.0,2.0,2015-11-14 17:34:13,1,0,0,0,0,0,0,1,0,1,201511,1,539.0
627,630,15828,SPIEGEL ONLINE,38246844868.0,10153732852349869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 19:00:01,video,b'Ein Reporter der franz\xc3\xb6sischen Zeitung Le Monde filmte mit dem Handy den Angriff auf den Konzertsaal Bataclan.',missing_value,https://www.facebook.com/spiegelonline/videos/10153732852349869/,538.0,1.0,0.0,0.0,0.0,0.0,223.0,363.0,34.0,2.0,2015-11-14 19:00:01,1,0,0,0,0,0,0,1,0,1,201511,0,1125.0
628,631,15829,SPIEGEL ONLINE,38246844868.0,10153733078674869,2015-11-13 00:00:00,ISLAMIST,2015-11-14 19:47:59,link,"b'Die Explosionen der Selbstmordattentate waren im Stade de France deutlich zu h\xc3\xb6ren, trotzdem brach keine Panik aus - weil die Beh\xc3\xb6rden alles richtig machten.'",b'Anschlag beim Stade de France: Besonnene Beh\xc3\xb6rden verhinderten Massenpanik',http://www.spiegel.de/wissenschaft/medizin/paris-behoerden-verhinderten-massenpanik-im-stade-de-france-a-1062835.html,866.0,0.0,0.0,0.0,1.0,0.0,37.0,46.0,34.0,2.0,2015-11-14 19:47:59,1,0,0,0,0,0,0,0,1,0,201511,0,950.0
629,632,15832,SPIEGEL ONLINE,38246844868.0,10153734173484869,2015-11-13 00:00:00,ISLAMIST,2015-11-15 10:18:14,video,"b'Pl\xc3\xb6tzlich fallen Sch\xc3\xbcsse. \n\nEin Konzertbesucher im Pariser Club ""Bataclan"" hat den Beginn des Terroranschlags gefilmt. Ein weiteres Video zeigt m\xc3\xb6glicherweise einen der Attent\xc3\xa4ter kurz vor dem Angriff. Beide Amateurfilmer haben den Anschlag \xc3\xbcberlebt.'","b'Amateurvideos vom ""Bataclan""-Angriff'",https://www.facebook.com/spiegelonline/videos/10153734173484869/,352.0,0.0,0.0,0.0,2.0,0.0,132.0,194.0,34.0,2.0,2015-11-15 10:18:14,1,0,0,0,0,0,0,1,0,1,201511,1,680.0
630,633,15833,SPIEGEL ONLINE,38246844868.0,10153734359839869,2015-11-13 00:00:00,ISLAMIST,2015-11-15 12:52:24,video,b'Mit vorgehaltener Waffe und Hunden wurden am Samstag in #Br\xc3\xbcssel Verd\xc3\xa4chtige im Zusammenhang mit den Terroranschl\xc3\xa4gen in #Paris festgenommen. Ein TV-Team filmte die Szene auf offener Stra\xc3\x9fe.',b'Festnahmen in Br\xc3\xbcssel',https://www.facebook.com/spiegelonline/videos/10153734359839869/,870.0,0.0,0.0,0.0,0.0,0.0,130.0,195.0,34.0,2.0,2015-11-15 12:52:24,1,0,0,0,0,0,0,1,0,1,201511,1,1195.0
631,634,15835,SPIEGEL ONLINE,38246844868.0,10153734938984869,2015-11-13 00:00:00,ISLAMIST,2015-11-15 18:11:55,photo,"b'Suchaufruf im Zusammenhang mit den Angriffen in Paris: Die franz\xc3\xb6sische Polizei sucht demnach nach einem Mann, 1,75 Meter gro\xc3\x9f, braune Augen. spon.de/aeCGp'",b'Timeline Photos',https://www.facebook.com/spiegelonline/photos/a.420707594868.190602.38246844868/10153734938984869/?type=3,328.0,0.0,0.0,0.0,0.0,0.0,60.0,756.0,34.0,2.0,2015-11-15 18:11:55,1,0,0,0,0,0,1,0,0,2,201511,0,1144.0
632,635,15836,SPIEGEL ONLINE,38246844868.0,10153735070014869,2015-11-13 00:00:00,ISLAMIST,2015-11-15 19:35:28,video,"b'Die Lage in Paris bleibt weiter angespannt. Am fr\xc3\xbchen Abend brach an einer der Gedenkst\xc3\xa4tten Panik aus, nachdem Passanten laute Ger\xc3\xa4usche geh\xc3\xb6rt hatten.'",b'Panik an einem der Anschlagsorte in Paris',https://www.facebook.com/spiegelonline/videos/10153735070014869/,473.0,0.0,0.0,1.0,0.0,0.0,204.0,212.0,34.0,2.0,2015-11-15 19:35:28,1,0,0,0,0,0,0,1,0,1,201511,0,890.0
633,636,15839,SPIEGEL ONLINE,38246844868.0,10153735894834869,2015-11-13 00:00:00,ISLAMIST,2015-11-16 08:47:01,video,b'Hier der Stand der Dinge nach den Terroranschl\xc3\xa4gen in Paris in unserem Video-\xc3\x9cberblick.',missing_value,https://www.facebook.com/spiegelonline/videos/10153735894834869/,184.0,0.0,0.0,0.0,0.0,0.0,46.0,78.0,34.0,2.0,2015-11-16 08:47:01,1,0,0,0,0,0,0,1,0,1,201511,1,308.0
634,637,15840,SPIEGEL ONLINE,38246844868.0,10153736021699869,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:58:57,video,"b'Sie singen die Marseillaise, sie entz\xc3\xbcnden Kerzen, sie schweigen. Weltweit gedenken Menschen der Opfer der Terroranschl\xc3\xa4ge von Paris. Vor Botschaften und Konsulaten versammeln sich auch viele Franzosen, die im Ausland leben.'",missing_value,https://www.facebook.com/spiegelonline/videos/10153736021699869/,695.0,0.0,0.0,0.0,0.0,0.0,41.0,117.0,34.0,2.0,2015-11-16 11:58:57,1,0,0,0,0,0,0,1,0,1,201511,1,853.0
635,638,15841,SPIEGEL ONLINE,38246844868.0,10153736036824869,2015-11-13 00:00:00,ISLAMIST,2015-11-16 11:00:00,photo,b'Wir gedenken der Opfer des Terrors.',b'Timeline Photos',https://www.facebook.com/spiegelonline/photos/a.420707594868.190602.38246844868/10153736036824869/?type=3,567.0,0.0,0.0,0.0,0.0,0.0,33.0,61.0,34.0,2.0,2015-11-16 11:00:00,1,0,0,0,0,0,1,0,0,2,201511,1,661.0
636,639,15842,SPIEGEL ONLINE,38246844868.0,10153736654654869,2015-11-13 00:00:00,ISLAMIST,2015-11-16 20:43:00,video,"b'Pariser trotzen dem Terror: Wer in der Stadt ist, kann sich bei MeetParisians melden - zum Reden, Kochen, Angst vertreiben.'",missing_value,https://www.facebook.com/spiegelonline/videos/10153736654654869/,277.0,0.0,0.0,0.0,0.0,0.0,9.0,35.0,34.0,2.0,2015-11-16 20:43:00,1,0,0,0,0,0,0,1,0,1,201511,1,321.0
637,640,15846,SPIEGEL ONLINE,38246844868.0,10153737642984869,2015-11-13 00:00:00,ISLAMIST,2015-11-17 09:00:00,video,b'Der mutma\xc3\x9fliche Drahtzieher der Anschl\xc3\xa4ge von Paris kommt aus dem Br\xc3\xbcsseler Stadtteil Molenbeek. SPIEGEL-ONLINE-Korrespondent Markus Becker \xc3\xbcber das als Islamisten-Hochburg geltenden Viertel.',b'Der belgische Terror-Hotspot Molenbeek',https://www.facebook.com/spiegelonline/videos/10153737642984869/,115.0,0.0,1.0,0.0,0.0,0.0,39.0,50.0,34.0,2.0,2015-11-17 09:00:00,1,0,0,0,0,0,0,1,0,1,201511,0,205.0
638,641,15849,SPIEGEL ONLINE,38246844868.0,10153738017869869,2015-11-13 00:00:00,ISLAMIST,2015-11-17 12:32:01,link,b'Im Zusammenhang mit den Terroranschl\xc3\xa4gen von Paris hat die Polizei bei Aachen drei Verd\xc3\xa4chtige festgenommen.',b'Anschl\xc3\xa4ge von Paris: Polizei nimmt drei Verd\xc3\xa4chtige bei Aachen fest',http://www.spiegel.de/politik/deutschland/paris-anschlaege-drei-festnahmen-bei-aachen-a-1063226.html,247.0,0.0,0.0,0.0,0.0,0.0,64.0,98.0,34.0,2.0,2015-11-17 12:32:01,1,0,0,0,0,0,0,0,1,0,201511,1,409.0
639,642,15850,SPIEGEL ONLINE,38246844868.0,10153738331634869,2015-11-13 00:00:00,ISLAMIST,2015-11-17 15:47:14,video,"b'Nach den Anschl\xc3\xa4gen in Paris ist das erste Propagandavideo der Terrormiliz ""Islamischer Staat"" aufgetaucht, in dem direkt Bezug auf die Attentate genommen wird. Eine Analyse des Videos von SPIEGEL-ONLINE-Redakteur und Nahost-Experte Christoph Sydow.'",b'Analyse der IS-Propaganda',https://www.facebook.com/spiegelonline/videos/10153738331634869/,465.0,0.0,0.0,0.0,0.0,0.0,208.0,271.0,34.0,2.0,2015-11-17 15:47:14,1,0,0,0,0,0,0,1,0,1,201511,1,944.0
640,643,15852,SPIEGEL ONLINE,38246844868.0,10153739796524869,2015-11-13 00:00:00,ISLAMIST,2015-11-18 09:44:02,video,"b'Bei dem Anti-Terror-Einsatz in Paris hat laut Polizei eine Frau einen Sprengstoffg\xc3\xbcrtel gez\xc3\xbcndet, ein weiterer Verd\xc3\xa4chtiger wurde erschossen. Soldaten suchen nach dem mutma\xc3\x9flichen Drahtzieher der Anschl\xc3\xa4ge vom Freitag.'",missing_value,https://www.facebook.com/spiegelonline/videos/10153739796524869/,190.0,0.0,0.0,0.0,0.0,0.0,43.0,85.0,34.0,2.0,2015-11-18 09:44:02,1,0,0,0,0,0,0,1,0,1,201511,1,318.0
641,644,15859,The Guardian,10513336322.0,10153748072246323,2015-11-13 00:00:00,ISLAMIST,2015-11-13 15:20:00,video,"b'Mohammed Emwazi, one of the most high profile figures of Islamic State, is believed to have been killed in Syria by an unmanned US drone. How did a child who arrived in Britain aged six and loved football and S Club 7 go on to become the brutal Isis militant known as Jihadi John?'",b'Mohammed Emwazi \xe2\x80\x93 video profile',https://www.facebook.com/theguardian/videos/10153748072246323/,1296.0,0.0,0.0,1.0,0.0,0.0,456.0,857.0,34.0,2.0,2015-11-13 15:20:00,1,0,0,0,0,0,0,1,0,1,201511,0,2610.0
642,645,15862,The Guardian,10513336322.0,10153748846971323,2015-11-13 00:00:00,ISLAMIST,2015-11-13 23:45:57,video,"b'As tens of thousands of people, including President Fran\xc3\xa7ois Hollande, watched a football match at the Stade de France, the sound of an explosion were heard \xe2\x80\x94 apparently part of a series of attacks across Paris. Live updates: http://www.theguardian.com/world/live/2015/nov/13/shootings-reported-in-eastern-paris-live?CMP=fb_gu'",b'Explosion heard during France v Germany football match in Paris',https://www.facebook.com/theguardian/videos/10153748846971323/,1113.0,0.0,3.0,0.0,1.0,0.0,166.0,514.0,34.0,2.0,2015-11-13 23:45:57,1,0,0,0,0,0,0,1,0,1,201511,0,1797.0
643,646,15864,The Guardian,10513336322.0,10153749285501323,2015-11-13 00:00:00,ISLAMIST,2015-11-14 07:00:00,photo,"b""Today's front pages, following the series of deadly attacks around Paris: http://gu.com/p/4e7n5/fb""",b'Timeline Photos',https://www.facebook.com/theguardian/photos/a.10150338151436323.391595.10513336322/10153749285501323/?type=3,339.0,0.0,0.0,0.0,0.0,0.0,18.0,131.0,34.0,2.0,2015-11-14 07:00:00,1,0,0,0,0,0,1,0,0,2,201511,0,488.0
644,647,15865,The Guardian,10513336322.0,10153749542226323,2015-11-13 00:00:00,ISLAMIST,2015-11-14 11:00:01,video,"b'French football fans sing their national anthem while they are evacuated from the Stade de France in Paris after a series of attacks on Friday night.\n\nPosted on Facebook by Karl Olive, the crowd calmly walk through the tunnel and sing together, following explosions heard near the stadium'",b'Football fans sing La Marseillaise during stadium evacuation \xe2\x80\x93...',https://www.facebook.com/theguardian/videos/10153749542226323/,11741.0,15.0,0.0,0.0,0.0,0.0,200.0,2564.0,34.0,2.0,2015-11-14 11:00:01,1,0,0,0,0,0,0,1,0,1,201511,0,14520.0
645,648,15866,The Guardian,10513336322.0,10153749918131323,2015-11-13 00:00:00,ISLAMIST,2015-11-14 15:30:00,video,"b""An unnamed man plays John Lennon's Imagine on a grand piano outside the Bataclan in tribute to the victims of the Paris attacks.""","b""Pianist plays John Lennon's Imagine outside Bataclan concert hall""",https://www.facebook.com/theguardian/videos/10153749918131323/,33609.0,36.0,2.0,0.0,47.0,0.0,519.0,10454.0,34.0,2.0,2015-11-14 15:30:00,1,0,0,0,0,0,0,1,0,1,201511,0,44667.0
646,649,15867,The Guardian,10513336322.0,10153751289881323,2015-11-13 00:00:00,ISLAMIST,2015-11-15 06:30:00,video,b'A 20-second clip posted to Instagram shows the moment the Eagles Of Death Metal concert at the Bataclan theatre was interrupted by gunfire: http://gu.com/p/4e85y/fb',b'Paris attacks: footage shows moment shooting starts in Batacla...',https://www.facebook.com/theguardian/videos/10153751289881323/,1280.0,0.0,3.0,0.0,10.0,5.0,290.0,1121.0,34.0,2.0,2015-11-15 06:30:00,1,0,0,0,0,0,0,1,0,1,201511,0,2709.0
647,650,15868,The Guardian,10513336322.0,10153751519356323,2015-11-13 00:00:00,ISLAMIST,2015-11-15 10:30:00,video,b'129 people died and more than 300 were injured as Paris suffered the worst terrorist attack in Europe since the Madrid train bombings of 2004. This is how events unfolded',b'Paris attacks: how events unfolded \xe2\x80\x93 video',https://www.facebook.com/theguardian/videos/10153751519356323/,2333.0,0.0,0.0,0.0,7.0,3.0,207.0,1355.0,34.0,2.0,2015-11-15 10:30:00,1,0,0,0,0,0,0,1,0,1,201511,1,3905.0
648,651,15876,ZDF heute,112784955679.0,10153754137625680,2015-11-13 00:00:00,ISLAMIST,2015-11-14 09:18:05,video,b'Das Statement von Kanzlerin Merkel zu den Anschl\xc3\xa4gen in Paris #ParisAttacks #PorteOuverte',"b'""Angriff auf Freiheit""'",https://www.facebook.com/ZDFheute/videos/10153754137625680/,8501.0,0.0,0.0,0.0,0.0,0.0,1206.0,3644.0,34.0,2.0,2015-11-14 09:18:05,1,0,0,0,0,0,0,1,0,1,201511,0,13351.0
649,652,15877,The Guardian,10513336322.0,10153754820776323,2015-11-13 00:00:00,ISLAMIST,2015-11-17 10:40:00,video,b'This is what we know about the people alleged to have carried out the Paris attacks',b'Who are the Paris attack suspects?',https://www.facebook.com/theguardian/videos/10153754820776323/,949.0,0.0,0.0,0.0,2.0,4.0,144.0,583.0,34.0,2.0,2015-11-17 10:40:00,1,0,0,0,0,0,0,1,0,1,201511,0,1682.0
650,653,15878,ZDF heute,112784955679.0,10153755170540680,2015-11-13 00:00:00,ISLAMIST,2015-11-14 19:38:20,video,b'Gestern verfolgte der Bundesau\xc3\x9fenminister Frank-Walter Steinmeier das DFB-Team (Die Mannschaft)-Spiel in Paris im Stadion. Heute ber\xc3\xa4t er auf der Syrien-Konferenz \xc3\xbcber einen Ausweg aus dem Krieg. Auf dem Flughafen fand er noch Zeit f\xc3\xbcr ein Interview und schildert uns seine Eindr\xc3\xbccke. #ParisAttacks',b'Au\xc3\x9fenminister Frank-Walter Steinmeier im Interview',https://www.facebook.com/ZDFheute/videos/10153755170540680/,480.0,0.0,0.0,0.0,0.0,0.0,63.0,185.0,34.0,2.0,2015-11-14 19:38:20,1,0,0,0,0,0,0,1,0,1,201511,0,728.0
651,654,15879,ZDF heute,112784955679.0,10153755449955680,2015-11-13 00:00:00,ISLAMIST,2015-11-14 22:49:02,video,"b'""Lassen wir uns nicht weis machen, alle Muslime seien tickende Zeitbomben. Die Terroristen sind irregeleitete, fanatische M\xc3\xb6rder, Verbrecher, die ihre Religion sch\xc3\xa4ndlich missbrauchen."" \n\nEin Kommentar von ZDF-Chefredakteur Peter Frey zu den Anschl\xc3\xa4gen in Paris.'","b'Kommentar: ""Verbrecher, die ihre Religion missbrauchen""'",https://www.facebook.com/ZDFheute/videos/10153755449955680/,11178.0,0.0,0.0,0.0,0.0,0.0,484.0,4768.0,34.0,2.0,2015-11-14 22:49:02,1,0,0,0,0,0,0,1,0,1,201511,1,16430.0
652,655,15880,ZDF heute,112784955679.0,10153755454795680,2015-11-13 00:00:00,ISLAMIST,2015-11-14 22:52:17,video,"b'""Es glaube keiner an einen Zufall. Dass gestern Abend die deutsche Nationalmannschaft in Paris spielte, dass Bomben am Stade de France explodierten, dass ein Freundschaftsspiel in Panik enden sollte \xe2\x80\x93 das hei\xc3\x9ft: auch wir, Deutschland, war gemeint"", kommentiert ZDF-Chefredakteur Peter Frey die gestrigen Terroranschl\xc3\xa4ge in Paris.'",missing_value,https://www.facebook.com/ZDFheute/videos/10153755454795680/,1477.0,0.0,0.0,0.0,0.0,0.0,142.0,547.0,34.0,2.0,2015-11-14 22:52:17,1,0,0,0,0,0,0,1,0,1,201511,1,2166.0
653,656,15883,The Guardian,10513336322.0,10153756097291323,2015-11-13 00:00:00,ISLAMIST,2015-11-18 01:04:28,link,b'Follow our live blog for the latest developments on the Paris attacks',b'Paris attacks: deadly police raid in St-Denis \xe2\x80\x93 as it happened',https://www.theguardian.com/world/live/2015/nov/18/paris-attacks-police-hunt-ninth-suspect-as-germany-on-alert-after-hanover-bomb-threat-live?CMP=fb_gu,339.0,0.0,1.0,0.0,0.0,1.0,42.0,83.0,34.0,2.0,2015-11-18 01:04:28,1,0,0,0,0,0,0,0,1,0,201511,0,466.0
654,657,15884,The Guardian,10513336322.0,10153756590746323,2015-11-13 00:00:00,ISLAMIST,2015-11-18 10:00:00,video,"b'It\xe2\x80\x99s easy to see Isis as an irrational death cult, argues Charlie Winter \xe2\x80\x93 but its motives in the Paris attack were strategic. The group is trying to achieve polarisation in the west, spread fear, spark military action against it and improve its image. If we understand this, we can avoid falling into its trap...'","b""Isis has a strategy. Let's not be part of it""",https://www.facebook.com/theguardian/videos/10153756590746323/,1783.0,0.0,0.0,0.0,1.0,2.0,91.0,843.0,34.0,2.0,2015-11-18 10:00:00,1,0,0,0,0,0,0,1,0,1,201511,0,2720.0
655,658,15886,ZDF heute,112784955679.0,10153756911755680,2015-11-13 00:00:00,ISLAMIST,2015-11-15 17:24:01,video,"b'Terror droht Gesellschaft zu spalten\n\nDie perfide Strategie der Terroristen droht dem Soziologen Armin Nassehi zufolge aufzugehen. Er beobachte eine gesellschaftliche Spaltung: ""Wir gehen uns gegenseitig an den Kragen"", sagt er dem ZDF.'",b'Terror droht Gesellschaft zu spalten',https://www.facebook.com/ZDFheute/videos/10153756911755680/,474.0,0.0,0.0,0.0,0.0,0.0,124.0,264.0,34.0,2.0,2015-11-15 17:24:01,1,0,0,0,0,0,0,1,0,1,201511,1,862.0
656,659,15890,The Guardian,10513336322.0,10153758655991323,2015-11-13 00:00:00,ISLAMIST,2015-11-19 13:40:01,video,"b'""Let\'s not do what they want us to do which is to turn to bigotry and division. Let\'s show them in the most defiant way possible - our common humanity and our solidarity.""'",b'How should we respond to the Paris attacks?',https://www.facebook.com/theguardian/videos/10153758655991323/,2758.0,0.0,0.0,0.0,0.0,0.0,103.0,1158.0,34.0,2.0,2015-11-19 13:40:01,1,0,0,0,0,0,0,1,0,1,201511,0,4019.0
657,660,15892,ZDF heute,112784955679.0,10153759143035680,2015-11-13 00:00:00,ISLAMIST,2015-11-16 21:48:48,video,"b'Stichwort Terroranschl\xc3\xa4ge: Wie gut ist Deutschland auf den Fall der F\xc3\xa4lle vorbereitet? Die Antwort von Rainer Wendt, Bundesvorsitzender der Polizeigewerkschaft, ist ern\xc3\xbcchternd. #ParisAttacks'",missing_value,https://www.facebook.com/ZDFheute/videos/10153759143035680/,180.0,0.0,0.0,0.0,0.0,0.0,95.0,106.0,34.0,2.0,2015-11-16 21:48:48,1,0,0,0,0,0,0,1,0,1,201511,1,381.0
658,661,15894,ZDF heute,112784955679.0,10153761882290680,2015-11-13 00:00:00,ISLAMIST,2015-11-18 09:50:08,video,"b'Ein Anti-Terror-Einsatz im Norden von Paris dauert an. Ein mutma\xc3\x9flicher Terrorist verschanzt sich weiterhin in einer Wohnung, berichtet ZDF-Korrespondentin Britta Hilpert. Weitere Informationen im Liveblog: http://heute.de/40996878.html'",missing_value,https://www.facebook.com/ZDFheute/videos/10153761882290680/,84.0,0.0,0.0,0.0,0.0,0.0,17.0,47.0,34.0,2.0,2015-11-18 09:50:08,1,0,0,0,0,0,0,1,0,1,201511,1,148.0
659,662,15896,WELT,97515118114.0,10153792053733115,2015-11-13 00:00:00,ISLAMIST,2015-11-14 19:18:26,video,b'In der Terrornacht von Paris hat sein Smartphone diesem Mann das Leben gerettet.',missing_value,https://www.facebook.com/welt/videos/10153792053733115/,16711.0,0.0,1.0,0.0,0.0,0.0,2209.0,1919.0,34.0,2.0,2015-11-14 19:18:26,1,0,0,0,0,0,0,1,0,1,201511,1,20840.0
660,663,15934,HNA,237702348824.0,10153834766473825,2015-11-13 00:00:00,ISLAMIST,2015-11-14 11:45:36,link,"b'""Das passiert gerade in meiner Stadt?"" Unsere Frankreich-Korrespondentin schildert den Horror der Nacht in Paris und die Angst am Morgen danach. #ParisAttacks'",b'Terror in Paris: HNA-Korrespondentin \xc3\xbcber Angst und Trauer',http://www.hna.de/politik/terror-paris-hna-korrespondentin-schildert-eindruecke-5865733.html,14.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,34.0,2.0,2015-11-14 11:45:36,1,0,0,0,0,0,0,0,1,0,201511,0,17.0
661,664,15936,HNA,237702348824.0,10153839964778825,2015-11-13 00:00:00,ISLAMIST,2015-11-17 07:14:10,link,"b'Jetzt \xc3\xa4u\xc3\x9fert sich Til Schweiger zum verschobenen Tatort: ""Wir sollten uns nicht von Terroristen diktieren lassen, was wir im Fernsehen zeigen sollten.""'","b'ARD verschiebt ""Tatort"": Til Schweiger ist sauer'",http://www.hna.de/kultur/tv-kino/tatort-helene-fischer-til-schweiger-sauer-verschoben-terror-in-paris-zr-5872848.html,100.0,0.0,0.0,0.0,0.0,0.0,31.0,1.0,34.0,2.0,2015-11-17 07:14:10,1,0,0,0,0,0,0,0,1,0,201511,1,132.0
662,665,15937,HNA,237702348824.0,10153840814648825,2015-11-13 00:00:00,ISLAMIST,2015-11-17 19:51:16,link,b'Das L\xc3\xa4nderspiel Deutschland gegen die Niederlande ist wegen Terrorverdachtes abgesagt worden. Unser Kommentar von Chefredakteur Horst Seidenfaden. #GERNED',b'Kommentar zur Terror-Bedrohung: Wir sind mittendrin',http://www.hna.de/sport/fussball/abgesagtes-laenderspiel-kommentar-terror-bedrohung-5875672.html,55.0,0.0,0.0,0.0,0.0,0.0,14.0,15.0,34.0,2.0,2015-11-17 19:51:16,1,0,0,0,0,0,0,0,1,0,201511,1,84.0
663,666,15952,Bild,25604775729.0,10153885822005730,2015-11-13 00:00:00,ISLAMIST,2015-11-14 07:08:11,photo,b'Unsere Titelseite.\n\nInformationen zu den Terror-Anschl\xc3\xa4gen in Paris: http://bit.ly/1MOnVHu',b'Timeline Photos',https://www.facebook.com/bild/photos/a.166767505729.158690.25604775729/10153885822005730/?type=3,3211.0,0.0,0.0,0.0,1.0,1.0,951.0,1397.0,34.0,2.0,2015-11-14 07:08:11,1,0,0,0,0,0,1,0,0,2,201511,1,5561.0
664,667,15953,Bild,25604775729.0,10153885830950730,2015-11-13 00:00:00,ISLAMIST,2015-11-14 07:16:57,video,b'Was in der Terror-Nacht geschah:',b'#ParisAttacks',https://www.facebook.com/bild/videos/10153885830950730/,2996.0,0.0,0.0,0.0,1.0,0.0,694.0,1309.0,34.0,2.0,2015-11-14 07:16:57,1,0,0,0,0,0,0,1,0,1,201511,1,5000.0
665,668,15960,Bild,25604775729.0,10153892164810730,2015-11-13 00:00:00,ISLAMIST,2015-11-17 07:41:43,video,"b'Er war zuf\xc3\xa4llig dort, als die Terroristen zuschlugen. Ein Journalist filmte den Terror der #ParisAttacks. Die ganze Folge BILD-Daily gibt es hier: http://bit.ly/1l1zDs9'",missing_value,https://www.facebook.com/bild/videos/10153892164810730/,153.0,0.0,0.0,0.0,0.0,0.0,41.0,24.0,34.0,2.0,2015-11-17 07:41:43,1,0,0,0,0,0,0,1,0,1,201511,1,218.0
666,669,15964,Bild,25604775729.0,10153892954700730,2015-11-13 00:00:00,ISLAMIST,2015-11-17 23:30:00,video,b'Dieser Mann rettete bei den Terror-Anschl\xc3\xa4gen in Paris 70 Menschen das Leben.',missing_value,https://www.facebook.com/bild/videos/10153892954700730/,7774.0,0.0,0.0,0.0,0.0,0.0,191.0,538.0,34.0,2.0,2015-11-17 23:30:00,1,0,0,0,0,0,0,1,0,1,201511,1,8503.0
667,670,15967,Bild,25604775729.0,10153894468785730,2015-11-13 00:00:00,ISLAMIST,2015-11-18 09:15:39,video,b'Wie im Krieg: So h\xc3\xb6rte sich der Anti-Terror-Einsatz heute Morgen in Paris Saint-Denis an! Das Video nahm ein Anwohner auf:',"b'Tote, Verletzte, Festnahmen in Paris'",https://www.facebook.com/bild/videos/10153894468785730/,769.0,0.0,2.0,0.0,0.0,0.0,448.0,501.0,34.0,2.0,2015-11-18 09:15:39,1,0,0,0,0,0,0,1,0,1,201511,1,1720.0
668,671,15971,Bild,25604775729.0,10153896851315730,2015-11-13 00:00:00,ISLAMIST,2015-11-19 08:41:08,video,"b'Bei den Terroranschl\xc3\xa4gen in Beirut starben 44 Menschen, mehr als 200 wurden verletzt. Es h\xc3\xa4tten noch viele mehr sein k\xc3\xb6nnen, wenn dieser Mann nicht eingegriffen h\xc3\xa4tte.'",b'Adel Termos rettete Hunderte in Beirut',https://www.facebook.com/bild/videos/10153896851315730/,9473.0,1.0,2.0,0.0,1.0,0.0,381.0,1916.0,34.0,2.0,2015-11-19 08:41:08,1,0,0,0,0,0,0,1,0,1,201511,1,11774.0
669,672,15978,JUNGE FREIHEIT,13479664941.0,10154336978404942,2015-11-13 00:00:00,ISLAMIST,2015-11-15 13:19:57,link,"b'Eine Handvoll Islam-Terroristen ermordet in einer koordinierten Aktion hundertvierzig Menschen in Paris. Wer seine f\xc3\xbcnf Sinne beisammen hat, stellt sich da die naheliegende Frage: Wie viele dieser tickenden Zeitbomben sind als sogenannte \xe2\x80\x9eFl\xc3\xbcchtlinge\xe2\x80\x9c unerkannt \xc3\xbcber die offenen deutschen Grenzen spaziert und warten nur darauf, auch hier solche Verbrechen zu begehen? Ein Kommentar von Michael Paulwitz. >>'",b'Zweierlei Krieg',https://jungefreiheit.de/debatte/kommentar/2015/zweierlei-krieg/,2346.0,0.0,0.0,0.0,0.0,0.0,202.0,1184.0,34.0,2.0,2015-11-15 13:19:57,1,0,0,0,0,0,0,0,1,0,201511,1,3732.0
670,673,15983,JUNGE FREIHEIT,13479664941.0,10154343148084942,2015-11-13 00:00:00,ISLAMIST,2015-11-18 10:41:50,photo,b'SCHOCKSTARRE IN BERLIN\n\nWelche Konsequenzen zieht Deutschland aus den islamistischen Terroranschl\xc3\xa4gen in Paris? Bundeskanzlerin Merkel zeigt sich ratlos und \xc3\xbcberfordert. Die neuen Aufkl\xc3\xa4rungsbrosch\xc3\xbcren zur Asyl-Krise und ein Probeabo jetzt gratis anfordern: https://jungefreiheit.de/asyl',b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10154343148084942/?type=3,316.0,0.0,0.0,0.0,0.0,0.0,63.0,77.0,34.0,2.0,2015-11-18 10:41:50,1,0,0,0,0,0,1,0,0,2,201511,1,456.0
671,674,15984,JUNGE FREIHEIT,13479664941.0,10154343208029942,2015-11-13 00:00:00,ISLAMIST,2015-11-18 11:33:21,photo,"b'Nach dem Terror von Paris: ""..., da\xc3\x9f dies alles nichts mit dem Islam zu tun hat!""\n\nAlle JF-Karikaturen gibt es hier: https://jungefreiheit.de/karikaturen'",b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10154343208029942/?type=3,607.0,0.0,0.0,0.0,0.0,0.0,34.0,196.0,34.0,2.0,2015-11-18 11:33:21,1,0,0,0,0,0,1,0,0,2,201511,1,837.0
672,675,15986,JUNGE FREIHEIT,13479664941.0,10154343588379942,2015-11-13 00:00:00,ISLAMIST,2015-11-18 15:57:04,link,"b'Wer nach dem aktuellen islamistischen Terror nicht aufwacht, dem ist nicht mehr zu helfen. Wer nach mehr als 130 Toten in Paris und mehr als 220 Toten in einem russischen Flugzeug nicht in der Lage ist, umzudenken, der hat vor den Terroristen im Namen des Islam kapituliert. Ein Gastkommentar von FP\xc3\x96-Chef Heinz-Christian Strache. >>'",b'Kampf dem islamistischen Terror!',https://jungefreiheit.de/debatte/kommentar/2015/kampf-dem-islamistischen-terror/,1623.0,0.0,0.0,0.0,0.0,0.0,61.0,684.0,34.0,2.0,2015-11-18 15:57:04,1,0,0,0,0,0,0,0,1,0,201511,1,2368.0
673,676,15987,JUNGE FREIHEIT,13479664941.0,10154344122654942,2015-11-13 00:00:00,ISLAMIST,2015-11-18 21:17:41,photo,"b'EIL: Wer macht mit beim JF-Fotoshooting in Berlin?\n\nDie JF sucht kurzfristig junge Frauen&M\xc3\xa4nner zwischen 16 und 30 f\xc3\xbcr ein Fotoshooting! Wir brauchen Bilder von begeisterten JF-Leserinnen und Lesern zum Thema Sch\xc3\xbcler und Studenten. Die Bilder finden f\xc3\xbcr ein Faltblatt Verwendung, das f\xc3\xbcr die Unterst\xc3\xbctzung von Sch\xc3\xbcler- und Studentenabos wirbt.\nWer m\xc3\xb6chte, kann die von einem Foto-K\xc3\xbcnstler angefertigten Portr\xc3\xa4tbilder auch privat nutzen. Wir bieten ferner ein kleines, angemessenes Honorar. Es wird bestimmt lustig!\nTermin: Freitag, den 20. November zwischen 10 und 16 Uhr.\nBitte Mail an Bastian Behrens behrens@jungefreiheit.de'",b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10154344122654942/?type=3,40.0,0.0,0.0,0.0,0.0,0.0,9.0,5.0,34.0,2.0,2015-11-18 21:17:41,1,0,0,0,0,0,1,0,0,2,201511,0,54.0
674,677,15997,Hamburger Abendblatt,121580125458.0,10156155500185459,2015-11-13 00:00:00,ISLAMIST,2015-11-15 08:48:11,link,"b'Die Klagemauer in Jerusalem ist blau-wei\xc3\x9f-rot erleuchtet, Sportler gedenken der Opfer von Paris im Schweigen, die Musiker von U2 legen am Bataclan Blumen nieder - Bilder zur weltweiten Anteilnahme an der Anschlagsserie von Paris.'",b'Zeichen der Anteilnahme nach dem Terror',http://www.abendblatt.de/vermischtes/article206576303,145.0,0.0,0.0,0.0,0.0,0.0,9.0,9.0,34.0,2.0,2015-11-15 08:48:11,1,0,0,0,0,0,0,0,1,0,201511,0,163.0
675,678,15998,Hamburger Abendblatt,121580125458.0,10156156634935459,2015-11-13 00:00:00,ISLAMIST,2015-11-15 18:01:45,link,b'Frankreich und Belgien fahnden nach diesem Terrorverd\xc3\xa4chtigen. Frankreichs Pr\xc3\xa4sident will den nach den Anschl\xc3\xa4gen verh\xc3\xa4ngten Ausnahmezustand auf drei Monate verl\xc3\xa4ngern.',b'Internationale Gro\xc3\x9ffahndung nach Terrorverd\xc3\xa4chtigem Salah',http://www.abendblatt.de/politik/ausland/article206576225/Internationale-Grossfahndung-nach-Terrorverdaechtigem-Salah.html,79.0,0.0,0.0,0.0,0.0,0.0,12.0,235.0,34.0,2.0,2015-11-15 18:01:45,1,0,0,0,0,0,0,0,1,0,201511,1,326.0
676,679,16075,SWR Aktuell,112906815414721.0,996200123752048,2016-01-07 00:00:00,SEP-REP,2016-01-12 15:45:54,video,b'Die Landesschau aktuell Rheinland-Pfalz von 16 Uhr u.a. mit dem Selbstmordanschlag in Istanbul. Nach t\xc3\xbcrkischen Regierungsangaben wurden dabei mindestens neun Deutsche get\xc3\xb6tet.',missing_value,https://www.facebook.com/SWRAktuell/videos/996200123752048/,13.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,2016-01-12 15:45:54,0,0,0,0,1,1,0,1,0,1,201601,0,20.0
677,680,16076,SWR Aktuell,112906815414721.0,996285177076876,2016-01-07 00:00:00,SEP-REP,2016-01-12 18:59:01,video,"b'Die rheinland-pf\xc3\xa4lzische Ministerpr\xc3\xa4sidentin Dreyer, SPD hat sich betroffen gezeigt vom Selbstmordanschlag in Istanbul. Acht Deutsche wurden dabei nach jetzigem Stand get\xc3\xb6tet.'",missing_value,https://www.facebook.com/SWRAktuell/videos/996285177076876/,16.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,0.0,1.0,2016-01-12 18:59:01,0,0,0,0,1,1,0,1,0,1,201601,0,21.0
678,681,16093,The Sunday People,633052486757819.0,999252540137810,2016-01-07 00:00:00,SEP-REP,2016-01-12 22:18:58,link,"b""No one will be mourning the end of this man's life""","b""Robert Black: Child murderer's reign of terror brought to end by wrong turning""",http://www.mirror.co.uk/news/uk-news/robert-black-child-murderers-reign-7168757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2016-01-12 22:18:58,0,0,0,0,1,1,0,0,1,0,201601,0,0.0
679,682,16095,The Mail,159113120793522.0,1005044399533719,2016-01-07 00:00:00,SEP-REP,2016-01-11 13:10:48,photo,b'Drunken thugs attacked Cumbria amputee http://www.nwemail.co.uk/News/Barrow/Drunken-thugs-attacked-Cumbria-amputee-7c95b1be-9713-4b47-be0c-297b823c57e9-ds',b'Timeline Photos',https://www.facebook.com/northwesteveningmail/photos/a.159657454072422.27971.159113120793522/1005044399533719/?type=3,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2016-01-11 13:10:48,0,0,0,0,1,1,1,0,0,2,201601,0,1.0
680,683,16197,Mirror Politics,1542228052683519.0,1660625577510432,2016-01-07 00:00:00,SEP-REP,2016-01-12 22:45:16,link,b'David Cameron got pretty rattled under questioning...',"b""David Cameron admits many of his 70k Syrian fighters are 'hardline Islamists'""",http://www.mirror.co.uk/news/uk-news/rattled-david-cameron-admits-many-7169133,87.0,0.0,0.0,1.0,0.0,0.0,24.0,92.0,0.0,1.0,2016-01-12 22:45:16,0,0,0,0,1,1,0,0,1,0,201601,0,204.0
681,684,16215,WAZ,117194401183.0,10153130231966184,2016-01-07 00:00:00,SEP-REP,2016-01-13 04:41:51,link,"b'Nach dem Terror-Anschlag von Istanbul, bei dem zehn Menschen (darunter acht Deutsche) ums Leben gekommen sind, haben wir alle gesicherten Informationen zusammengefasst:'",b'Deutsche Opfer von Istanbul waren auf Drei-L\xc3\xa4nder-Tour',http://www.derwesten.de/politik/deutsche-opfer-von-istanbul-waren-auf-drei-laender-tour-id11458154.html,16.0,0.0,0.0,0.0,0.0,0.0,3.0,10.0,0.0,1.0,2016-01-13 04:41:51,0,0,0,0,1,1,0,0,1,0,201601,1,29.0
682,685,16217,WAZ,117194401183.0,10153130650251184,2016-01-07 00:00:00,SEP-REP,2016-01-13 13:10:32,photo,"b""Wir wollen eure Meinung wissen: Beeinflusst der Terror eure Urlaubspl\xc3\xa4ne? Einige Antworten wollen wir inklusive Namen in den kommenden Tagen in der WAZ abdrucken - wenn ihr das nicht wollt, schreibt's einfach dazu. [Foto: dpa]""",b'Timeline Photos',https://www.facebook.com/waz/photos/a.181313716183.130756.117194401183/10153130650251184/?type=3,43.0,0.0,0.0,0.0,0.0,0.0,111.0,5.0,0.0,1.0,2016-01-13 13:10:32,0,0,0,0,1,1,1,0,0,2,201601,1,159.0
683,686,16242,KSTA,141063022950.0,10153355714867951,2016-01-07 00:00:00,SEP-REP,2016-01-09 13:59:33,video,b'Pegida-Anh\xc3\xa4nger attackieren ein Kamera-Team \xe2\x80\x93 aufgenommen von unseren Kollegen von K\xc3\xb6ln.tv. Die Demonstration auf dem Breslauer Platz im News-Ticker: http://goo.gl/Tm86Zs (apa; Video: Laudam)',missing_value,https://www.facebook.com/ksta.fb/videos/10153355714867951/,522.0,0.0,0.0,0.0,0.0,0.0,308.0,698.0,0.0,1.0,2016-01-09 13:59:33,0,0,0,0,1,1,0,1,0,1,201601,0,1528.0
684,687,16268,szonline,258172067920.0,10153414256432921,2016-01-07 00:00:00,SEP-REP,2016-01-13 09:12:44,link,"b'Unter den deutschen Todesopfern des Terroranschlags in #Istanbul sind auch drei #Sachsen. Das sei \xe2\x80\x9etraurige Gewissheit\xe2\x80\x9c, sagte Ministerpr\xc3\xa4sident Tillich am Mittwoch in #Dresden.'",b'Sachsen unter Anschlagsopfern in Istanbul',http://www.sz-online.de/sachsen/sachsen-unter-anschlagsopfern-in-istanbul-3296420.html,31.0,0.0,0.0,0.0,0.0,0.0,16.0,16.0,0.0,1.0,2016-01-13 09:12:44,0,0,0,0,1,1,0,0,1,0,201601,1,63.0
685,688,16323,JUNGE FREIHEIT,13479664941.0,10154473200424942,2016-01-07 00:00:00,SEP-REP,2016-01-07 09:31:20,photo,"b'Heute vor einem Jahr ver\xc3\xbcbten Islamisten ihren t\xc3\xb6dlichen Terroranschlag auf das Satire-Magazin Charlie Hebdo. Helft dabei, Deutschland und ganz Europa \xc3\xbcber die Gefahren des politischen Islam aufzukl\xc3\xa4ren! Die Postkarten bekommt Ihr gratis zum Verteilen hier: https://jungefreiheit.de/charlie'",b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10154473200424942/?type=3,281.0,0.0,0.0,0.0,0.0,0.0,7.0,65.0,0.0,1.0,2016-01-07 09:31:20,1,0,0,0,0,1,1,0,0,2,201601,1,353.0
686,689,16324,JUNGE FREIHEIT,13479664941.0,10154473395564942,2016-01-07 00:00:00,SEP-REP,2016-01-07 11:41:33,photo,"b'30 Jahre JUNGE FREIHEIT. BIW-Chef Jan Timke gratuliert: ""Ob Euro-Krise, Asyl-Chaos, Islamisierung Europas, linksextreme Straftaten, kriminelle Ausl\xc3\xa4nderclans oder Wahlf\xc3\xa4lschung in Bremerhaven - in der Jungen Freiheit lese ich Fakten und Meinungen dazu, die ich in anderen Medien vergeblich suche. Ich gratuliere Ihnen herzlich zum 30. Geburtstag der JF. Bleiben Sie so jung und angriffslustig. Niemand will mehr diesen medialen Einheitsbrei lesen!"" Das g\xc3\xbcnstige ""30 Jahre JF""-Deutschland-Abo bekommt Ihr hier: jf.de/deutschland-abo'",b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10154473395564942/?type=3,349.0,0.0,0.0,0.0,0.0,0.0,6.0,26.0,0.0,1.0,2016-01-07 11:41:33,1,0,0,0,0,1,1,0,0,2,201601,0,381.0
687,690,16325,JUNGE FREIHEIT,13479664941.0,10154473520569942,2016-01-07 00:00:00,SEP-REP,2016-01-07 12:59:38,link,"b'Die Pariser Polizei hat am Donnerstag einen mit einem Messer bewaffneten Mann erschossen, der vor einem Kommissariat einen Polizisten angegriffen hatte. Der Angreifer soll dabei \xe2\x80\x9eAllahu Akbar\xe2\x80\x9c gerufen haben. Der Beamte wurde verletzt, teilte das franz\xc3\xb6sische Innenministerium mit. >>'",b'Polizei verhindert islamistischen Anschlag in Paris',https://jungefreiheit.de/politik/ausland/2016/polizei-verhindert-islamistischen-anschlag-in-paris/,530.0,0.0,0.0,0.0,0.0,0.0,55.0,98.0,0.0,1.0,2016-01-07 12:59:38,0,0,0,0,1,1,0,0,1,0,201601,0,683.0
688,691,16328,JUNGE FREIHEIT,13479664941.0,10154486271409942,2016-01-07 00:00:00,SEP-REP,2016-01-12 15:17:59,link,"b'Bei einem Terroranschlag in Istanbul sind am Dienstag mindestens zehn Menschen get\xc3\xb6tet worden. 15 weitere seien verletzt worden, sagte Istanbuls Gouverneur, Vasip Sahin. Unter den Opfern sind neun Deutsche. Die t\xc3\xbcrkische Regierung sprcht von einem syrischen Selbstmordattent\xc3\xa4ter. >>'",b'Istanbul: Neun Deutsche sterben bei Terroranschlag',https://jungefreiheit.de/politik/ausland/2016/istanbul-neun-deutsche-sterben-bei-terroranschlag/,236.0,0.0,0.0,0.0,0.0,0.0,78.0,165.0,0.0,1.0,2016-01-12 15:17:59,0,0,0,0,1,1,0,0,1,0,201601,1,479.0
689,692,16354,Sunday Express,143537355839363.0,431447140381715,2016-02-05 00:00:00,SEP-REP,2016-02-09 10:34:45,link,b'Popular cameraman Habofanoe Ntsie appeared before the Ladybrand Magistrate\xe2\x80\x99s Court on Thursday for allegedly sexually harassing actresses who were part of a movie he was shooting in South Africa. http://bit.ly/1PyWrYW',b'Ntsie released on M1500 bail | Sunday Express',http://bit.ly/1PyWrYW,2.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,1.0,2016-02-09 10:34:45,0,0,0,0,1,1,0,0,1,0,201602,0,5.0
690,693,16419,Monitor,186702484702033.0,1010067309032209,2016-02-05 00:00:00,SEP-REP,2016-02-05 13:45:00,link,"b'Kein Talkshow-Thema: Die t\xc3\xa4glichen Attacken auf Fl\xc3\xbcchtlingsheime\n\nSeit der Silvesternacht von K\xc3\xb6ln scheint das Gespr\xc3\xa4chsthema in Medien und \xc3\x96ffentlichkeit gesetzt: Kriminelle Fl\xc3\xbcchtlinge, integrationsunwillige Fl\xc3\xbcchtlinge, Angst vor Fl\xc3\xbcchtlingen. Dass derzeit in Deutschland t\xc3\xa4glich Fl\xc3\xbcchtlingsheime attackiert werden, dar\xc3\xbcber spricht kaum jemand. \n\n#wdr #monitor #ardmonitor #daserste #monitor #fl\xc3\xbcchtlinge'",b'Fast unbemerkt: Die t\xc3\xa4glichen Attacken auf Fl\xc3\xbcchtlingsheime',http://www1.wdr.de/daserste/monitor/sendungen/attacken-auf-fluechtlingsheime-100.html,848.0,0.0,0.0,0.0,0.0,0.0,90.0,523.0,2.0,1.0,2016-02-05 13:45:00,0,0,0,0,1,1,0,0,1,0,201602,0,1461.0
691,694,16462,taz,171844246207985.0,1027606227298445,2016-02-05 00:00:00,SEP-REP,2016-02-11 09:16:11,photo,"b'Seehofer... Ach, egal. \n\nhttp://taz.de/Kommentar-Seehofers-Attacken/!5273135/'",b'Timeline Photos',https://www.facebook.com/taz.kommune/photos/a.207013419357734.51100.171844246207985/1027606227298445/?type=3,329.0,0.0,0.0,0.0,0.0,0.0,12.0,59.0,2.0,1.0,2016-02-11 09:16:11,0,0,0,0,1,1,1,0,0,2,201602,0,400.0
692,695,16481,London Evening Standard,165348596842143.0,1088060621237598,2016-02-05 00:00:00,SEP-REP,2016-02-09 06:10:00,link,b'Staff were repeatedly asked if they were training terrorists...',"b""Isis Academy changes name after being left with 'no other choice'""",https://www.standard.co.uk/news/uk/school-called-isis-academy-changes-name-after-being-left-with-no-other-choice-a3175776.html,162.0,0.0,0.0,0.0,1.0,0.0,17.0,40.0,2.0,1.0,2016-02-09 06:10:00,0,0,0,0,1,1,0,0,1,0,201602,1,220.0
693,696,16532,RTL,179133132098813.0,1127371973941586,2016-02-05 00:00:00,SEP-REP,2016-02-09 06:05:01,video,"b'Spannende Geschichten erz\xc3\xa4hlen, knifflige Fragen recherchieren, Nutzwert und Unterhaltung liefern.\nWir suchen Journalisten, die Einsatz zeigen.\nSo wie hier im Terrortunnel im Gazastreifen. \n\nBewerbung unter www.rtl-journalistenschule.de'",missing_value,https://www.facebook.com/meinRTL/videos/1127371973941586/,121.0,0.0,0.0,0.0,0.0,0.0,11.0,8.0,2.0,1.0,2016-02-09 06:05:01,0,0,0,0,1,1,0,1,0,1,201602,1,140.0
694,697,16664,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153309872480976,2016-02-05 00:00:00,SEP-REP,2016-02-11 21:24:00,photo,b'F\xc3\xbcr ihren Film \xc3\xbcber Edward Snowden bekam Laura Poitras einen Oscar. Zuvor wurde sie von der amerikanischen Regierung als terrorverd\xc3\xa4chtig eingestuft. \nEin Gespr\xc3\xa4ch \xc3\xbcber Massen\xc3\xbcberwachung und die Macht des \xe2\x80\x9edeep state\xe2\x80\x9c: faz.net/-gqz-8d9ta#GEPC;s6',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153309872480976/?type=3,42.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,2.0,1.0,2016-02-11 21:24:00,0,0,0,0,1,1,1,0,0,2,201602,1,49.0
695,698,16730,Channel 4 News,6622931938.0,10153498899551939,2016-02-05 00:00:00,SEP-REP,2016-02-05 18:14:37,video,"b'""No matter how we do it, it will not animate a new group of terrorists in Ireland.""\n\nIrish novelist Colm T\xc3\xb3ib\xc3\xadn discusses the upcoming 100 year anniversary of Ireland\'s 1916 Easter Rising, saying it will be as much of an ""interrogation as a celebration"".'",b'Colm Toibin discuss the Easter Rising centenary',https://www.facebook.com/Channel4News/videos/10153498899551939/,224.0,0.0,0.0,0.0,0.0,0.0,32.0,64.0,2.0,1.0,2016-02-05 18:14:37,0,0,0,0,1,1,0,1,0,1,201602,1,320.0
696,699,16750,ITV News,148007467671.0,10153524119527672,2016-02-05 00:00:00,SEP-REP,2016-02-10 17:18:49,video,"b'""If you are watching this, I\'m probably dead or I\'m probably a legend or something"": Would-be jihadis sent tender texts to teenager as they urged him join the so-called Islamic State: http://bit.ly/1nYJv7h'","b""'Radicalise me babe': Would-be jihadis' tender texts""",https://www.facebook.com/itvnews/videos/10153524119527672/,93.0,0.0,0.0,0.0,0.0,1.0,45.0,102.0,2.0,1.0,2016-02-10 17:18:49,1,0,0,0,0,1,0,1,0,1,201602,0,241.0
697,700,16753,ITV News,148007467671.0,10153525860352672,2016-02-05 00:00:00,SEP-REP,2016-02-11 15:10:54,video,"b'Two female backpackers were allegedly kidnapped and sexually assaulted by an Australian man in Coorong National Park, south east of Adelaide.\nFor more on the story: http://bit.ly/1o2h8Fj'","b""Backpackers 'kidnapped and attacked' in Australia""",https://www.facebook.com/itvnews/videos/10153525860352672/,128.0,0.0,0.0,0.0,0.0,1.0,23.0,59.0,2.0,1.0,2016-02-11 15:10:54,0,0,0,0,1,1,0,1,0,1,201602,0,211.0
698,701,16868,JUNGE FREIHEIT,13479664941.0,10154559989239942,2016-02-05 00:00:00,SEP-REP,2016-02-10 12:05:59,link,"b'Gibt es in Deutschland \xe2\x80\x9eeine Herrschaft des Unrechts\xe2\x80\x9c? Ja, meint CSU-Chef Horst Seehofer und greift die Bundesregierung damit frontal an. SPD, Gr\xc3\xbcne und Linkspartei springen Bundeskanzlerin Angela Merkel (CDU) nun zur Seite und attackieren den bayerischen Ministerpr\xc3\xa4sidenten. >>'",b'\xe2\x80\x9eHerrschaft des Unrechts\xe2\x80\x9c: Kritik an Seehofer-\xc3\x84u\xc3\x9ferung',https://jungefreiheit.de/politik/deutschland/2016/herrschaft-des-unrechts-kritik-an-seehofer-aeusserung/,926.0,0.0,0.0,0.0,0.0,0.0,169.0,249.0,2.0,1.0,2016-02-10 12:05:59,0,0,0,0,1,1,0,0,1,0,201602,0,1344.0
699,702,16894,ITV,299803460091.0,10156489082700092,2016-02-05 00:00:00,SEP-REP,2016-02-10 11:52:44,photo,"b""A new series of Britain's Got Talent you say? \n\nWell you're in luck as we're on set shooting the promo for the brand new series right NOW! Take 1....""",b'Timeline Photos',https://www.facebook.com/itv/photos/a.10152406400440092.953479.299803460091/10156489082700092/?type=3,38.0,0.0,0.0,0.0,0.0,0.0,8.0,3.0,2.0,1.0,2016-02-10 11:52:44,0,0,0,0,1,1,1,0,0,2,201602,0,49.0
700,703,16900,Sunday Express,143537355839363.0,435598246633271,2016-02-18 00:00:00,ISLAMIST,2016-02-23 10:31:53,link,b'Lesotho Lawyers for Human Rights have condemned the recent arrest of Attorney Khotso Nthontho and attack on his home the very day he was taken into custody for allegedly lying under oath. http://bit.ly/1T3AZlk',b'Lawyers rally behind arrested colleague | Sunday Express',http://bit.ly/1T3AZlk,7.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,2016-02-23 10:31:53,1,0,0,0,0,0,0,0,1,0,201602,0,9.0
701,704,16965,Monitor,186702484702033.0,1018519301520343,2016-02-18 00:00:00,ISLAMIST,2016-02-21 19:05:00,status,"b'Sachsen versagt!\n\nErst der krakeelende Kleingeist in Clausnitz, dann der h\xc3\xa4mische Mob in Bautzen. Ja: Sachsen hat ein Problem, und das nicht erst seit gestern. In keinem anderen Bundesland werden Fremde h\xc3\xa4ufiger angegriffen: Jede vierte Straftat mit fremdenfeindlichem Hintergrund findet dort statt. Aufkl\xc3\xa4rungsquote: Miserabel. \n\nDarin liegt das eigentliche Problem in Sachsen: Rechtsfreie R\xc3\xa4ume f\xc3\xbcr Rechtsextremisten und Fremdenfeinde - und eine Polizei, die am Ende ver\xc3\xa4ngstigte Fl\xc3\xbcchtlinge zu T\xc3\xa4tern erkl\xc3\xa4rt, statt fremdenfeindliche Straftaten aufzukl\xc3\xa4ren. Dass die regierende CDU in Sachsen jahrelang nicht nur weggeschaut, sondern auch noch mitgez\xc3\xbcndelt hat, unterstreicht: In Sachsen versagt der Staat, weil er Fl\xc3\xbcchtlinge nicht sch\xc3\xbctzt und Demokratiefeinde gew\xc3\xa4hren l\xc3\xa4sst. Die f\xc3\xbchlen sich n\xc3\xa4mlich getragen von Spitzenpolitikern der s\xc3\xa4chsischen CDU, die wahlweise \xe2\x80\x9ekeine rechten Umtriebe\xe2\x80\x9c in ihrem Land sehen wollen oder schon vor Jahren von \xe2\x80\x9epositiven, nationalen Wallungen\xe2\x80\x9c tr\xc3\xa4umten.\n\nDeshalb greifen die \xc3\xbcblichen offiziellen Emp\xc3\xb6rungsrituale heute zu kurz. Wer verhindern will, dass weiter Fl\xc3\xbcchtlingsheime brennen und Fl\xc3\xbcchtlinge angegriffen werden, muss wirklich entschieden durchgreifen. Und das hei\xc3\x9ft auch: unf\xc3\xa4hige Polizeipr\xc3\xa4sidenten entlassen und Politiker abstrafen, die sich mit dem Ungeist fremdenfeindlicher Parolen immer wieder gemein machen. Nicht nur in Sachsen!\n\nGeorg Restle\n\n#monitor #ard #wdr #georgrestle #sachsenversagt'",missing_value,missing_value,9126.0,0.0,0.0,0.0,3.0,0.0,448.0,2580.0,0.0,1.0,2016-02-21 19:05:00,1,0,0,0,0,0,0,0,0,0,201602,0,12157.0
702,705,16974,Monitor,186702484702033.0,1019449951427278,2016-02-18 00:00:00,ISLAMIST,2016-02-23 14:28:47,status,b'Warum gibt es in Sachsen mehr fremdenfeindliche \xc3\x9cbergriffe als \xc3\xbcberall sonst im Land? \n\nPolitikwissenschaftler machen daf\xc3\xbcr vor allem Polizei und Politik verantwortlich: die regierende CDU habe die Gefahr jahrzehntelang verharmlost und die Polizei lasse Rechtsextremisten allzu oft gew\xc3\xa4hren. Mehr dazu am Donnerstag um 22:15 Uhr bei MONITOR im Ersten. Unsere geplanten Themen:\n\n1. Staatsversagen? Warum Rechtsextremismus in Sachsen besonders gedeiht\n2. \xc3\x9cberforderte Kommunen? Die gro\xc3\x9fe MONITOR-Umfrage\n3. Gr\xc3\xbcne Tr\xc3\xa4ume: Auf CDU-Kurs zum Wahlsieg?\n4. Aktiendeals auf Steuerzahlerkosten: Die unsauberen Gesch\xc3\xa4fte der Superreichen',missing_value,missing_value,305.0,0.0,0.0,0.0,0.0,5.0,43.0,61.0,0.0,1.0,2016-02-23 14:28:47,1,0,0,0,0,0,0,0,0,0,201602,0,414.0
703,706,16981,The Sunday People,633052486757819.0,1020452814684449,2016-02-18 00:00:00,ISLAMIST,2016-02-21 11:15:00,link,b'Brilliant news',"b""Dogs' home where 60 died reopens after arson attack thanks to \xc2\xa32m of aid""",http://www.mirror.co.uk/news/uk-news/dogs-home-60-died-reopens-7408214,14.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2016-02-21 11:15:00,1,0,0,0,0,0,0,0,1,0,201602,0,15.0
704,707,16987,The Sunday People,633052486757819.0,1022395384490192,2016-02-18 00:00:00,ISLAMIST,2016-02-24 14:02:31,link,b'So sad. RIP.',b'A soldier battered by thugs in his own home has died four months after attack',http://www.mirror.co.uk/news/uk-news/former-soldier-tommy-ward-80-7431873,8.0,0.0,0.0,0.0,0.0,0.0,2.0,13.0,0.0,1.0,2016-02-24 14:02:31,1,0,0,0,0,0,0,0,1,0,201602,0,23.0
705,708,17056,Daily Express,129617873765147.0,1101190379941220,2016-02-18 00:00:00,ISLAMIST,2016-02-19 21:15:00,link,b'These two have just taken their war of words to a whole new level',b'Vladimir Putin warned: Russia will be held responsible for ANY terror attack in Turkey',http://www.express.co.uk/news/world/645755/Vladimir-Putin-warned-Russia-responsible-terror-attack-Turkey,348.0,1.0,0.0,0.0,0.0,0.0,132.0,157.0,0.0,1.0,2016-02-19 21:15:00,1,0,0,0,0,0,0,0,1,0,201602,0,638.0
706,709,17110,The Times and The Sunday Times,147384458624178.0,1213698791992734,2016-02-18 00:00:00,ISLAMIST,2016-02-22 16:20:01,video,"b""How should you talk to your children about terrorism? In this short film, we watch three parents answer their children's questions based on footage from the recent terrorist attacks in Paris.\nhttp://thetim.es/1QVtI0g""",b'NSPCC terrorism',https://www.facebook.com/timesandsundaytimes/videos/1213698791992734/,94.0,0.0,0.0,0.0,2.0,0.0,9.0,165.0,0.0,1.0,2016-02-22 16:20:01,1,0,0,0,0,0,0,1,0,1,201602,1,270.0
707,710,17354,Channel 4 News,6622931938.0,10153525125826939,2016-02-18 00:00:00,ISLAMIST,2016-02-18 10:25:51,video,"b'Turkey vows to retaliate after a deadly bomb attack. \n \nA car bomb went off in the Turkish capital of Ankara on Wednesday near vehicles carrying military personnel, killing at least 28 people and wounding 61 others.'",b'Turkey vows to retaliate after a deadly bomb attack.',https://www.facebook.com/Channel4News/videos/10153525125826939/,279.0,0.0,3.0,0.0,1.0,0.0,95.0,134.0,0.0,1.0,2016-02-18 10:25:51,1,0,0,0,0,0,0,1,0,1,201602,0,512.0
708,711,17355,Channel 4 News,6622931938.0,10153525895901939,2016-02-18 00:00:00,ISLAMIST,2016-02-18 18:05:12,video,"b'""It\'s difficult when people say your brother\'s a murderer...He didn\'t wield that knife, he didn\'t intend that harm.""\n\nThe UK Supreme Court has redefined a law known as joint enterprise which can put you in jail for murder even if you didn\'t wield the fatal blow. Hundreds of people could now appeal.'","b'The UK Supreme Court redefine ""controversial"" joint enterprise...'",https://www.facebook.com/Channel4News/videos/10153525895901939/,291.0,0.0,0.0,0.0,0.0,0.0,42.0,94.0,0.0,1.0,2016-02-18 18:05:12,1,0,0,0,0,0,0,1,0,1,201602,0,427.0
709,712,17366,ITV News,148007467671.0,10153538868712672,2016-02-18 00:00:00,ISLAMIST,2016-02-18 07:17:31,video,"b""There's a new menace in Australia - and its name is Hairy Panic.""",b'Hairy Panic tumbleweed terrorises town',https://www.facebook.com/itvnews/videos/10153538868712672/,2062.0,1.0,17.0,0.0,0.0,0.0,435.0,1841.0,0.0,1.0,2016-02-18 07:17:31,1,0,0,0,0,0,0,1,0,1,201602,0,4356.0
710,713,17371,ITV News,148007467671.0,10153539816752672,2016-02-18 00:00:00,ISLAMIST,2016-02-18 18:35:36,video,"b'Watch the moment Donald J. Trump says ""if and when"" Isis attacks the Vatican ""the Pope will only have wished and prayed"" he was President.\n\nFind out more: http://bit.ly/1OimQsb'",b'Donald Trump hits back at the Pope',https://www.facebook.com/itvnews/videos/10153539816752672/,300.0,2.0,0.0,1.0,0.0,3.0,214.0,92.0,0.0,1.0,2016-02-18 18:35:36,1,0,0,0,0,0,0,1,0,1,201602,0,612.0
711,714,17415,Financial Times,8860325749.0,10153888759100750,2016-02-18 00:00:00,ISLAMIST,2016-02-23 18:16:37,video,b'Microsoft founder Bill Gates says that forcing Apple to co-operate in the San Bernadino terror investigation is no different from asking a company to turn over bank records or phone logs.\n\nRead more: Gates breaks ranks over FBI Apple request http://on.ft.com/1UkNisl\n\nThis is a full version of an edited interview published previously on February 23.',b'Bill Gates on Apple and privacy',https://www.facebook.com/financialtimes/videos/10153888759100750/,423.0,0.0,1.0,0.0,0.0,2.0,80.0,170.0,0.0,1.0,2016-02-23 18:16:37,1,0,0,0,0,0,0,1,0,1,201602,1,676.0
712,715,17425,SPIEGEL ONLINE,38246844868.0,10153948314959869,2016-02-18 00:00:00,ISLAMIST,2016-02-19 18:45:27,video,"b'Achtung, Leopard in der Stadt!'",b'Leopardenattacke in indischer Siedlung',https://www.facebook.com/spiegelonline/videos/10153948314959869/,136.0,0.0,0.0,0.0,0.0,0.0,45.0,19.0,0.0,1.0,2016-02-19 18:45:27,1,0,0,0,0,0,0,1,0,1,201602,0,200.0
713,716,17433,The Guardian,10513336322.0,10153948850956323,2016-02-18 00:00:00,ISLAMIST,2016-02-18 15:30:01,link,"b'World Press Photo judges have selected images that cover the refugee crisis in Europe, the war in Syria, the Paris attacks, the devastating earthquake in Nepal and the clashes in the US set off by police shootings dominated the entries. Even Bondi beach looks ominous. A selection of the prize-winning images.'",b'World Press Photo 2016 winners - in pictures',http://gu.com/p/4gpbh/fb,5860.0,9.0,5.0,0.0,1.0,0.0,147.0,2525.0,0.0,1.0,2016-02-18 15:30:01,1,0,0,0,0,0,0,0,1,0,201602,0,8547.0
714,717,17454,The Guardian,10513336322.0,10153960072261323,2016-02-18 00:00:00,ISLAMIST,2016-02-23 15:00:01,video,b'Fighting between Israelis and Palestinians in Gaza and a wave of antisemitic attacks across Europe coincided with a surge in assaults on Jewish targets in the UK. Phoebe Greenwood visits Prestwich in Manchester \xe2\x80\x93 home to the second largest Jewish community in the UK \xe2\x80\x93 to find out what people feel is fuelling antisemitism and what might be done to stop it',"b""'We are feeling more and more unsafe': tackling antisemitism i...""",https://www.facebook.com/theguardian/videos/10153960072261323/,538.0,0.0,1.0,1.0,18.0,4.0,243.0,221.0,0.0,1.0,2016-02-23 15:00:01,1,0,0,0,0,0,0,1,0,1,201602,0,1026.0
715,718,17526,Bild,25604775729.0,10154119653185730,2016-02-18 00:00:00,ISLAMIST,2016-02-22 17:00:01,video,b'Der Fronts\xc3\xa4nger der Eagles Of Death Metal hat sich in einem herzzerrei\xc3\x9fenden Interview zu den Terroranschl\xc3\xa4gen von Paris ge\xc3\xa4u\xc3\x9fert.',missing_value,https://www.facebook.com/bild/videos/10154119653185730/,446.0,0.0,0.0,0.0,0.0,0.0,34.0,32.0,0.0,1.0,2016-02-22 17:00:01,1,0,0,0,0,0,0,1,0,1,201602,1,512.0
716,719,17541,JUNGE FREIHEIT,13479664941.0,10154593325079942,2016-02-18 00:00:00,ISLAMIST,2016-02-23 13:19:59,link,b'Die s\xc3\xa4chsische Landesbotschaft in Berlin ist in der Nacht zum Dienstag mit Steinen beworfen worden. Dabei wurden vier Scheiben besch\xc3\xa4digt. In Bremen gab es zudem einen Anschlag auf die W\xc3\xa4hlervereinigung \xe2\x80\x9eB\xc3\xbcrger in Wut\xe2\x80\x9c. In beiden F\xc3\xa4llen ermittelt der Staatsschutz. >>',b'Anschl\xc3\xa4ge auf Sachsens Landesbotschaft und B\xc3\xbcrger in Wut',https://jungefreiheit.de/politik/deutschland/2016/anschlaege-auf-sachsens-landesbotschaft-und-buerger-in-wut/,205.0,0.0,0.0,1.0,0.0,3.0,56.0,86.0,0.0,1.0,2016-02-23 13:19:59,1,0,0,0,0,0,0,0,1,0,201602,0,351.0
717,720,17605,kabel eins,114913028545424.0,982960105074041,2016-02-25 00:00:00,SEP-REP,2016-03-02 17:24:00,video,b'Der Anschlag // HEUTE // 20:15 Uhr #BFAZ\nund im Anschluss\nAusnahmezustand // HEUTE // 22:45 Uhr bei kabel eins',missing_value,https://www.facebook.com/kabeleins/videos/982960105074041/,25.0,0.0,0.0,0.0,0.0,0.0,3.0,1.0,0.0,1.0,2016-03-02 17:24:00,0,0,0,0,1,1,0,1,0,1,201603,0,29.0
718,721,17663,Monitor,186702484702033.0,1020646424640964,2016-02-25 00:00:00,SEP-REP,2016-02-26 09:30:00,link,"b'Staatsversagen? Warum Rechtsextremismus in Sachsen besonders gedeiht\n\nSeit vergangene Woche in Clausnitz ein w\xc3\xbctender Mob Fl\xc3\xbcchtlinge ver\xc3\xa4ngstigte und Menschen in Bautzen beim Brand einer geplanten Fl\xc3\xbcchtlingsunterkunft Beifall klatschten, steht eine Frage wieder im Raum: Warum gibt es in Sachsen mehr fremdenfeindliche \xc3\x9cbergriffe als \xc3\xbcberall sonst im Land? Politikwissenschaftler machen daf\xc3\xbcr vor allem Polizei und Politik verantwortlich: die regierende CDU habe die Gefahr jahrzehntelang verharmlost und die Polizei lasse Rechtsextremisten allzu oft gew\xc3\xa4hren.\n\n#monitor #ardmonitor #wdr #daserste #ard #fl\xc3\xbcchtlinge #clausnitz #bautzen'",b'Staatsversagen? Warum Rechtsextremismus in Sachsen besonders gedeiht',http://www1.wdr.de/daserste/monitor/sendungen/rechtsextremismus-in-sachsen-102.html,187.0,0.0,0.0,0.0,3.0,24.0,53.0,66.0,0.0,1.0,2016-02-26 09:30:00,0,0,0,0,1,1,0,0,1,0,201602,0,333.0
719,722,17755,Daily Express,129617873765147.0,1107755839284674,2016-02-25 00:00:00,SEP-REP,2016-03-01 03:00:00,link,"b'""Most of the victims feel ashamed and don\'t report it to the police.""'",b'Bikini-clad women patrol swimming pools to STOP wave of horror migrant sex attacks',http://www.express.co.uk/news/world/648685/migrant-sex-attacks-Kalmar-Sweden-refugee-crisis,244.0,4.0,3.0,4.0,3.0,27.0,47.0,95.0,0.0,1.0,2016-03-01 03:00:00,0,0,0,0,1,1,0,0,1,0,201603,0,427.0
720,723,17758,Daily Express,129617873765147.0,1108755752518016,2016-02-25 00:00:00,SEP-REP,2016-03-02 17:09:35,link,b'Shocking stuff...',b'Truck driver \xe2\x80\x98speared\xe2\x80\x99 by migrant camp thugs in organised attack \xe2\x80\x93 and they\xe2\x80\x99re BRITISH',http://www.express.co.uk/news/uk/649241/truck-driver-lorry-attack-Calais-speared-British-thugs-smashed-windscreen,181.0,0.0,1.0,1.0,2.0,57.0,74.0,199.0,0.0,1.0,2016-03-02 17:09:35,0,0,0,0,1,1,0,0,1,0,201603,0,515.0
721,724,17815,The Daily Star,161612017189003.0,1264066780276849,2016-02-25 00:00:00,SEP-REP,2016-02-25 10:40:01,link,b'Booking a holiday to Spain or Portugal? Better be quick',"b""Holidays CRISIS: Spain trips to 'sell out by end of week' as terror fears grip Brits""",http://www.dailystar.co.uk/news/latest-news/496871/Spain-Portugal-sold-out-holidays-Brits-booking-trips-terror-ISIS-Syria-Egypt-Tunisia,29.0,0.0,0.0,0.0,0.0,1.0,3.0,3.0,0.0,1.0,2016-02-25 10:40:01,0,0,0,0,1,1,0,0,1,0,201602,0,36.0
722,725,17846,Sky News,164665060214766.0,1278942575453670,2016-02-25 00:00:00,SEP-REP,2016-02-27 16:30:45,video,b'Police are investigating the drive-by shooting of a well-known goose',b'Murder Most Fowl',https://www.facebook.com/skynews/videos/1278942575453670/,1213.0,2.0,5.0,26.0,326.0,257.0,355.0,633.0,0.0,1.0,2016-02-27 16:30:45,0,0,0,0,1,1,0,1,0,1,201602,0,2817.0
723,726,18134,SPIEGEL ONLINE,38246844868.0,10153971930194869,2016-02-25 00:00:00,SEP-REP,2016-02-29 13:49:07,video,"b'Der ""tortale Angriff"" auf Beatrix von Storch und seine Folgen.'",missing_value,https://www.facebook.com/spiegelonline/videos/10153971930194869/,1388.0,80.0,7.0,321.0,2.0,23.0,260.0,79.0,0.0,1.0,2016-02-29 13:49:07,0,0,0,0,1,1,0,1,0,1,201602,0,2160.0
724,727,18170,The Telegraph,143666524748.0,10154031796994749,2016-02-25 00:00:00,SEP-REP,2016-03-01 13:15:01,video,"b""This is the moment Abdul Bajandar, known as 'Tree Man, went under the knife to remove nearly 5kgs of bark-like warts from his right hand.\n\nVideo credit: Caters TV.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154031796994749/,1572.0,5.0,96.0,2.0,84.0,0.0,264.0,1029.0,0.0,1.0,2016-03-01 13:15:01,0,0,0,0,1,1,0,1,0,1,201603,0,3052.0
725,728,18198,RP ONLINE,50327854366.0,10154080105824367,2016-02-25 00:00:00,SEP-REP,2016-02-26 06:45:01,link,b'Ein Bild sagt mehr als tausend Worte.',b'Rubio attackiert Trump wegen illegaler polnischer Einwanderer',http://www.rp-online.de/politik/ausland/us-wahlen/marco-rubio-attackiert-donald-trump-wegen-polnischer-einwanderer-aid-1.5795448,7.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,2016-02-26 06:45:01,0,0,0,0,1,1,0,0,1,0,201602,0,9.0
726,729,18204,RP ONLINE,50327854366.0,10154086201129367,2016-02-25 00:00:00,SEP-REP,2016-02-28 15:03:33,link,"b'Absurdes am Sonntag: Ein Clown ""tortet"" Beatrix von Storch.'","b""AfD-Politikerin: Torten-'Anschlag' auf Beatrix von Storch""",http://www.rp-online.de/politik/deutschland/torten-anschlag-auf-afd-politikerin-beatrix-von-storch-aid-1.5799236,168.0,9.0,1.0,71.0,1.0,3.0,58.0,15.0,0.0,1.0,2016-02-28 15:03:33,0,0,0,0,1,1,0,0,1,0,201602,0,326.0
727,730,18231,JUNGE FREIHEIT,13479664941.0,10154609227049942,2016-02-25 00:00:00,SEP-REP,2016-02-29 16:28:46,link,"b'Vier tschetschenische Islamisten haben in Wien eine Frau, ihre Tochter sowie zwei von deren Freundinnen bel\xc3\xa4stigt und bedroht. Als der Familienvater und ein weiterer Passant die M\xc3\xa4nner aufhalten wollten, wurden sie von den selbsternannten \xe2\x80\x9eSittenw\xc3\xa4chtern\xe2\x80\x9c zusammengeschlagen. >>'",b'Wien: Islamische Sittenw\xc3\xa4chter verpr\xc3\xbcgeln Familienvater',https://jungefreiheit.de/politik/ausland/2016/wien-islamische-sittenwaechter-verpruegeln-familienvater/,377.0,0.0,1.0,4.0,10.0,277.0,83.0,374.0,0.0,1.0,2016-02-29 16:28:46,1,0,0,0,0,1,0,0,1,0,201602,0,1126.0
728,731,18328,Metro,117118184990145.0,1009589682409653,2016-03-04 00:00:00,SEP-REP,2016-03-05 02:00:00,link,"b""He launched a 'horrific attack' on a 'defenceless' Stephen Whitehead as he slept at work""","b""Man murdered binman with sledgehammer after he was called 'lazy'""",http://metro.co.uk/2016/03/04/man-murdered-binman-with-sledgehammer-after-he-was-called-lazy-5733905/?ito=twitter,57.0,0.0,1.0,0.0,5.0,1.0,17.0,22.0,0.0,1.0,2016-03-05 02:00:00,0,0,0,0,1,1,0,0,1,0,201603,0,103.0
729,732,18338,Metro,117118184990145.0,1011213955580559,2016-03-04 00:00:00,SEP-REP,2016-03-07 07:44:59,link,b'The incident is not thought to be related to terrorism',"b'Hostage fears after one killed, two wounded in Australia shooting'",http://metro.co.uk/2016/03/07/one-killed-two-wounded-in-australia-shooting-5737227/?ito=facebook,42.0,0.0,0.0,0.0,6.0,5.0,13.0,25.0,0.0,1.0,2016-03-07 07:44:59,0,0,0,0,1,1,0,0,1,0,201603,1,91.0
730,733,18340,Metro,117118184990145.0,1011387352229886,2016-03-04 00:00:00,SEP-REP,2016-03-07 17:00:01,link,"b""'If we all stopped reporting terrorist accounts and graphic images, Twitter would be flooded with terrorists.\xe2\x80\x99""",b'Anonymous claims Twitter is \xe2\x80\x98shutting down their accounts\xe2\x80\x99 for harassing Isis',http://metro.co.uk/2016/03/07/anonymous-claims-twitter-is-shutting-down-their-accounts-for-harassing-isis-5738405/?ito=facebook,57.0,1.0,2.0,0.0,0.0,11.0,6.0,19.0,0.0,1.0,2016-03-07 17:00:01,0,0,0,0,1,1,0,0,1,0,201603,1,96.0
731,734,18345,Metro,117118184990145.0,1011989222169699,2016-03-04 00:00:00,SEP-REP,2016-03-08 16:20:00,link,b'Food for thought',b'Today is not the day to attack Kim Kardashian over a naked picture',http://metro.co.uk/2016/03/08/today-is-not-the-day-to-attack-kim-kardashian-over-a-naked-picture-5739927/?ito=facebook,259.0,12.0,1.0,3.0,0.0,10.0,103.0,26.0,0.0,1.0,2016-03-08 16:20:00,0,0,0,0,1,1,0,0,1,0,201603,0,414.0
732,735,18361,Monitor,186702484702033.0,1026604307378509,2016-03-04 00:00:00,SEP-REP,2016-03-07 10:11:43,link,"b'MONITOR-TV-Tipp. ""Die Story im Ersten: Terror von rechts - Die neue Bedrohung"". Heute um 22:45 Uhr.'",b'Terror von rechts \xe2\x80\x93 Die neue Bedrohung | Reportage & Dokumentation',http://www.daserste.de/information/reportage-dokumentation/dokus/sendung/terror-von-rechts-die-neue-bedrohung-100.html#,268.0,0.0,1.0,2.0,15.0,48.0,67.0,201.0,0.0,1.0,2016-03-07 10:11:43,0,0,0,0,1,1,0,0,1,0,201603,1,602.0
733,736,18394,The Mail,159113120793522.0,1034118489959643,2016-03-04 00:00:00,SEP-REP,2016-03-06 16:42:46,photo,b'Cumbria Police appeal for information following three attempted knife-point robberies\nhttp://www.nwemail.co.uk/news/Cumbria-Police-appeal-for-information-following-three-attempted-knife-point-robberies-50e641ba-91b1-4b2e-a861-00392598082e-ds',b'Timeline Photos',https://www.facebook.com/northwesteveningmail/photos/a.159657454072422.27971.159113120793522/1034118489959643/?type=3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2016-03-06 16:42:46,0,0,0,0,1,1,1,0,0,2,201603,0,0.0
734,737,18396,The Mail,159113120793522.0,1035177073187118,2016-03-04 00:00:00,SEP-REP,2016-03-08 16:22:12,photo,"b""Barrow man jailed for 'savage attack'\nhttp://www.nwemail.co.uk/news/barrow/Barrow-man-jailed-for-savage-attack-0d106a3a-40b4-4840-ad1a-421a098155db-ds""",b'Timeline Photos',https://www.facebook.com/northwesteveningmail/photos/a.159657454072422.27971.159113120793522/1035177073187118/?type=3,3.0,0.0,0.0,0.0,0.0,0.0,12.0,3.0,0.0,1.0,2016-03-08 16:22:12,0,0,0,0,1,1,1,0,0,2,201603,0,18.0
735,738,18456,Daily Express,129617873765147.0,1110138465713078,2016-03-04 00:00:00,SEP-REP,2016-03-04 16:29:33,photo,"b""ISIS is 'plotting a series of terror attacks in the United States' because it wants to engineer a TRUMP victory\n\nFull story: http://bit.ly/1OVcApY""",b'Timeline Photos',https://www.facebook.com/DailyExpress/photos/a.139761349417466.25756.129617873765147/1110138465713078/?type=3,77.0,1.0,2.0,2.0,1.0,0.0,33.0,22.0,0.0,1.0,2016-03-04 16:29:33,0,0,0,0,1,1,1,0,0,2,201603,1,138.0
736,739,18457,Daily Express,129617873765147.0,1110167192376872,2016-03-04 00:00:00,SEP-REP,2016-03-04 17:26:39,link,b'Two men were also injured trying to stop the attack',b'BREAKING: Pregnant woman fighting for her life after being stabbed in busy town centre',http://www.express.co.uk/news/uk/649910/Pregnant-woman-critical-after-being-stabbed-in-Sainsburys-Sutton-Coldfield,102.0,1.0,1.0,0.0,6.0,22.0,8.0,36.0,0.0,1.0,2016-03-04 17:26:39,0,0,0,0,1,1,0,0,1,0,201603,0,176.0
737,740,18500,Daily Mail,164305410295882.0,1213716478688098,2016-03-04 00:00:00,SEP-REP,2016-03-08 16:15:12,video,b'He murdered two teachers and a pupil during racist hate attack',"b""CCTV shows 'Darth Vader' killer prowling corridors of Swedish school""",http://dailym.ai/1Xa0Dmj,177.0,1.0,4.0,2.0,13.0,13.0,66.0,60.0,0.0,1.0,2016-03-08 16:15:12,0,0,0,0,1,1,0,1,0,1,201603,0,336.0
738,741,18547,The Daily Star,161612017189003.0,1272817152735145,2016-03-04 00:00:00,SEP-REP,2016-03-08 13:15:00,link,"b""It really isn't a laughing matter""","b""'Disgusting' suicide bomber taxi prank leaves passengers fearing ISIS attack""",http://www.dailystar.co.uk/news/latest-news/499632/Suicide-bomber-taxi-prank-video-Saudi-Arabia-arabic-YouTube-Al-Alam,127.0,0.0,0.0,6.0,0.0,4.0,16.0,21.0,0.0,1.0,2016-03-08 13:15:00,0,0,0,0,1,1,0,0,1,0,201603,0,174.0
739,742,18572,Sky News,164665060214766.0,1288080764539851,2016-03-04 00:00:00,SEP-REP,2016-03-09 19:30:40,video,b'This is the ex-IS militant who provided Sky News with the details of thousands of jihadis and their families',b'Ex-IS Militant Provided Details Cache',https://www.facebook.com/skynews/videos/1288080764539851/,1591.0,22.0,17.0,19.0,4.0,11.0,151.0,892.0,0.0,1.0,2016-03-09 19:30:40,1,0,0,0,0,1,0,1,0,1,201603,0,2707.0
740,743,18614,The Sun,161385360554578.0,1366276003398835,2016-03-04 00:00:00,SEP-REP,2016-03-06 17:20:01,link,b'Cops have launched a manhunt for the killer.',"b""Murderer who stabbed victim in chest with 'large knife' on the loose""",http://thesun.uk/6183BeMhR,189.0,1.0,19.0,0.0,18.0,8.0,30.0,379.0,0.0,1.0,2016-03-06 17:20:01,0,0,0,0,1,1,0,0,1,0,201603,0,644.0
741,744,18636,The Sun,161385360554578.0,1369352379757864,2016-03-04 00:00:00,SEP-REP,2016-03-09 22:30:03,link,"b'\xe2\x80\x9cWe will kill, slaughter and burn your people.""'",b'English speaking ISIS thug vows America will suffer a Paris-style attack soon',http://thesun.uk/6184BesVI,71.0,0.0,2.0,2.0,5.0,15.0,39.0,36.0,0.0,1.0,2016-03-09 22:30:03,0,0,0,0,1,1,0,0,1,0,201603,0,170.0
742,745,18657,WAZ,117194401183.0,10153223935201184,2016-03-04 00:00:00,SEP-REP,2016-03-08 08:41:51,link,"b'Glaubt Ihr, dass h\xc3\xa4rtere Strafen etwas an den ansteigenden Angriffen auf Polizisten ver\xc3\xa4ndern?'",b'220 \xc3\x9cbergriffe auf Polizisten - H\xc3\xa4rtere Strafen gefordert',http://www.derwesten.de/staedte/duisburg/article11630577.ece,93.0,0.0,0.0,0.0,3.0,8.0,22.0,15.0,0.0,1.0,2016-03-08 08:41:51,0,0,0,0,1,1,0,0,1,0,201603,0,141.0
743,746,18665,Channel 4,273250047329.0,10153265582257330,2016-03-04 00:00:00,SEP-REP,2016-03-09 14:00:01,video,"b'\xe2\x80\x9cI was brought up on disability benefits, my Dad was disabled\xe2\x80\xa6and I can remember the terror every time we went for an assessment.\xe2\x80\x9d\n \nCaitlin Moran and The Last Leg\xe2\x80\x99s Alex Brooker share their views on potential cuts to the Employment and Support Allowance for the disabled.'",missing_value,https://www.facebook.com/Channel4/videos/10153265582257330/,65.0,1.0,0.0,2.0,0.0,1.0,5.0,48.0,0.0,1.0,2016-03-09 14:00:01,0,0,0,0,1,1,0,1,0,1,201603,1,122.0
744,747,18807,Channel 4 News,6622931938.0,10153571908641939,2016-03-04 00:00:00,SEP-REP,2016-03-10 13:42:42,video,"b""A gun-loving Florida mother was shot by her 4-year-old son this week.\n\nBut it's not the first instance of child shootings in America.""",b'Florida mum shot by child',https://www.facebook.com/Channel4News/videos/10153571908641939/,958.0,5.0,22.0,131.0,79.0,52.0,358.0,680.0,0.0,1.0,2016-03-10 13:42:42,0,0,0,0,1,1,0,1,0,1,201603,0,2285.0
745,748,18964,The Telegraph,143666524748.0,10154052810774749,2016-03-04 00:00:00,SEP-REP,2016-03-08 13:51:21,link,b'Charlie Sheen - who appears alongside Whoopi Goldberg in the film - has always raised questions about the legitimacy of the 9/11 attacks.',b'Known 9/11 conspiracy theorist Charlie Sheen is starring in a film about 9/11',http://tgr.ph/YeSnti,181.0,2.0,1.0,2.0,0.0,6.0,35.0,17.0,0.0,1.0,2016-03-08 13:51:21,0,0,0,0,1,1,0,0,1,0,201603,0,244.0
746,749,19004,Daily Mirror,6149699161.0,10154082579944162,2016-03-04 00:00:00,SEP-REP,2016-03-05 08:00:00,link,b'The mother is still in a critical condition.',"b""Baby of pregnant woman stabbed in daytime attack is born 'alive and healthy'""",http://www.mirror.co.uk/news/uk-news/baby-heavily-pregnant-woman-stabbed-7498179?ICID=FB_mirror_main,1218.0,57.0,8.0,0.0,75.0,12.0,71.0,166.0,0.0,1.0,2016-03-05 08:00:00,0,0,0,0,1,1,0,0,1,0,201603,0,1607.0
747,750,19016,Daily Mirror,6149699161.0,10154086813409162,2016-03-04 00:00:00,SEP-REP,2016-03-06 20:00:00,link,b'Both mother and baby thankfully survived the shocking attack.',b'Man charged with attempted murder after heavily pregnant woman stabbed identified',http://www.mirror.co.uk/news/uk-news/first-picture-company-director-charged-7507708?ICID=FB_mirror_main,248.0,1.0,3.0,0.0,0.0,45.0,49.0,174.0,0.0,1.0,2016-03-06 20:00:00,0,0,0,0,1,1,0,0,1,0,201603,0,520.0
748,751,19107,junge Welt,123292927706635.0,963782800324306,2016-03-22 00:00:00,ISLAMIST,2016-03-23 15:30:00,status,"b'Zitat des Tages\n\n""Wir m\xc3\xbcssen uns damit abfinden, dass diese Ideologie stark ist.""\n\nDer \xc2\xbbTerrorismusexperte\xc2\xab Guido Steinberg am Dienstag im Gespr\xc3\xa4ch mit dem Sender N-TV anl\xc3\xa4sslich der Terroranschl\xc3\xa4ge in Br\xc3\xbcssel \xc3\xbcber den Dschihadismus'",missing_value,missing_value,6.0,0.0,0.0,0.0,0.0,1.0,3.0,1.0,135.0,17.0,2016-03-23 15:30:00,1,0,0,0,0,0,0,0,0,0,201603,1,11.0
749,752,19115,Süddeutsche Zeitung,215982125159841.0,998228633601849,2016-03-22 00:00:00,ISLAMIST,2016-03-25 14:43:10,link,"b'Jan B\xc3\xb6hmermann bereichert die Diskussion \xc3\xbcber den Terror, kommentiert unser JETZT-Kollege Jakob Biazza.'","b'\xe2\x80\x9eWer Menschen mit Bomben t\xc3\xb6ten will, dem wird das immer gelingen.\xe2\x80\x9c'",http://www.jetzt.de/terroranschlaege-in-bruessel/jan-boehmermann-ueber-die-anschlaege-von-bruessel,545.0,1.0,0.0,3.0,3.0,1.0,31.0,53.0,135.0,17.0,2016-03-25 14:43:10,1,0,0,0,0,0,0,0,1,0,201603,1,637.0
750,753,19142,Metro,117118184990145.0,1022617811106840,2016-03-22 00:00:00,ISLAMIST,2016-03-22 11:36:41,link,b'The Brussels terror attacks have left at least 25 people dead',b'People are changing their profile pictures to support Belgium',http://metro.co.uk/2016/03/22/brussels-attacks-people-are-changing-their-profile-pictures-to-support-belgium-5767834/?ito=facebook,814.0,7.0,3.0,1.0,187.0,43.0,128.0,323.0,135.0,17.0,2016-03-22 11:36:41,1,0,0,0,0,0,0,0,1,0,201603,1,1506.0
751,754,19143,Metro,117118184990145.0,1022665817768706,2016-03-22 00:00:00,ISLAMIST,2016-03-22 13:00:01,link,b'At least 34 people are thought to have died in the attacks',b'Jeremy Kyle fans slammed for complaining show was cancelled in wake of Brussels',http://metro.co.uk/2016/03/22/the-jeremy-kyle-show-fans-slammed-for-complaining-it-was-cancelled-in-wake-of-brussels-attacks-5767710/?ito=facebook,158.0,0.0,19.0,6.0,2.0,73.0,203.0,105.0,135.0,17.0,2016-03-22 13:00:01,1,0,0,0,0,0,0,0,1,0,201603,0,566.0
752,755,19145,Metro,117118184990145.0,1023120957723192,2016-03-22 00:00:00,ISLAMIST,2016-03-22 22:00:00,link,b'The terror group has claimed responsibility for the attacks',"b""Brussels Attacks: ISIS vows to bring 'dark days' to UK and allies""",http://metro.co.uk/2016/03/22/brussels-attacks-isis-vows-to-bring-dark-days-to-uk-and-its-allies-5769216/,165.0,0.0,1.0,1.0,44.0,105.0,104.0,199.0,135.0,17.0,2016-03-22 22:00:00,1,0,0,0,0,0,0,0,1,0,201603,1,619.0
753,756,19146,Metro,117118184990145.0,1024044864297468,2016-03-22 00:00:00,ISLAMIST,2016-03-23 20:00:00,link,b'He pulled seven people to safety',b'Heroic luggage handler helped the wounded to safety during Brussels attacks',http://metro.co.uk/2016/03/23/heroic-luggage-handler-helped-wounded-people-to-safety-during-brussels-airport-bombing-5770956/,773.0,70.0,6.0,0.0,2.0,0.0,22.0,59.0,135.0,17.0,2016-03-23 20:00:00,1,0,0,0,0,0,0,0,1,0,201603,0,932.0
754,757,19158,Monitor,186702484702033.0,1036904863015120,2016-03-22 00:00:00,ISLAMIST,2016-03-23 13:08:52,status,"b'Wann werden wir es endlich begreifen? Wir werden den Terror nicht besiegen, solange wir Kriege gegen ihn f\xc3\xbchren. Im Gegenteil: Wir machen ihn dadurch nur st\xc3\xa4rker.\n\nGR'",missing_value,missing_value,1473.0,3.0,0.0,2.0,43.0,19.0,124.0,224.0,135.0,17.0,2016-03-23 13:08:52,1,0,0,0,0,0,0,0,0,0,201603,1,1888.0
755,758,19200,London Evening Standard,165348596842143.0,1118762911500702,2016-03-22 00:00:00,ISLAMIST,2016-03-22 09:30:32,video,b'Everything we know about the Brussels attacks:',b'Brussels attacks',https://www.facebook.com/eveningstandard/videos/1118762911500702/,698.0,2.0,9.0,1.0,132.0,114.0,54.0,409.0,135.0,17.0,2016-03-22 09:30:32,1,0,0,0,0,0,0,1,0,1,201603,0,1419.0
756,759,19208,London Evening Standard,165348596842143.0,1122157507827909,2016-03-22 00:00:00,ISLAMIST,2016-03-25 13:32:22,link,b'BREAKING: Reports of explosions and gunfire during an anti-terror raid at a house in Brussels',"b""Reports of 'explosion' during anti-terror raid in Brussels district""",https://www.standard.co.uk/news/world/brussels-attacks-explosion-heard-during-antiterror-raid-on-house-in-schaerbeek-a3211711.html,88.0,0.0,3.0,1.0,8.0,2.0,6.0,27.0,135.0,17.0,2016-03-25 13:32:22,1,0,0,0,0,0,0,0,1,0,201603,1,135.0
757,760,19213,Daily Express,129617873765147.0,1124712907588967,2016-03-22 00:00:00,ISLAMIST,2016-03-22 14:01:13,link,b'This Morning controversy...',"b""Phillip Schofield defends This Morning as show's blasted for airing amid Belgium attacks""",http://www.express.co.uk/showbiz/tv-radio/654622/Phillip-Schofield-defends-This-Morning-Brussels-terror-attack-Holly-Willoughby,178.0,0.0,0.0,0.0,6.0,15.0,78.0,42.0,135.0,17.0,2016-03-22 14:01:13,1,0,0,0,0,0,0,0,1,0,201603,0,319.0
758,761,19214,Daily Express,129617873765147.0,1125073370886254,2016-03-22 00:00:00,ISLAMIST,2016-03-22 19:13:13,link,b'Twisted ISIS threatens Britain in shocking new statement',"b""TERROR WARNING: ISIS threatens attack on UK and says it will be 'harder and more bitter'""",http://www.express.co.uk/news/world/654749/ISIS-dark-days-West-retaliates-Brussels-attacks,321.0,1.0,4.0,2.0,22.0,136.0,170.0,659.0,135.0,17.0,2016-03-22 19:13:13,1,0,0,0,0,0,0,0,1,0,201603,0,1315.0
759,762,19215,Daily Express,129617873765147.0,1125839550809636,2016-03-22 00:00:00,ISLAMIST,2016-03-23 10:52:00,link,"b'Donald J. Trump: ""Brussels is now an armed camp""'",b'\xe2\x80\x98I would hit ISIS so hard\xe2\x80\x99 Donald Trump erupts after Brussels terror attack',http://www.express.co.uk/news/uk/654897/Brussels-Belgium-ISIS-Donald-Trump-attack-terror,730.0,36.0,2.0,7.0,1.0,14.0,116.0,150.0,135.0,17.0,2016-03-23 10:52:00,1,0,0,0,0,0,0,0,1,0,201603,0,1056.0
760,763,19216,Daily Express,129617873765147.0,1126415157418742,2016-03-22 00:00:00,ISLAMIST,2016-03-23 20:48:00,link,b'WARNING: The UK cities most at risk of an ISIS attack',"b""REVEALED: The UK cities which could be next in evil ISIS' sights after Brussels bombing""",http://www.express.co.uk/news/uk/655108/Brussels-attacks-UK-cities-Islamic-State-ISIS-jihadis-terror-attacks,296.0,3.0,5.0,2.0,17.0,63.0,88.0,393.0,135.0,17.0,2016-03-23 20:48:00,1,0,0,0,0,0,0,0,1,0,201603,0,867.0
761,764,19218,Daily Express,129617873765147.0,1126965017363756,2016-03-22 00:00:00,ISLAMIST,2016-03-24 09:54:10,link,b'BREAKING NEWS: Paris attacks suspect to FACE JUSTICE as he changes his mind on fighting extradition to France',b'BREAKING: Paris attacks suspect Salah Abdeslam will NOT fight extradition to France',http://www.express.co.uk/news/world/655221/Paris-attacks-ISIS-suspect-Salah-Abdeslam-will-NOT-fight-extradition-to-France,130.0,0.0,1.0,4.0,0.0,21.0,61.0,72.0,135.0,17.0,2016-03-24 09:54:10,1,0,0,0,0,0,0,0,1,0,201603,0,289.0
762,765,19229,City AM,213682385348579.0,1151614588222016,2016-03-22 00:00:00,ISLAMIST,2016-03-22 09:47:00,link,b'Everything you need to know about what is happening in Belgium right now',b'Brussels Airport and Metro attacks: The latest',http://www.cityam.com/237320/brussels-airport-evacuated-after-two-explosions-heard,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,135.0,17.0,2016-03-22 09:47:00,1,0,0,0,0,0,0,0,1,0,201603,0,1.0
763,766,19233,RTL,179133132098813.0,1155815077763942,2016-03-22 00:00:00,ISLAMIST,2016-03-23 14:41:53,link,"b'Es scheint, als w\xc3\xbcrde der Terror Mason durch die Welt folgen: Drei Mal schon kam er mit Bombenanschl\xc3\xa4gen in Ber\xc3\xbchrung.'","b'Mason Wells (19) \xc3\xbcberlebt Br\xc3\xbcssel-Attentat: ""Das ist sein dritter Terroranschlag""'",http://rtlnext.rtl.de/cms/mason-wells-19-ueberlebt-bruessel-attentat-das-ist-sein-dritter-terroranschlag-2799392.html,320.0,4.0,51.0,0.0,24.0,1.0,54.0,39.0,135.0,17.0,2016-03-23 14:41:53,1,0,0,0,0,0,0,0,1,0,201603,1,493.0
764,767,19246,The Times and The Sunday Times,147384458624178.0,1235572726472007,2016-03-22 00:00:00,ISLAMIST,2016-03-22 17:45:07,link,b'UPDATE: CCTV footage has emerged of the terror cell suspected to have killed 14 people in suicide and suitcase bomb attacks at Brussels airport this morning',b'Brussels attacks: CCTV \xe2\x80\x98shows suspects\xe2\x80\x99',http://thetim.es/1Rhkhvj,15.0,0.0,0.0,0.0,1.0,3.0,5.0,5.0,135.0,17.0,2016-03-22 17:45:07,1,0,0,0,0,0,0,0,1,0,201603,1,29.0
765,768,19276,Daily Mail,164305410295882.0,1254905124569233,2016-03-22 00:00:00,ISLAMIST,2016-03-26 09:00:23,video,b'The brutal attack was all captured in a horrifying surveillance video.',b'Horrifying moment a British tourist is fatally stabbed in the head',http://dailym.ai/1q74fuU,199.0,0.0,1.0,2.0,80.0,47.0,74.0,66.0,135.0,17.0,2016-03-26 09:00:23,1,0,0,0,0,0,0,1,0,1,201603,0,469.0
766,769,19286,The Daily Star,161612017189003.0,1284450911571769,2016-03-22 00:00:00,ISLAMIST,2016-03-23 00:05:00,photo,b'Because terrorists will never take away our humour #Brussels',b'Timeline Photos',https://www.facebook.com/thedailystar/photos/a.196941016989436.61840.161612017189003/1284450911571769/?type=3,145.0,2.0,0.0,2.0,1.0,1.0,21.0,24.0,135.0,17.0,2016-03-23 00:05:00,1,0,0,0,0,0,1,0,0,2,201603,1,196.0
767,770,19289,The Daily Star,161612017189003.0,1285072214842972,2016-03-22 00:00:00,ISLAMIST,2016-03-23 11:43:00,link,b'UPDATE: Belgium media say Brussels bomb-maker is still on the run',b'Brussels attacks bomb-maker STILL AT LARGE as another suspect arrested',http://www.dailystar.co.uk/news/latest-news/502888/Photo-Brussels-attacks-suspects-Belgium-police-terror,35.0,0.0,0.0,0.0,0.0,0.0,1.0,6.0,135.0,17.0,2016-03-23 11:43:00,1,0,0,0,0,0,0,0,1,0,201603,0,42.0
768,771,19295,The Daily Star,161612017189003.0,1287267831290077,2016-03-22 00:00:00,ISLAMIST,2016-03-25 10:15:00,link,b'How did no one spot this?',"b""Aldi forced to change 'offensive' paint name after sex attack victim complains""",http://www.dailystar.co.uk/news/latest-news/503523/Aldi-paint-decorating-rapeseed-rape-yellow-Coventry-sex-attack-victim-complaint,96.0,1.0,3.0,9.0,0.0,0.0,71.0,24.0,135.0,17.0,2016-03-25 10:15:00,1,0,0,0,0,0,0,0,1,0,201603,0,204.0
769,772,19302,Sky News,164665060214766.0,1300516809962913,2016-03-22 00:00:00,ISLAMIST,2016-03-22 09:54:08,video,b'Footage has emerged of people going into the tunnel at the Maalbeek metro in Brussels. #BrusselsAttack',b'Inside The Tunnels Of The Maalbeek Metro',https://www.facebook.com/skynews/videos/1300516809962913/,796.0,1.0,10.0,1.0,197.0,138.0,133.0,609.0,135.0,17.0,2016-03-22 09:54:08,1,0,0,0,0,0,0,1,0,1,201603,0,1885.0
770,773,19303,Sky News,164665060214766.0,1300785873269340,2016-03-22 00:00:00,ISLAMIST,2016-03-22 14:56:13,video,"b'""You just feel a wave, an explosion... go through your whole body"": Witnesses\' stories from the #BrusselsAttacks'",b'Brussels Attacks: Witnesses Stories',https://www.facebook.com/skynews/videos/1300785873269340/,3306.0,5.0,18.0,2.0,1087.0,391.0,375.0,3046.0,135.0,17.0,2016-03-22 14:56:13,1,0,0,0,0,0,0,1,0,1,201603,0,8230.0
771,774,19304,Sky News,164665060214766.0,1300915139923080,2016-03-22 00:00:00,ISLAMIST,2016-03-22 16:54:05,photo,b'Brussels has been rocked by a series explosions.\n\nSee more at http://news.sky.com/gallery/1664471/brussels-airport-hit-by-blasts',b'Terror attacks across Brussels',https://www.facebook.com/skynews/photos/a.1300785046602756.1073741848.164665060214766/1300791466602114/?type=3,737.0,1.0,4.0,2.0,262.0,145.0,137.0,366.0,135.0,17.0,2016-03-22 16:54:05,1,0,0,0,0,0,1,0,0,2,201603,0,1654.0
772,775,19306,Sky News,164665060214766.0,1302330826448178,2016-03-22 00:00:00,ISLAMIST,2016-03-23 18:40:00,video,b'Two men are facing long prison terms over an Islamic State-funded drive-by gun attack planned for London',b'Drive-By Terror Plan In London',https://www.facebook.com/skynews/videos/1302330826448178/,2551.0,12.0,29.0,45.0,16.0,467.0,823.0,2074.0,135.0,17.0,2016-03-23 18:40:00,1,0,0,0,0,0,0,1,0,1,201603,0,6017.0
773,776,19349,The Sun,161385360554578.0,1382144515145317,2016-03-22 00:00:00,ISLAMIST,2016-03-22 03:30:03,link,b'How can the owner just sit there?!',b'Sickening moment massive python attacks and kills helpless puppy',http://thesun.uk/6189Bggzl,204.0,1.0,6.0,0.0,140.0,464.0,557.0,249.0,135.0,17.0,2016-03-22 03:30:03,1,0,0,0,0,0,0,0,1,0,201603,0,1621.0
774,777,19359,The Sun,161385360554578.0,1383243701702065,2016-03-22 00:00:00,ISLAMIST,2016-03-22 22:39:01,photo,"b""Here's tomorrow's front page - the awful Brussels terror attacks""",b'Timeline Photos',https://www.facebook.com/thesun/photos/a.189503717742742.57432.161385360554578/1383243701702065/?type=3,42.0,0.0,1.0,0.0,7.0,4.0,24.0,18.0,135.0,17.0,2016-03-22 22:39:01,1,0,0,0,0,0,1,0,0,2,201603,1,96.0
775,778,19368,The Sun,161385360554578.0,1385100848183017,2016-03-22 00:00:00,ISLAMIST,2016-03-24 09:00:02,link,b'This is truly harrowing and we do warn you that it contains disturbing images',b'Horrific aftermath of Brussels attack caught on film',http://thesun.uk/6181BghD7,122.0,0.0,1.0,1.0,61.0,10.0,50.0,96.0,135.0,17.0,2016-03-24 09:00:02,1,0,0,0,0,0,0,0,1,0,201603,0,341.0
776,779,19382,Mirror Politics,1542228052683519.0,1684011205171869,2016-03-22 00:00:00,ISLAMIST,2016-03-22 10:36:19,video,"b'They\'ve been branded ""vile"".'","b""Fury as Ukip and Allison Pearson score anti-EU points from 'jihad HQ' Brussels""",http://www.mirror.co.uk/news/uk-news/brussels-explosions-prompt-furious-row-7605648,24.0,0.0,0.0,0.0,0.0,15.0,9.0,31.0,135.0,17.0,2016-03-22 10:36:19,1,0,0,0,0,0,0,1,0,1,201603,0,79.0
777,780,19414,Daily Telegraph,110032161104.0,10153324991996105,2016-03-22 00:00:00,ISLAMIST,2016-03-22 22:56:49,video,"b""VIDEO: The world joins together to support Belgium following the devastating terror attacks. Sydney's Bondi Beach is just one of many places uniting in solidarity. #PrayForBelgium <3""",missing_value,https://www.facebook.com/dailytelegraph/videos/10153324991996105/,291.0,17.0,0.0,1.0,32.0,0.0,22.0,81.0,135.0,17.0,2016-03-22 22:56:49,1,0,0,0,0,0,0,1,0,1,201603,1,444.0
778,781,19417,Daily Telegraph,110032161104.0,10153325772171105,2016-03-22 00:00:00,ISLAMIST,2016-03-23 03:53:59,video,b'VIDEO: How the attacks in Belgium link to the ISIS Batlacan massacre.',missing_value,https://www.facebook.com/dailytelegraph/videos/10153325772171105/,102.0,0.0,0.0,0.0,18.0,1.0,14.0,37.0,135.0,17.0,2016-03-23 03:53:59,1,0,0,0,0,0,0,1,0,1,201603,0,172.0
779,782,19426,ARD,48219766388.0,10153365351851389,2016-03-22 00:00:00,ISLAMIST,2016-03-22 21:45:07,video,b'Angriff auf das Herz Europas \xe2\x80\x93 Schutzlos gegen den Terror? hart aber fair extra: Angriff auf das Herz Europas \xe2\x80\x93 Schutzlos gegen den Terror?',b'Livestream: hart aber fair - extra',http://www.ardmediathek.de/tv/Das-Erste/live?kanal=208,4.0,1.0,0.0,0.0,1.0,2.0,31.0,1.0,135.0,17.0,2016-03-22 21:45:07,1,0,0,0,0,0,0,1,0,1,201603,1,40.0
780,783,19444,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153406124610976,2016-03-22 00:00:00,ISLAMIST,2016-03-24 10:31:01,photo,b'An diesen Orten haben IS-Terroristen und Sympathisanten seit 2014 Anschl\xc3\xa4ge ver\xc3\xbcbt: faz.net/-gpf-8bzq6#GEPC;s6',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153406124610976/?type=3,10.0,0.0,3.0,0.0,0.0,0.0,13.0,10.0,135.0,17.0,2016-03-24 10:31:01,1,0,0,0,0,0,1,0,0,2,201603,1,36.0
781,784,19447,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153410758110976,2016-03-22 00:00:00,ISLAMIST,2016-03-25 18:20:00,photo,b'Im Kampf gegen den internationalen Terrorismus muss es europ\xc3\xa4ische L\xc3\xb6sungen geben. faz.net/-gpf-8f6o4#GEPC;s6',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153410758110976/?type=3,52.0,0.0,0.0,1.0,0.0,1.0,31.0,2.0,135.0,17.0,2016-03-25 18:20:00,1,0,0,0,0,0,1,0,0,2,201603,1,87.0
782,785,19458,BBC News,228735667216.0,10153481110437217,2016-03-22 00:00:00,ISLAMIST,2016-03-23 07:45:36,video,b'Police interrogation transcripts show how so-called Islamic State plotted attacks on Europe. #Panorama #Brussels \n\nbbc.in/1T5WOj3',missing_value,https://www.facebook.com/bbcnews/videos/10153481110437217/,1026.0,0.0,4.0,2.0,56.0,104.0,112.0,189.0,135.0,17.0,2016-03-23 07:45:36,1,0,0,0,0,0,0,1,0,1,201603,0,1493.0
783,786,19459,BBC News,228735667216.0,10153481151042217,2016-03-22 00:00:00,ISLAMIST,2016-03-23 08:01:44,video,"b'""We are anything but afraid.""\n\nBelgians are leaving chalk messages of hope: http://bbc.in/1Pqk4kW'",b'Brussels attacks: Chalk messages of love',https://www.facebook.com/bbcnews/videos/10153481151042217/,6578.0,417.0,11.0,7.0,452.0,7.0,270.0,1200.0,135.0,17.0,2016-03-23 08:01:44,1,0,0,0,0,0,0,1,0,1,201603,0,8942.0
784,787,19460,BBC News,228735667216.0,10153481554622217,2016-03-22 00:00:00,ISLAMIST,2016-03-23 11:11:41,video,"b""A minute's silence is held as Belgium observes three days of mourning after #Brussels attacks.\n\nLive coverage: http://bbc.in/21ENlj8""",b'Belgium falls silent',https://www.facebook.com/bbcnews/videos/10153481554622217/,6765.0,196.0,3.0,6.0,1410.0,26.0,326.0,947.0,135.0,17.0,2016-03-23 11:11:41,1,0,0,0,0,0,0,1,0,1,201603,0,9679.0
785,788,19461,BBC News,228735667216.0,10153482032772217,2016-03-22 00:00:00,ISLAMIST,2016-03-23 14:34:05,video,b'We were live at Zaventem airport in Brussels - the scene of one of the attacks that has killed at least 31 people in the Belgian capital. Our correspondent Gavin Lee answered your questions on the investigation and met a survivor of the #BrusselsAttacks.',missing_value,https://www.facebook.com/bbcnews/videos/10153482032772217/,6359.0,14.0,57.0,6.0,561.0,32.0,2313.0,864.0,135.0,17.0,2016-03-23 14:34:05,1,0,0,0,0,0,0,1,0,1,201603,0,10206.0
786,789,19469,KSTA,141063022950.0,10153522152442951,2016-03-22 00:00:00,ISLAMIST,2016-03-23 09:44:17,photo,b'Keine Angst. Kein Hass. Kein Terror. #aufdieLiebe \xf0\x9f\x92\x95 \nAuf Facebook und Twitter setzte sich als Antwort auf den Terror in Br\xc3\xbcssel eine einfache und sch\xc3\xb6ne Geste durch: http://goo.gl/M6hzRq',b'Timeline Photos',https://www.facebook.com/ksta.fb/photos/a.179305432950.122725.141063022950/10153522152442951/?type=3,241.0,27.0,0.0,0.0,0.0,0.0,7.0,43.0,135.0,17.0,2016-03-23 09:44:17,1,0,0,0,0,0,1,0,0,2,201603,1,318.0
787,790,19516,Channel 4 News,6622931938.0,10153611944816939,2016-03-22 00:00:00,ISLAMIST,2016-03-22 15:49:09,video,"b'10,000 Indonesian taxi drivers have blocked off major roads and attacked other vehicles in protest against Uber.\n \nThey\xe2\x80\x99re angry that the app is one of those given government backing \xe2\x80\x93 and they fear it could put them out of a job.'",b'Striking taxi drivers turn violent',https://www.facebook.com/Channel4News/videos/10153611944816939/,411.0,3.0,25.0,6.0,3.0,13.0,120.0,442.0,135.0,17.0,2016-03-22 15:49:09,1,0,0,0,0,0,0,1,0,1,201603,0,1023.0
788,791,19517,Channel 4 News,6622931938.0,10153612954561939,2016-03-22 00:00:00,ISLAMIST,2016-03-22 21:47:27,video,b'In the wake of the Brussels terror attacks the people of the city have gathered together sharing messages of hope and solidarity.',missing_value,https://www.facebook.com/Channel4News/videos/10153612954561939/,3635.0,99.0,3.0,6.0,684.0,26.0,259.0,1185.0,135.0,17.0,2016-03-22 21:47:27,1,0,0,0,0,0,0,1,0,1,201603,1,5897.0
789,792,19519,Channel 4 News,6622931938.0,10153615802551939,2016-03-22 00:00:00,ISLAMIST,2016-03-23 16:13:43,video,"b'David Cameron attacks the Labour party over anti-Semitism, telling Jeremy Corbyn to ""sort it out"".\n\nConservative MP Mike Freer MP had asked the Prime Minister whether ""all organisations public and private should root out anti-Semitism without hesitation?""\n\nMr Corbyn says he \xe2\x80\x9cabsolutely condemns\xe2\x80\x9d discrimination against Jews, after a Labour activist was suspended over the issue.'","b'Cameron tells Corbyn to ""sort out"" anti-Semitism'",https://www.facebook.com/Channel4News/videos/10153615802551939/,324.0,9.0,0.0,10.0,2.0,27.0,199.0,136.0,135.0,17.0,2016-03-23 16:13:43,1,0,0,0,0,0,0,1,0,1,201603,0,707.0
790,793,19524,ITV News,148007467671.0,10153624820842672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 10:08:50,video,"b'A series of explosions have hit Brussels Airport and a metro station, with many killed.\n\nLive updates here: http://bit.ly/1Povh5A'",b'Brussels attacks: Explosions at airport and metro',https://www.facebook.com/itvnews/videos/10153624820842672/,488.0,1.0,9.0,0.0,371.0,229.0,210.0,1238.0,135.0,17.0,2016-03-22 10:08:50,1,0,0,0,0,0,0,1,0,1,201603,0,2546.0
791,794,19525,ITV News,148007467671.0,10153625178202672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 13:08:50,video,"b'David Cameron says ""we need to stand together"" against terrorists as he condemns the savage Brussels attacks.\n\nFor more from Cameron: http://bit.ly/1MzyoYC'",b'Cameron: We need to stand together against terrorists',https://www.facebook.com/itvnews/videos/10153625178202672/,511.0,5.0,0.0,3.0,34.0,46.0,543.0,140.0,135.0,17.0,2016-03-22 13:08:50,1,0,0,0,0,0,0,1,0,1,201603,1,1282.0
792,795,19528,ITV News,148007467671.0,10153625645262672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 16:26:27,video,"b'Barack Obama says the world ""must unite"" in the fight ""against the scourge of terrorism"" after the Brussels attacks.\n\nLatest updates: http://bit.ly/1MkAK2E'",b'Obama: The world must unite against terrorists',https://www.facebook.com/itvnews/videos/10153625645262672/,252.0,10.0,0.0,4.0,16.0,3.0,58.0,18.0,135.0,17.0,2016-03-22 16:26:27,1,0,0,0,0,0,0,1,0,1,201603,1,361.0
793,796,19529,ITV News,148007467671.0,10153625683462672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 16:51:15,video,b'In this haunting video a child is heard crying as people are evacuated from a metro train amid the Brussels attacks.',b'Brussels attacks: Haunting video shows evacuation',https://www.facebook.com/itvnews/videos/10153625683462672/,179.0,2.0,2.0,1.0,207.0,71.0,105.0,122.0,135.0,17.0,2016-03-22 16:51:15,1,0,0,0,0,0,0,1,0,1,201603,0,689.0
794,797,19530,ITV News,148007467671.0,10153626291517672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 20:06:45,video,"b""ITV News' Mark Austin explains what we know so far about the Brussels attacks.\n\nFor the latest updates: http://bit.ly/1Zp4X2U""",b'Brussels Attacks: What we know so far',https://www.facebook.com/itvnews/videos/10153626291517672/,187.0,0.0,2.0,1.0,58.0,40.0,39.0,84.0,135.0,17.0,2016-03-22 20:06:45,1,0,0,0,0,0,0,1,0,1,201603,0,411.0
795,798,19531,ITV News,148007467671.0,10153626342747672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 20:22:28,video,"b""This is the scene at Brussels' Place de la Bourse as people gather to pay tribute to the Brussels attacks victims.\n\nLatest updates: http://bit.ly/1Sg9HEW""",b'Brussels Attacks: Locals pay tribute to victims',https://www.facebook.com/itvnews/videos/10153626342747672/,1316.0,90.0,1.0,0.0,224.0,6.0,40.0,149.0,135.0,17.0,2016-03-22 20:22:28,1,0,0,0,0,0,0,1,0,1,201603,0,1826.0
796,799,19532,ITV News,148007467671.0,10153626703582672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 22:40:41,video,b'Across the Western world there has been a show of solidarity with Brussels in the wake of the attacks that killed 34 people.\n\nLatest updates: http://bit.ly/1Sg9HEW',"b""Brussels attacks: Reaction to Europe's latest terror tragedy""",https://www.facebook.com/itvnews/videos/10153626703582672/,738.0,7.0,2.0,0.0,246.0,46.0,84.0,127.0,135.0,17.0,2016-03-22 22:40:41,1,0,0,0,0,0,0,1,0,1,201603,0,1250.0
797,800,19534,ITV News,148007467671.0,10153626765527672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 23:05:46,video,"b""At least 34 people were killed in the three blasts claimed by Islamic State that struck Brussels, and in the wake of those attacks police are searching for the one attacker who survived.\n\nITV News International Affairs Editor Rageh Omaar rounds up the day's events from Brussels.\n\nRead more here: http://bit.ly/1Zp4X2U""",b'Brussels attacks: Blasts leave city reeling',https://www.facebook.com/itvnews/videos/10153626765527672/,180.0,1.0,4.0,1.0,106.0,68.0,61.0,136.0,135.0,17.0,2016-03-22 23:05:46,1,0,0,0,0,0,0,1,0,1,201603,0,557.0
798,801,19535,ITV News,148007467671.0,10153626797082672,2016-03-22 00:00:00,ISLAMIST,2016-03-22 23:12:56,video,b'ITV News Security Editor Rohit Kachroo speaks to Tom Bradby about the Belgian authorities efforts to keep the city safe.\n\nRead more here: http://bit.ly/1Zp4X2U',b'Brussels attacks: How are the Belgian security services doing?',https://www.facebook.com/itvnews/videos/10153626797082672/,83.0,0.0,0.0,0.0,4.0,5.0,24.0,19.0,135.0,17.0,2016-03-22 23:12:56,1,0,0,0,0,0,0,1,0,1,201603,0,135.0
799,802,19536,ITV News,148007467671.0,10153628882797672,2016-03-22 00:00:00,ISLAMIST,2016-03-23 12:12:53,video,"b""A hush fell over Belgium's capital city this morning as thousands gathered for a minute's silence in honour of those killed in yesterday's terror attacks in Brussels.\n\nLive updates: http://bit.ly/1XMrogT""","b""Brussels holds a minute's silence for terror attack victims""",https://www.facebook.com/itvnews/videos/10153628882797672/,1115.0,43.0,2.0,0.0,248.0,5.0,47.0,120.0,135.0,17.0,2016-03-23 12:12:53,1,0,0,0,0,0,0,1,0,1,201603,1,1580.0
800,803,19539,ITV News,148007467671.0,10153630001617672,2016-03-22 00:00:00,ISLAMIST,2016-03-23 19:01:15,video,"b'A pregnant mum who survived the #BrusselsAttacks has penned a moving letter of hope to her unborn child.\n\n""I just want to tell you that life is a wonderful thing, and the world is really full of remarkable people"", Sneha Mehta wrote. Read more: http://bit.ly/1ZtvUm1'",b'Brussels attacks survivor writes moving letter to her unborn baby',https://www.facebook.com/itvnews/videos/10153630001617672/,672.0,79.0,1.0,1.0,33.0,1.0,25.0,134.0,135.0,17.0,2016-03-23 19:01:15,1,0,0,0,0,0,0,1,0,1,201603,0,946.0
801,804,19545,Channel 4 News,6622931938.0,10153634254776939,2016-03-22 00:00:00,ISLAMIST,2016-03-28 14:17:31,video,b'Pakistan mourns in the aftermath of a terror attack that killed more than 70 people and left hundreds injured.\n\nTaliban splinter group Jamaat-ul-Ahrar claim they carried out the attack against Christians celebrating Easter.',b'Pakistan mourns in the aftermath of a terror attack',https://www.facebook.com/Channel4News/videos/10153634254776939/,2023.0,6.0,2.0,2.0,1305.0,411.0,395.0,2196.0,135.0,17.0,2016-03-28 14:17:31,1,0,0,0,0,0,0,1,0,1,201603,1,6340.0
802,805,19555,Financial Times,8860325749.0,10153973696435750,2016-03-22 00:00:00,ISLAMIST,2016-03-22 13:53:36,video,b'The terrorist attacks in #Brussels were co-ordinated strikes in a city that has experienced one of the biggest pan-European anti-terror operations ever mounted.',b'Brussels attack raises hard questions',https://www.facebook.com/financialtimes/videos/10153973696435750/,201.0,2.0,4.0,1.0,44.0,23.0,27.0,124.0,135.0,17.0,2016-03-22 13:53:36,1,0,0,0,0,0,0,1,0,1,201603,1,426.0
803,806,19557,Financial Times,8860325749.0,10153978384490750,2016-03-22 00:00:00,ISLAMIST,2016-03-23 13:30:28,video,"b'How will governments review their security measures after the #Brussels attacks? Our defence and security editor, Sam Jones, explains.'",b'Will governments review their security measures?',https://www.facebook.com/financialtimes/videos/10153978384490750/,74.0,0.0,0.0,0.0,0.0,0.0,5.0,15.0,135.0,17.0,2016-03-23 13:30:28,1,0,0,0,0,0,0,1,0,1,201603,0,94.0
804,807,19565,The Guardian,10513336322.0,10154040875071323,2016-03-22 00:00:00,ISLAMIST,2016-03-22 14:00:00,video,"b'At 8am local time, two explosions hit the Zaventem airport in Brussels. Belgium\xe2\x80\x99s federal prosecutor saying they were suicide attacks. The airport blasts were followed by an explosion at the Maelbeek metro station. Brussels is on lockdown, with flights and international trains cancelled.\n\nWhat do we know so far?'",b'Brussels terror attacks: what do we know so far?',https://www.facebook.com/theguardian/videos/10154040875071323/,407.0,2.0,2.0,1.0,246.0,97.0,93.0,709.0,135.0,17.0,2016-03-22 14:00:00,1,0,0,0,0,0,0,1,0,1,201603,0,1557.0
805,808,19566,The Guardian,10513336322.0,10154044289011323,2016-03-22 00:00:00,ISLAMIST,2016-03-23 11:30:00,link,"b'""Everyone in Belgium, no matter what their religion or roots, has been targeted in this attack.""'","b""Molenbeek reacts: 'After Abdeslam's arrest, people expected a let-up'""",http://gu.com/p/4hnt4/fb,103.0,0.0,0.0,0.0,15.0,0.0,23.0,14.0,135.0,17.0,2016-03-23 11:30:00,1,0,0,0,0,0,0,0,1,0,201603,0,155.0
806,809,19572,The Guardian,10513336322.0,10154045261046323,2016-03-22 00:00:00,ISLAMIST,2016-03-23 18:20:00,video,"b'On Tuesday, two bombs exploded at Zaventem airport in Brussels and a third at the Belgian capital\xe2\x80\x99s Maelbeek metro station. Four men are believed to have instigated the attacks, but who were they?'",b'Who are the Belgium terror attack suspects?',https://www.facebook.com/theguardian/videos/10154045261046323/,293.0,3.0,0.0,0.0,45.0,62.0,81.0,222.0,135.0,17.0,2016-03-23 18:20:00,1,0,0,0,0,0,0,1,0,1,201603,0,706.0
807,810,19573,SPIEGEL ONLINE,38246844868.0,10154045691454869,2016-03-22 00:00:00,ISLAMIST,2016-03-22 14:55:07,video,"b'Erst der Flughafen, dann die U-Bahn - die Terroranschl\xc3\xa4ge in Br\xc3\xbcssel als Video\xc3\xbcberblick.'",missing_value,https://www.facebook.com/spiegelonline/videos/10154045691454869/,200.0,1.0,1.0,2.0,138.0,90.0,104.0,120.0,135.0,17.0,2016-03-22 14:55:07,1,0,0,0,0,0,0,1,0,1,201603,1,656.0
808,811,19577,SPIEGEL ONLINE,38246844868.0,10154049702134869,2016-03-22 00:00:00,ISLAMIST,2016-03-23 11:00:03,photo,b'Stille. F\xc3\xbcr alle Opfer des Terrors.',b'Timeline Photos',https://www.facebook.com/spiegelonline/photos/a.420707594868.190602.38246844868/10154049702134869/?type=3,1693.0,51.0,0.0,2.0,393.0,14.0,72.0,234.0,135.0,17.0,2016-03-23 11:00:03,1,0,0,0,0,0,1,0,0,2,201603,1,2459.0
809,812,19578,SPIEGEL ONLINE,38246844868.0,10154050279774869,2016-03-22 00:00:00,ISLAMIST,2016-03-23 13:51:44,video,"b'Die Terroranschl\xc3\xa4ge in Br\xc3\xbcssel ersch\xc3\xbcttern unser Selbstverst\xc3\xa4ndnis. Drei Gedanken am Tag danach: zur offenen Gesellschaft in Europa, zur Sicherheit - und zu Syrien. Ein Videokommentar von Florian Harms'","b'Videokommentar zum Terror in Belgien: ""Wir m\xc3\xbcssen f\xc3\xbcr unsere W...'",https://www.facebook.com/spiegelonline/videos/10154050279774869/,164.0,2.0,0.0,3.0,0.0,0.0,50.0,43.0,135.0,17.0,2016-03-23 13:51:44,1,0,0,0,0,0,0,1,0,1,201603,1,262.0
810,813,19579,The Guardian,10513336322.0,10154050543716323,2016-03-22 00:00:00,ISLAMIST,2016-03-25 10:20:00,video,b'We asked three Bruxellois for their response to the attacks in their city.\n\n#JeSuisBruxelles',b'Messages from Brussels to the world',https://www.facebook.com/theguardian/videos/10154050543716323/,1525.0,125.0,2.0,2.0,59.0,0.0,52.0,364.0,135.0,17.0,2016-03-25 10:20:00,1,0,0,0,0,0,0,1,0,1,201603,0,2129.0
811,814,19583,The Guardian,10513336322.0,10154055246611323,2016-03-22 00:00:00,ISLAMIST,2016-03-26 06:40:54,photo,"b'Amid a spike in anti-Muslim and anti-immigrant sentiment after the Brussels and Paris attacks, Pope Francis knelt before a group of refugees to wash and kiss their feet http://gu.com/p/4hq3v/fb'",b'Timeline Photos',https://www.facebook.com/theguardian/photos/a.10150338151436323.391595.10513336322/10154055246611323/?type=3,9610.0,635.0,94.0,5.0,7.0,18.0,349.0,1538.0,135.0,17.0,2016-03-26 06:40:54,1,0,0,0,0,0,1,0,0,2,201603,0,12256.0
812,815,19589,ZDF heute,112784955679.0,10154064622115680,2016-03-22 00:00:00,ISLAMIST,2016-03-22 18:04:46,video,"b'Die Terroristen haben in Br\xc3\xbcssel an zwei Standorten zugeschlagen: zun\xc3\xa4chst am Flughafen Zaventem und dann in einer U-Bahn in der Station Maelbeek, wie dieses ZDF-Grafikvideo verdeutlicht. Weitere Informationen in unserem Liveblog: http://ly.zdf.de/9Ww/'",missing_value,https://www.facebook.com/ZDFheute/videos/10154064622115680/,100.0,1.0,1.0,0.0,48.0,24.0,38.0,33.0,135.0,17.0,2016-03-22 18:04:46,1,0,0,0,0,0,0,1,0,1,201603,1,245.0
813,816,19602,The Telegraph,143666524748.0,10154110802474749,2016-03-22 00:00:00,ISLAMIST,2016-03-22 15:30:22,photo,"b""A heart in the colours of the Belgian flag is taped onto a bag at the scene of a makeshift memorial, following today's attacks in Brussels. For the latest news and updates follow: http://www.telegraph.co.uk/news/worldnews/europe/belgium/12201068/Brussels-bombings-terrorist-attack-on-Belgium-airport-and-Metro-live.html\n\nPicture: AFP/Kenzo Tribouillard/Getty Images""","b""The Telegraph's cover photo""",https://www.facebook.com/TELEGRAPH.CO.UK/photos/a.10150634002524749.407921.143666524748/10154110792124749/?type=3,180.0,4.0,0.0,0.0,20.0,2.0,9.0,24.0,135.0,17.0,2016-03-22 15:30:22,1,0,0,0,0,0,1,0,0,2,201603,1,239.0
814,817,19604,The Telegraph,143666524748.0,10154111132649749,2016-03-22 00:00:00,ISLAMIST,2016-03-22 16:58:52,video,"b'Barack Obama responds to the Brussels attack: ""This is yet another reminder that the world must unite.""'",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154111132649749/,908.0,17.0,1.0,2.0,33.0,11.0,168.0,149.0,135.0,17.0,2016-03-22 16:58:52,1,0,0,0,0,0,0,1,0,1,201603,0,1289.0
815,818,19605,The Telegraph,143666524748.0,10154112239209749,2016-03-22 00:00:00,ISLAMIST,2016-03-22 19:45:08,video,b'Brussels attacks: Immediate aftermath of deadly Zaventem airport bomb blast.\n\nWarning: some viewers may find this footage distressing.',b'Telegraph News',https://www.facebook.com/thetelegraphnews/videos/584679168356415/,111.0,0.0,2.0,0.0,61.0,40.0,39.0,0.0,135.0,17.0,2016-03-22 19:45:08,1,0,0,0,0,0,0,1,0,1,201603,0,253.0
816,819,19606,The Telegraph,143666524748.0,10154112543869749,2016-03-22 00:00:00,ISLAMIST,2016-03-22 22:00:00,video,b'Famous landmarks across the world were lit up in the colours of the Belgian flag on Tuesday night in solidarity with the victims of the Brussels bomb attacks.',missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154112543869749/,3536.0,108.0,3.0,2.0,292.0,10.0,111.0,866.0,135.0,17.0,2016-03-22 22:00:00,1,0,0,0,0,0,0,1,0,1,201603,0,4928.0
817,820,19607,The Telegraph,143666524748.0,10154113038044749,2016-03-22 00:00:00,ISLAMIST,2016-03-23 07:45:00,video,b'People paid tributes outside the Brussels Stock Exchange in the wake of attacks on Tuesday that claimed the lives of at least 31 people and injured dozens.',missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154113038044749/,369.0,9.0,1.0,1.0,75.0,1.0,20.0,59.0,135.0,17.0,2016-03-23 07:45:00,1,0,0,0,0,0,0,1,0,1,201603,0,535.0
818,821,19609,WELT,97515118114.0,10154114448928115,2016-03-22 00:00:00,ISLAMIST,2016-03-22 15:10:50,video,b'Terror in Br\xc3\xbcssel: Die unfassbaren Taten machen sprachlos.',b'Terror in Br\xc3\xbcssel: Anschl\xc3\xa4ge am Flughafen und in der U-Bahn',https://www.facebook.com/welt/videos/10154114448928115/,306.0,2.0,1.0,1.0,249.0,175.0,96.0,151.0,135.0,17.0,2016-03-22 15:10:50,1,0,0,0,0,0,0,1,0,1,201603,1,981.0
819,822,19611,The Telegraph,143666524748.0,10154115542789749,2016-03-22 00:00:00,ISLAMIST,2016-03-23 11:17:40,video,"b'On stage at the O2 Arena in London, Adele paid tribute to the victims of the Brussels attacks, in which at least 34 people were killed, and referred to the terrorists as ""f*****s"".'","b""Adele honours Brussels victims and calls terrorists 'f*****s'""",https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154115542789749/,976.0,66.0,3.0,1.0,54.0,1.0,39.0,164.0,135.0,17.0,2016-03-23 11:17:40,1,0,0,0,0,0,0,1,0,1,201603,1,1304.0
820,823,19612,The Telegraph,143666524748.0,10154115915049749,2016-03-22 00:00:00,ISLAMIST,2016-03-23 13:05:00,video,b'Police chase a zebra that escaped from a horseback riding club in central Japan but are unable to revive the animal after shooting it with a tranquilliser dart.',b'Zebra escapes owners and runs riot on Japanese golf course',https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154115915049749/,459.0,3.0,2.0,1.0,112.0,129.0,96.0,110.0,135.0,17.0,2016-03-23 13:05:00,1,0,0,0,0,0,0,1,0,1,201603,0,912.0
821,824,19613,The Telegraph,143666524748.0,10154115934899749,2016-03-22 00:00:00,ISLAMIST,2016-03-23 16:09:00,video,"b""This 360\xc2\xb0 video view was captured on the Place de la Bourse in central Brussels. The square outside the stock exchange has been the focal point for the city's symbolic display of solidarity since Tuesday's attacks that left at least 30 people dead.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154115934899749/,177.0,3.0,0.0,0.0,34.0,0.0,22.0,68.0,135.0,17.0,2016-03-23 16:09:00,1,0,0,0,0,0,0,1,0,1,201603,0,304.0
822,825,19616,The Telegraph,143666524748.0,10154116745479749,2016-03-22 00:00:00,ISLAMIST,2016-03-23 19:00:00,video,"b""Fresh footage shows the Maelbeek metro station in Brussels moments after the bomb went off in yesterday morning's terror attack.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154116745479749/,199.0,0.0,1.0,0.0,57.0,30.0,32.0,68.0,135.0,17.0,2016-03-23 19:00:00,1,0,0,0,0,0,0,1,0,1,201603,1,387.0
823,826,19627,The Telegraph,143666524748.0,10154120937319749,2016-03-22 00:00:00,ISLAMIST,2016-03-24 10:47:47,photo,b'The London Eye in London is lit in the colours of the Belgium flag as a tribute following the recent terrorist attacks in Brussels. \n\nSee more: http://www.telegraph.co.uk/news/worldnews/europe/belgium/12202719/Landmarks-in-London-light-up-in-solidaridy-with-Brussels.html\n\nCredit: Anthony Devlin/PA Wire',"b""The Telegraph's cover photo""",https://www.facebook.com/TELEGRAPH.CO.UK/photos/a.10150634002524749.407921.143666524748/10154120936929749/?type=3,691.0,14.0,0.0,0.0,17.0,0.0,16.0,38.0,135.0,17.0,2016-03-24 10:47:47,1,0,0,0,0,0,1,0,0,2,201603,1,776.0
824,827,19632,The Telegraph,143666524748.0,10154123008829749,2016-03-22 00:00:00,ISLAMIST,2016-03-24 20:15:00,video,b'Brussels attacks: Hacker group Anonymous vows revenge on Islamic State.',missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154123008829749/,1236.0,60.0,4.0,51.0,2.0,2.0,153.0,359.0,135.0,17.0,2016-03-24 20:15:00,1,0,0,0,0,0,0,1,0,1,201603,0,1867.0
825,828,19633,The Telegraph,143666524748.0,10154123193179749,2016-03-22 00:00:00,ISLAMIST,2016-03-24 21:45:00,video,"b""Survivor of Brussels' airport attack, Fanny Klein, speaks of her ordeal.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154123193179749/,760.0,31.0,6.0,0.0,301.0,21.0,98.0,251.0,135.0,17.0,2016-03-24 21:45:00,1,0,0,0,0,0,0,1,0,1,201603,0,1468.0
826,829,19636,The Telegraph,143666524748.0,10154125562379749,2016-03-22 00:00:00,ISLAMIST,2016-03-25 09:30:00,video,"b'""We suspected him after the Paris attacks"" says the brother of one of the Brussels bombers.'",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154125562379749/,155.0,1.0,1.0,1.0,7.0,19.0,47.0,49.0,135.0,17.0,2016-03-25 09:30:00,1,0,0,0,0,0,0,1,0,1,201603,0,280.0
827,830,19645,The Telegraph,143666524748.0,10154127469209749,2016-03-22 00:00:00,ISLAMIST,2016-03-25 19:15:00,video,"b'This US teenager, injured in the Brussels airport attack, also survived the Boston Marathon bombing.'",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154127469209749/,1574.0,34.0,101.0,2.0,218.0,3.0,123.0,546.0,135.0,17.0,2016-03-25 19:15:00,1,0,0,0,0,0,0,1,0,1,201603,0,2601.0
828,831,19647,The Telegraph,143666524748.0,10154128219729749,2016-03-22 00:00:00,ISLAMIST,2016-03-25 20:16:03,video,b'A US group has donated a puppy to France after the death of a police dog following the Paris attacks.',missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154128219729749/,646.0,56.0,2.0,0.0,12.0,0.0,39.0,83.0,135.0,17.0,2016-03-25 20:16:03,1,0,0,0,0,0,0,1,0,1,201603,0,838.0
829,832,19649,The Telegraph,143666524748.0,10154131794574749,2016-03-22 00:00:00,ISLAMIST,2016-03-26 13:01:03,video,"b""Emergency workers have gathered at the Place de la Bourse memorial site in Brussels to remember the victims of Tuesday's bomb attacks.""",b'Emergency workers sing and cheer to remember Brussels victims',https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154131794574749/,581.0,32.0,0.0,0.0,80.0,1.0,22.0,72.0,135.0,17.0,2016-03-26 13:01:03,1,0,0,0,0,0,0,1,0,1,201603,0,788.0
830,833,19654,The Telegraph,143666524748.0,10154133662294749,2016-03-22 00:00:00,ISLAMIST,2016-03-26 21:31:04,video,"b""North Korea releases chilling propaganda video showing 'nuclear attack' on Washington DC.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154133662294749/,1683.0,25.0,171.0,382.0,45.0,106.0,568.0,1165.0,135.0,17.0,2016-03-26 21:31:04,1,0,0,0,0,0,0,1,0,1,201603,0,4145.0
831,834,19660,Daily Mirror,6149699161.0,10154146575839162,2016-03-22 00:00:00,ISLAMIST,2016-03-22 20:45:00,link,"b""She's again sparked fury with her views on the terrorist attacks.""",b'Katie Hopkins accuses Muslims of CELEBRATING bombings',http://www.mirror.co.uk/tv/tv-news/brussels-attacks-katie-hopkins-sparks-7610584?ICID=FB_mirror_main,510.0,23.0,7.0,3.0,3.0,113.0,461.0,116.0,135.0,17.0,2016-03-22 20:45:00,1,0,0,0,0,0,0,0,1,0,201603,1,1236.0
832,835,19661,Daily Mirror,6149699161.0,10154149839939162,2016-03-22 00:00:00,ISLAMIST,2016-03-23 14:15:01,link,b'Several plots against Britain have been prevented.',b'Seven ISIS attacks on UK soil have been prevented by British intelligence authorities',http://www.mirror.co.uk/news/uk-news/brussels-attacks-seven-isis-atrocities-7614120?ICID=FB_mirror_main,772.0,26.0,23.0,0.0,1.0,1.0,65.0,164.0,135.0,17.0,2016-03-23 14:15:01,1,0,0,0,0,0,0,0,1,0,201603,0,1052.0
833,836,19666,Daily Mirror,6149699161.0,10154153691234162,2016-03-22 00:00:00,ISLAMIST,2016-03-24 09:00:00,link,b'An Israeli newspaper has made the claims.',b'Did security services know Brussels terror attack was going to happen?',http://www.mirror.co.uk/news/uk-news/security-services-know-brussels-terror-7618316?ICID=FB_mirror_main,96.0,1.0,6.0,1.0,1.0,1.0,32.0,24.0,135.0,17.0,2016-03-24 09:00:00,1,0,0,0,0,0,0,0,1,0,201603,0,162.0
834,837,19677,Daily Mirror,6149699161.0,10154160980314162,2016-03-22 00:00:00,ISLAMIST,2016-03-25 20:00:00,video,b'It was just hours after he wished Christians a Happy Easter on Facebook.',"b""Muslim shopkeeper stabbed to death in 'religiously motivated' attack""",http://www.mirror.co.uk/news/uk-news/man-arrested-after-muslim-shopkeeper-7630637?ICID=FB_mirror_main,268.0,2.0,1.0,1.0,137.0,69.0,155.0,151.0,135.0,17.0,2016-03-25 20:00:00,1,0,0,0,0,0,0,1,0,1,201603,0,784.0
835,838,19678,Daily Mirror,6149699161.0,10154161345359162,2016-03-22 00:00:00,ISLAMIST,2016-03-25 21:00:00,link,b'Gary Lineker should have maybe thought twice before posting this.',"b""Gary Lineker sparks Twitter storm after making 'inappropriate' joke following Brussels attacks""",http://www.mirror.co.uk/sport/football/news/gary-lineker-centre-twitter-storm-7631164?ICID=FB_mirror_main,77.0,0.0,1.0,0.0,1.0,7.0,74.0,7.0,135.0,17.0,2016-03-25 21:00:00,1,0,0,0,0,0,0,0,1,0,201603,0,167.0
836,839,19691,Bild,25604775729.0,10154210681455730,2016-03-22 00:00:00,ISLAMIST,2016-03-22 09:25:39,video,b'Anschlag! Menschen fliehen aus dem Flughafen Br\xc3\xbcssel.',b'Explosionen am Flughafen Br\xc3\xbcssel',https://www.facebook.com/bild/videos/10154210681455730/,623.0,2.0,12.0,4.0,322.0,299.0,373.0,491.0,135.0,17.0,2016-03-22 09:25:39,1,0,0,0,0,0,0,1,0,1,201603,0,2126.0
837,840,19692,Bild,25604775729.0,10154210789595730,2016-03-22 00:00:00,ISLAMIST,2016-03-22 10:10:22,photo,b'Terror und Tote in Br\xc3\xbcssel! Wir stehen zusammen.',b'Timeline Photos',https://www.facebook.com/bild/photos/a.166767505729.158690.25604775729/10154210789595730/?type=3,8831.0,26.0,7.0,26.0,1388.0,577.0,1208.0,4064.0,135.0,17.0,2016-03-22 10:10:22,1,0,0,0,0,0,1,0,0,2,201603,1,16127.0
838,841,19693,Bild,25604775729.0,10154211394585730,2016-03-22 00:00:00,ISLAMIST,2016-03-22 13:39:08,video,b'Terror in Br\xc3\xbcssel - Augenzeugen berichten',missing_value,https://www.facebook.com/bild/videos/10154211394585730/,356.0,1.0,0.0,3.0,96.0,85.0,749.0,147.0,135.0,17.0,2016-03-22 13:39:08,1,0,0,0,0,0,0,1,0,1,201603,1,1437.0
839,842,19700,JUNGE FREIHEIT,13479664941.0,10154688110769942,2016-03-22 00:00:00,ISLAMIST,2016-03-22 19:32:12,photo,"b'Boualem Sansal, Friedenspreistr\xc3\xa4ger des Deutschen Buchhandels, warnt im Interview mit der neuen JF eindringlich vor einer zunehmenden Islamisierung. Eine Warnung, die am heutigen Tag der islamistischen Anschl\xc3\xa4ge von Br\xc3\xbcssel eine besonders f\xc3\xbcrchterliche Aktualit\xc3\xa4t erhalten hat: https://jungefreiheit.de/aktuelle-jf/'",b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10154688110769942/?type=3,808.0,2.0,20.0,0.0,8.0,47.0,40.0,359.0,135.0,17.0,2016-03-22 19:32:12,1,0,0,0,0,0,1,0,0,2,201603,0,1284.0
840,843,19702,JUNGE FREIHEIT,13479664941.0,10154696045274942,2016-03-22 00:00:00,ISLAMIST,2016-03-24 11:48:51,link,"b'Nach den Terroranschl\xc3\xa4gen von Br\xc3\xbcssel hat die polnische Regierung angek\xc3\xbcndigt, keine Asylsuchenden mehr im Land aufzunehmen. Unter den Asylsuchenden bef\xc3\xa4nden sich Terroristen, warnte Ministerpr\xc3\xa4sidentin Beata Szyd\xc5\x82o. Die Sicherheit ihrer B\xc3\xbcrger sei wichtiger. >>'",b'Polen lehnt Aufnahme weiterer Asylbewerber ab',https://jungefreiheit.de/politik/deutschland/2016/polen-lehnt-aufnahme-weiterer-asylbewerber-ab/,3208.0,79.0,13.0,39.0,0.0,2.0,232.0,388.0,135.0,17.0,2016-03-24 11:48:51,1,0,0,0,0,0,0,0,1,0,201603,1,3961.0
841,844,19739,ZDF,154149027994068.0,994377703971192,2016-03-24 00:00:00,ISLAMIST,2016-03-30 18:07:00,video,"b'Worum geht es heute im auslandsjournal? Zum Beispiel darum, was der Terrorismus f\xc3\xbcr den Tourismus in der T\xc3\xbcrkei bedeutet.'",b'auslandsjournal am 20. M\xc3\xa4rz',https://www.facebook.com/ZDF/videos/994377703971192/,49.0,2.0,2.0,0.0,1.0,1.0,15.0,6.0,1.0,1.0,2016-03-30 18:07:00,1,0,0,0,0,0,0,1,0,1,201603,1,76.0
842,845,19740,Süddeutsche Zeitung,215982125159841.0,998228633601849,2016-03-24 00:00:00,ISLAMIST,2016-03-25 14:43:10,link,"b'Jan B\xc3\xb6hmermann bereichert die Diskussion \xc3\xbcber den Terror, kommentiert unser JETZT-Kollege Jakob Biazza.'","b'\xe2\x80\x9eWer Menschen mit Bomben t\xc3\xb6ten will, dem wird das immer gelingen.\xe2\x80\x9c'",http://www.jetzt.de/terroranschlaege-in-bruessel/jan-boehmermann-ueber-die-anschlaege-von-bruessel,545.0,1.0,0.0,3.0,3.0,1.0,31.0,53.0,1.0,1.0,2016-03-25 14:43:10,1,0,0,0,0,0,0,0,1,0,201603,1,637.0
843,846,19782,Monitor,186702484702033.0,1043948105644129,2016-03-24 00:00:00,ISLAMIST,2016-03-30 17:41:43,status,"b'Liebe Bundesregierung,\n\nja, dass die Presse- und Meinungsfreiheit ein hohes Gut ist, h\xc3\xa4tten wir auch ohne die Stellungnahme des Regierungssprechers geahnt. Steht schlie\xc3\x9flich so im Grundgesetz. Dass der Au\xc3\x9fenminister dar\xc3\xbcber hinaus erwartet, dass ein EU-Partnerland wie die T\xc3\xbcrkei ""unsere gemeinsamen europ\xc3\xa4ischen Werte teilt"", bringt die verst\xc3\xb6rende Verdruckstheit der deutschen T\xc3\xbcrkei-Politik dann vollends auf den Punkt: Selbst der schamlose Angriff der t\xc3\xbcrkischen Regierung auf die deutsche Kunst- und Meinungsfreiheit erntet von deutscher Regierungsseite nur verfassungsrechtliche Allgemeinpl\xc3\xa4tze. \n\nDabei w\xc3\xa4re ein klares Wort dringend n\xc3\xb6tig gewesen. Ein klares Wort an die t\xc3\xbcrkische Regierung, dass man sich solche Kritik an einer deutschen Satiresendung verbittet. Ein klares Wort, das diese Kritik verurteilt und als das bezeichnet, was sie ist: Ein Beweis daf\xc3\xbcr, dass ein Land wie die T\xc3\xbcrkei solange kein Partner der EU (und schon gar kein sicherer Drittstaat!) sein kann, solange es die wesentlichen Freiheiten der Europ\xc3\xa4ischen Menschenrechtskonvention eben nicht beachtet. So viel Courage gegen\xc3\xbcber der t\xc3\xbcrkischen Regierung, so viel Werteorientierung in der deutschen Au\xc3\x9fenpolitik erwarte ich dann doch.\n\nGeorg Restle\n\n#monitor #ard #wdr #extra3 #georgrestle'",missing_value,missing_value,6286.0,48.0,9.0,8.0,9.0,110.0,256.0,1694.0,1.0,1.0,2016-03-30 17:41:43,1,0,0,0,0,0,0,0,0,0,201603,0,8420.0
844,847,19811,London Evening Standard,165348596842143.0,1122157507827909,2016-03-24 00:00:00,ISLAMIST,2016-03-25 13:32:22,link,b'BREAKING: Reports of explosions and gunfire during an anti-terror raid at a house in Brussels',"b""Reports of 'explosion' during anti-terror raid in Brussels district""",https://www.standard.co.uk/news/world/brussels-attacks-explosion-heard-during-antiterror-raid-on-house-in-schaerbeek-a3211711.html,88.0,0.0,3.0,1.0,8.0,2.0,6.0,27.0,1.0,1.0,2016-03-25 13:32:22,1,0,0,0,0,0,0,0,1,0,201603,1,135.0
845,848,19822,Daily Express,129617873765147.0,1126965017363756,2016-03-24 00:00:00,ISLAMIST,2016-03-24 09:54:10,link,b'BREAKING NEWS: Paris attacks suspect to FACE JUSTICE as he changes his mind on fighting extradition to France',b'BREAKING: Paris attacks suspect Salah Abdeslam will NOT fight extradition to France',http://www.express.co.uk/news/world/655221/Paris-attacks-ISIS-suspect-Salah-Abdeslam-will-NOT-fight-extradition-to-France,130.0,0.0,1.0,4.0,0.0,21.0,61.0,72.0,1.0,1.0,2016-03-24 09:54:10,1,0,0,0,0,0,0,0,1,0,201603,0,289.0
846,849,19877,Daily Mail,164305410295882.0,1254905124569233,2016-03-24 00:00:00,ISLAMIST,2016-03-26 09:00:23,video,b'The brutal attack was all captured in a horrifying surveillance video.',b'Horrifying moment a British tourist is fatally stabbed in the head',http://dailym.ai/1q74fuU,199.0,0.0,1.0,2.0,80.0,47.0,74.0,66.0,1.0,1.0,2016-03-26 09:00:23,1,0,0,0,0,0,0,1,0,1,201603,0,469.0
847,850,19891,The Daily Star,161612017189003.0,1287267831290077,2016-03-24 00:00:00,ISLAMIST,2016-03-25 10:15:00,link,b'How did no one spot this?',"b""Aldi forced to change 'offensive' paint name after sex attack victim complains""",http://www.dailystar.co.uk/news/latest-news/503523/Aldi-paint-decorating-rapeseed-rape-yellow-Coventry-sex-attack-victim-complaint,96.0,1.0,3.0,9.0,0.0,0.0,71.0,24.0,1.0,1.0,2016-03-25 10:15:00,1,0,0,0,0,0,0,0,1,0,201603,0,204.0
848,851,19921,BR - Bayerischer Rundfunk,157820960901646.0,1331986970151700,2016-03-24 00:00:00,ISLAMIST,2016-03-30 14:53:00,video,"b'Es ist auch heute noch unfassbar. Rechtsradikale M\xc3\xb6rder ziehen jahrelang durch Deutschland und bringen zehn Menschen um. Und die Beh\xc3\xb6rden suchen die Schuld bei den Opfern. Mit drei Spielfilmen und einer Dokumentation macht Das Erste nachvollziehbar, wie es zu der beispiellosen Mordserie des NSU kommen konnte. Heute um 20.15 Uhr gibt\'s den ersten Film ""Die T\xc3\xa4ter - Heute ist nicht alle Tage""\nWeitere Ausstrahlungstermine:\n4.4.: ""Die Opfer - Vergesst mich nicht""\n6.4.: ""Die Ermittler - Nur f\xc3\xbcr den Dienstgebrauch""\nMehr Infos: http://www.daserste.de/unterhaltung/film/mitten-in-deutschland-nsu/index.html\nWeitere Hintergr\xc3\xbcnde in unserer Webdoku: http://webdoku.nsu-terror.de/'",b'Mitten in Deutschland - NSU',https://www.facebook.com/bayerischer.rundfunk/videos/1331986970151700/,19.0,1.0,0.0,0.0,1.0,3.0,5.0,7.0,1.0,1.0,2016-03-30 14:53:00,1,0,0,0,0,0,0,1,0,1,201603,1,36.0
849,852,19936,The Sun,161385360554578.0,1385100848183017,2016-03-24 00:00:00,ISLAMIST,2016-03-24 09:00:02,link,b'This is truly harrowing and we do warn you that it contains disturbing images',b'Horrific aftermath of Brussels attack caught on film',http://thesun.uk/6181BghD7,122.0,0.0,1.0,1.0,61.0,10.0,50.0,96.0,1.0,1.0,2016-03-24 09:00:02,1,0,0,0,0,0,0,0,1,0,201603,0,341.0
850,853,19995,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153406124610976,2016-03-24 00:00:00,ISLAMIST,2016-03-24 10:31:01,photo,b'An diesen Orten haben IS-Terroristen und Sympathisanten seit 2014 Anschl\xc3\xa4ge ver\xc3\xbcbt: faz.net/-gpf-8bzq6#GEPC;s6',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153406124610976/?type=3,10.0,0.0,3.0,0.0,0.0,0.0,13.0,10.0,1.0,1.0,2016-03-24 10:31:01,1,0,0,0,0,0,1,0,0,2,201603,1,36.0
851,854,19998,FAZ.NET - Frankfurter Allgemeine Zeitung,346392590975.0,10153410758110976,2016-03-24 00:00:00,ISLAMIST,2016-03-25 18:20:00,photo,b'Im Kampf gegen den internationalen Terrorismus muss es europ\xc3\xa4ische L\xc3\xb6sungen geben. faz.net/-gpf-8f6o4#GEPC;s6',b'Timeline Photos',https://www.facebook.com/faz/photos/a.415527155975.196450.346392590975/10153410758110976/?type=3,52.0,0.0,0.0,1.0,0.0,1.0,31.0,2.0,1.0,1.0,2016-03-25 18:20:00,1,0,0,0,0,0,1,0,0,2,201603,1,87.0
852,855,20050,Channel 4 News,6622931938.0,10153634254776939,2016-03-24 00:00:00,ISLAMIST,2016-03-28 14:17:31,video,b'Pakistan mourns in the aftermath of a terror attack that killed more than 70 people and left hundreds injured.\n\nTaliban splinter group Jamaat-ul-Ahrar claim they carried out the attack against Christians celebrating Easter.',b'Pakistan mourns in the aftermath of a terror attack',https://www.facebook.com/Channel4News/videos/10153634254776939/,2023.0,6.0,2.0,2.0,1305.0,411.0,395.0,2196.0,1.0,1.0,2016-03-28 14:17:31,1,0,0,0,0,0,0,1,0,1,201603,1,6340.0
853,856,20066,The Guardian,10513336322.0,10154050543716323,2016-03-24 00:00:00,ISLAMIST,2016-03-25 10:20:00,video,b'We asked three Bruxellois for their response to the attacks in their city.\n\n#JeSuisBruxelles',b'Messages from Brussels to the world',https://www.facebook.com/theguardian/videos/10154050543716323/,1525.0,125.0,2.0,2.0,59.0,0.0,52.0,364.0,1.0,1.0,2016-03-25 10:20:00,1,0,0,0,0,0,0,1,0,1,201603,0,2129.0
854,857,20069,The Guardian,10513336322.0,10154055246611323,2016-03-24 00:00:00,ISLAMIST,2016-03-26 06:40:54,photo,"b'Amid a spike in anti-Muslim and anti-immigrant sentiment after the Brussels and Paris attacks, Pope Francis knelt before a group of refugees to wash and kiss their feet http://gu.com/p/4hq3v/fb'",b'Timeline Photos',https://www.facebook.com/theguardian/photos/a.10150338151436323.391595.10513336322/10154055246611323/?type=3,9610.0,635.0,94.0,5.0,7.0,18.0,349.0,1538.0,1.0,1.0,2016-03-26 06:40:54,1,0,0,0,0,0,1,0,0,2,201603,0,12256.0
855,858,20084,The Telegraph,143666524748.0,10154120937319749,2016-03-24 00:00:00,ISLAMIST,2016-03-24 10:47:47,photo,b'The London Eye in London is lit in the colours of the Belgium flag as a tribute following the recent terrorist attacks in Brussels. \n\nSee more: http://www.telegraph.co.uk/news/worldnews/europe/belgium/12202719/Landmarks-in-London-light-up-in-solidaridy-with-Brussels.html\n\nCredit: Anthony Devlin/PA Wire',"b""The Telegraph's cover photo""",https://www.facebook.com/TELEGRAPH.CO.UK/photos/a.10150634002524749.407921.143666524748/10154120936929749/?type=3,691.0,14.0,0.0,0.0,17.0,0.0,16.0,38.0,1.0,1.0,2016-03-24 10:47:47,1,0,0,0,0,0,1,0,0,2,201603,1,776.0
856,859,20089,The Telegraph,143666524748.0,10154123008829749,2016-03-24 00:00:00,ISLAMIST,2016-03-24 20:15:00,video,b'Brussels attacks: Hacker group Anonymous vows revenge on Islamic State.',missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154123008829749/,1236.0,60.0,4.0,51.0,2.0,2.0,153.0,359.0,1.0,1.0,2016-03-24 20:15:00,1,0,0,0,0,0,0,1,0,1,201603,0,1867.0
857,860,20090,The Telegraph,143666524748.0,10154123193179749,2016-03-24 00:00:00,ISLAMIST,2016-03-24 21:45:00,video,"b""Survivor of Brussels' airport attack, Fanny Klein, speaks of her ordeal.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154123193179749/,760.0,31.0,6.0,0.0,301.0,21.0,98.0,251.0,1.0,1.0,2016-03-24 21:45:00,1,0,0,0,0,0,0,1,0,1,201603,0,1468.0
858,861,20092,The Telegraph,143666524748.0,10154125562379749,2016-03-24 00:00:00,ISLAMIST,2016-03-25 09:30:00,video,"b'""We suspected him after the Paris attacks"" says the brother of one of the Brussels bombers.'",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154125562379749/,155.0,1.0,1.0,1.0,7.0,19.0,47.0,49.0,1.0,1.0,2016-03-25 09:30:00,1,0,0,0,0,0,0,1,0,1,201603,0,280.0
859,862,20101,The Telegraph,143666524748.0,10154127469209749,2016-03-24 00:00:00,ISLAMIST,2016-03-25 19:15:00,video,"b'This US teenager, injured in the Brussels airport attack, also survived the Boston Marathon bombing.'",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154127469209749/,1574.0,34.0,101.0,2.0,218.0,3.0,123.0,546.0,1.0,1.0,2016-03-25 19:15:00,1,0,0,0,0,0,0,1,0,1,201603,0,2601.0
860,863,20103,The Telegraph,143666524748.0,10154128219729749,2016-03-24 00:00:00,ISLAMIST,2016-03-25 20:16:03,video,b'A US group has donated a puppy to France after the death of a police dog following the Paris attacks.',missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154128219729749/,646.0,56.0,2.0,0.0,12.0,0.0,39.0,83.0,1.0,1.0,2016-03-25 20:16:03,1,0,0,0,0,0,0,1,0,1,201603,0,838.0
861,864,20105,The Telegraph,143666524748.0,10154131794574749,2016-03-24 00:00:00,ISLAMIST,2016-03-26 13:01:03,video,"b""Emergency workers have gathered at the Place de la Bourse memorial site in Brussels to remember the victims of Tuesday's bomb attacks.""",b'Emergency workers sing and cheer to remember Brussels victims',https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154131794574749/,581.0,32.0,0.0,0.0,80.0,1.0,22.0,72.0,1.0,1.0,2016-03-26 13:01:03,1,0,0,0,0,0,0,1,0,1,201603,0,788.0
862,865,20110,The Telegraph,143666524748.0,10154133662294749,2016-03-24 00:00:00,ISLAMIST,2016-03-26 21:31:04,video,"b""North Korea releases chilling propaganda video showing 'nuclear attack' on Washington DC.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154133662294749/,1683.0,25.0,171.0,382.0,45.0,106.0,568.0,1165.0,1.0,1.0,2016-03-26 21:31:04,1,0,0,0,0,0,0,1,0,1,201603,0,4145.0
863,866,20113,Daily Mirror,6149699161.0,10154153691234162,2016-03-24 00:00:00,ISLAMIST,2016-03-24 09:00:00,link,b'An Israeli newspaper has made the claims.',b'Did security services know Brussels terror attack was going to happen?',http://www.mirror.co.uk/news/uk-news/security-services-know-brussels-terror-7618316?ICID=FB_mirror_main,96.0,1.0,6.0,1.0,1.0,1.0,32.0,24.0,1.0,1.0,2016-03-24 09:00:00,1,0,0,0,0,0,0,0,1,0,201603,0,162.0
864,867,20125,Daily Mirror,6149699161.0,10154160980314162,2016-03-24 00:00:00,ISLAMIST,2016-03-25 20:00:00,video,b'It was just hours after he wished Christians a Happy Easter on Facebook.',"b""Muslim shopkeeper stabbed to death in 'religiously motivated' attack""",http://www.mirror.co.uk/news/uk-news/man-arrested-after-muslim-shopkeeper-7630637?ICID=FB_mirror_main,268.0,2.0,1.0,1.0,137.0,69.0,155.0,151.0,1.0,1.0,2016-03-25 20:00:00,1,0,0,0,0,0,0,1,0,1,201603,0,784.0
865,868,20126,Daily Mirror,6149699161.0,10154161345359162,2016-03-24 00:00:00,ISLAMIST,2016-03-25 21:00:00,link,b'Gary Lineker should have maybe thought twice before posting this.',"b""Gary Lineker sparks Twitter storm after making 'inappropriate' joke following Brussels attacks""",http://www.mirror.co.uk/sport/football/news/gary-lineker-centre-twitter-storm-7631164?ICID=FB_mirror_main,77.0,0.0,1.0,0.0,1.0,7.0,74.0,7.0,1.0,1.0,2016-03-25 21:00:00,1,0,0,0,0,0,0,0,1,0,201603,0,167.0
866,869,20137,JUNGE FREIHEIT,13479664941.0,10154696045274942,2016-03-24 00:00:00,ISLAMIST,2016-03-24 11:48:51,link,"b'Nach den Terroranschl\xc3\xa4gen von Br\xc3\xbcssel hat die polnische Regierung angek\xc3\xbcndigt, keine Asylsuchenden mehr im Land aufzunehmen. Unter den Asylsuchenden bef\xc3\xa4nden sich Terroristen, warnte Ministerpr\xc3\xa4sidentin Beata Szyd\xc5\x82o. Die Sicherheit ihrer B\xc3\xbcrger sei wichtiger. >>'",b'Polen lehnt Aufnahme weiterer Asylbewerber ab',https://jungefreiheit.de/politik/deutschland/2016/polen-lehnt-aufnahme-weiterer-asylbewerber-ab/,3208.0,79.0,13.0,39.0,0.0,2.0,232.0,388.0,1.0,1.0,2016-03-24 11:48:51,1,0,0,0,0,0,0,0,1,0,201603,1,3961.0
867,870,20142,JUNGE FREIHEIT,13479664941.0,10154720645749942,2016-03-24 00:00:00,ISLAMIST,2016-03-29 10:24:31,link,"b'Der Auftritt des Bremer B\xc3\xbcrgeschaftspr\xc3\xa4sidenten Christian Weber bei der islamistischen Bewegung Mill\xc3\xae G\xc3\xb6r\xc3\xbc\xc5\x9f am Ostersonntag ist auf Kritik gesto\xc3\x9fen. Der Auftritt sei eine \xe2\x80\x9eunertr\xc3\xa4gliche Geschmacklosigkeit\xe2\x80\x9c, sagte Alfa-Abgeordneter Christian Sch\xc3\xa4fer mit Blick auf den christenfeindlichen Terror in Pakistan. >>'",b'Bremer B\xc3\xbcrgerschaftspr\xc3\xa4sident tritt bei Islamisten auf',https://jungefreiheit.de/politik/deutschland/2016/bremer-buergerschaftspraesident-tritt-bei-islamisten-auf/,254.0,0.0,14.0,5.0,5.0,169.0,82.0,204.0,1.0,1.0,2016-03-29 10:24:31,1,0,0,0,0,0,0,0,1,0,201603,1,733.0
868,871,20351,SR.de,139381656076338.0,1273105776037248,2016-04-15 00:00:00,SEP-REP,2016-04-18 18:51:52,video,"b'Erinnert ihr euch noch? Hulk Hogan, the Bushwhackers oder Bret ""The Hitman"" w\xc3\xbcten mit kleinen H\xc3\xb6schen und gro\xc3\x9fen Attacken durch den Ring. Flying Clothesline, Figure Four Leglock oder Back Suplex waren ihre Moves. Ganz so gro\xc3\x9fe Namen waren in Saarbr\xc3\xbccken nicht am Start. Aber nach Spa\xc3\x9f sieht es trotzdem aus :) #nostalgie #wrestling'",b'Wrestling-Gala in Saarbr\xc3\xbccken',https://www.facebook.com/SRonline.de/videos/1273105776037248/,63.0,3.0,1.0,0.0,0.0,0.0,8.0,32.0,0.0,1.0,2016-04-18 18:51:52,0,0,0,0,1,1,0,1,0,1,201604,0,107.0
869,872,20381,Frankfurter Rundschau,134100583282150.0,1368734836485379,2016-04-15 00:00:00,SEP-REP,2016-04-18 09:05:59,photo,b'Der Terrorexperte Peter Neumann spricht im Interview \xc3\xbcber die Terrormiliz IS: www.fr.de/neumann',b'Timeline Photos',https://www.facebook.com/FrankfurterRundschau/photos/a.142686969090178.25855.134100583282150/1368734836485379/?type=3,3.0,0.0,0.0,1.0,0.0,2.0,7.0,1.0,0.0,1.0,2016-04-18 09:05:59,0,0,0,0,1,1,1,0,0,2,201604,1,14.0
870,873,20530,JUNGE FREIHEIT,13479664941.0,10154782972209942,2016-04-15 00:00:00,SEP-REP,2016-04-17 09:57:49,photo,"b'""Mit Liebe und Teetrinken gegen den Terrorismus?"" - Karlheinz Wei\xc3\x9fmann nimmt in seiner Kolumne GegenAufkl\xc3\xa4rung die Vorschl\xc3\xa4ge K\xc3\xa4\xc3\x9fmanns aufs Korn: https://jungefreiheit.de/service/probeabo-bestellen/'",b'Timeline Photos',https://www.facebook.com/jungefreiheit/photos/a.431214844941.223524.13479664941/10154782972209942/?type=3,289.0,0.0,0.0,111.0,0.0,21.0,39.0,55.0,0.0,1.0,2016-04-17 09:57:49,0,0,0,0,1,1,1,0,0,2,201604,1,515.0
871,874,20532,JUNGE FREIHEIT,13479664941.0,10154788152439942,2016-04-15 00:00:00,SEP-REP,2016-04-19 08:56:45,link,"b'Die GSG 9 hat am Dienstag f\xc3\xbcnf terrorverd\xc3\xa4chtige Rechtsextremisten im s\xc3\xa4chsischen Freital festgenommen. Die Bundesanwaltschaft wirft ihnen vor, eine terroristische Vereinigung gegr\xc3\xbcndet und mit B\xc3\xb6llern Sprengstoffanschl\xc3\xa4ge auf Asylunterk\xc3\xbcnfte ver\xc3\xbcbt zu haben. >>'",b'GSG 9 nimmt f\xc3\xbcnf mutma\xc3\x9fliche Rechtsterroristen fest',https://jungefreiheit.de/politik/deutschland/2016/gsg-9-nimmt-fuenf-mutmassliche-rechtsterroristen-fest/,198.0,3.0,15.0,215.0,7.0,70.0,303.0,203.0,0.0,1.0,2016-04-19 08:56:45,0,0,0,0,1,1,0,0,1,0,201604,1,1014.0
872,875,20559,junge Welt,123292927706635.0,992496967452889,2016-05-09 00:00:00,SEP-REP,2016-05-09 08:00:06,link,"b'Der neue B\xc3\xbcrgermeister von #London hei\xc3\x9ft #SadiqKhan. Er ist damit das erste muslimische Stadtoberhaupt Gro\xc3\x9fbritanniens. Auch in anderen St\xc3\xa4dten erreichte Labour achtbare Erfolge. F\xc3\xbcr die Parteif\xc3\xbchrung um Jeremy Corbyn bedeutet dies, dass die vom rechten Parteifl\xc3\xbcgel gegen sie geplante \xc2\xbbNacht der langen Messer\xc2\xab einmal mehr verschoben wurde.\n\nFoto: EPA/Hannah Mckay/dpa - Bildfunk'",b'Linkes Potential - junge Welt -',https://www.jungewelt.de/2016/05-09/027.php,44.0,1.0,0.0,0.0,0.0,0.0,3.0,8.0,0.0,1.0,2016-05-09 08:00:06,0,0,0,0,1,1,0,0,1,0,201605,0,56.0
873,876,20582,Süddeutsche Zeitung,215982125159841.0,1031741770250535,2016-05-09 00:00:00,SEP-REP,2016-05-10 09:53:38,video,b'Nach der Messerattacke herrscht Ausnahmezustand in Grafing Bahnhof.',b'Messerattacke in Grafing Bahnhof',https://www.facebook.com/ihre.sz/videos/1031741770250535/,57.0,0.0,3.0,0.0,45.0,41.0,57.0,50.0,0.0,1.0,2016-05-10 09:53:38,0,0,0,0,1,1,0,1,0,1,201605,0,253.0
874,877,20616,Monitor,186702484702033.0,1069179253121014,2016-05-09 00:00:00,SEP-REP,2016-05-11 22:21:36,link,"b'Wieviel Werte ist die EU bereit preis zu geben, um sich das l\xc3\xa4stige Fl\xc3\xbcchtlingsproblem vom Hals zu halten? Wie weit kann Erdogan gehen bei seinen Angriffen gegen\xc3\xbcber Meinungs- und Pressefreiheit? Hier der aktuelle Tagesthemen-Kommentar von Monika Wagener.'","b'Der Kommentar von Monika Wagener, WDR, zur Visa- und Fl\xc3\xbcchtlingsfrage'",https://www.tagesschau.de/multimedia/video/video-182569.html,313.0,1.0,0.0,1.0,13.0,19.0,32.0,161.0,0.0,1.0,2016-05-11 22:21:36,0,0,0,0,1,1,0,0,1,0,201605,0,540.0
875,878,20705,London Evening Standard,165348596842143.0,1162084847168508,2016-05-09 00:00:00,SEP-REP,2016-05-15 09:30:01,link,b'His mum had taken him in before he murdered her and her friend.',b'Milkman jailed for murdering mum and friend in frenzied knife attack',https://www.standard.co.uk/news/crime/milkman-jailed-for-double-murder-of-his-mum-and-her-friend-in-frenzied-knife-attack-a3248266.html,18.0,0.0,1.0,0.0,0.0,7.0,4.0,9.0,0.0,1.0,2016-05-15 09:30:01,0,0,0,0,1,1,0,0,1,0,201605,0,39.0
876,879,20716,Daily Express,129617873765147.0,1169365819790342,2016-05-09 00:00:00,SEP-REP,2016-05-12 14:50:00,link,b'Death knell for Cameron',b'PM warned over No.10 future in Vote Leave shock attack as Farage debate sparks furious row',http://www.express.co.uk/news/politics/669690/EU-referendum-row-David-Cameron-Nigel-Farage-ITV-debate-Vote-Leave-Boris-Johnson,186.0,5.0,3.0,6.0,1.0,3.0,27.0,102.0,0.0,1.0,2016-05-12 14:50:00,0,0,0,0,1,1,0,0,1,0,201605,0,333.0
877,880,20730,Daily Express,129617873765147.0,1171135886280002,2016-05-09 00:00:00,SEP-REP,2016-05-14 11:40:01,link,b'The shocking attacks follow over a million migrant coming to the country',b'Anger in Germany as refugee centres targeted by 45 arson attacks in just FIVE months',http://www.express.co.uk/news/world/670262/Germany-refugee-centres-targeted-45-arson-attacks-FIVE-months,291.0,3.0,6.0,36.0,1.0,13.0,78.0,147.0,0.0,1.0,2016-05-14 11:40:01,0,0,0,0,1,1,0,0,1,0,201605,0,575.0
878,881,20785,The Times and The Sunday Times,147384458624178.0,1277632465599366,2016-05-09 00:00:00,SEP-REP,2016-05-14 21:40:04,link,b'Too far?',"b""Cannes terror attack was just a 'really bad joke'""",http://thetim.es/1V2bzEE,16.0,0.0,0.0,0.0,0.0,3.0,2.0,2.0,0.0,1.0,2016-05-14 21:40:04,0,0,0,0,1,1,0,0,1,0,201605,0,23.0
879,882,20809,Sky News,164665060214766.0,1343499068998020,2016-05-09 00:00:00,SEP-REP,2016-05-10 08:30:00,video,b'A simulated terror attack has seen volunteers covered in fake blood and an actor playing a terrorist',b'Shopping Centre Terror Drill',https://www.facebook.com/skynews/videos/1343499068998020/,1289.0,4.0,61.0,24.0,10.0,50.0,324.0,567.0,0.0,1.0,2016-05-10 08:30:00,0,0,0,0,1,1,0,1,0,1,201605,1,2329.0
880,883,20814,Sky News,164665060214766.0,1344173288930598,2016-05-09 00:00:00,SEP-REP,2016-05-11 07:50:20,video,b'Manchester United players filmed themselves as their bus was attacked with a barrage of beer bottles thrown by West Ham United FC fans',"b""Manchester United's Bus Attacked By West Ham Fans""",https://www.facebook.com/skynews/videos/1344173288930598/,1989.0,18.0,134.0,69.0,30.0,319.0,653.0,1025.0,0.0,1.0,2016-05-11 07:50:20,0,0,0,0,1,1,0,1,0,1,201605,0,4237.0
881,884,20879,WAZ,117194401183.0,10153367338701184,2016-05-09 00:00:00,SEP-REP,2016-05-09 04:29:22,link,"b'Der Landeschef der Gewerkschaft der Polizei (GdP) sagt: \xe2\x80\x9eDie Respektlosigkeit, Aggressivit\xc3\xa4t, ein fortschreitender Werteverfall und eine gesunkene Hemmschwelle haben ein unertr\xc3\xa4gliches Ma\xc3\x9f angenommen.\xe2\x80\x9c'",b'14.000 Angriffe auf NRW-Polizisten pro Jahr - Zahl gestiegen',http://www.derwesten.de/politik/angriffe-auf-polizisten-nehmen-zu-forderung-nach-bodycams-id11809413.html,62.0,1.0,1.0,4.0,17.0,53.0,29.0,29.0,0.0,1.0,2016-05-09 04:29:22,0,0,0,0,1,1,0,0,1,0,201605,0,196.0
882,885,20947,BBC News,228735667216.0,10153599618662217,2016-05-09 00:00:00,SEP-REP,2016-05-10 14:54:37,video,"b'Police in Manchester have apologised for this mock terror attack featuring a fake Islamist bomber shouting ""Allahu Akbar"".\nhttp://bbc.in/27aG001'",missing_value,https://www.facebook.com/bbcnews/videos/10153599618662217/,5863.0,28.0,228.0,807.0,78.0,1212.0,2580.0,2288.0,0.0,1.0,2016-05-10 14:54:37,1,0,0,0,0,1,0,1,0,1,201605,1,13084.0
883,886,20964,Augsburger Allgemeine,121104385783.0,10153640793985784,2016-05-09 00:00:00,SEP-REP,2016-05-11 08:09:21,link,"b'Die Gro\xc3\x9feltern h\xc3\xa4tten alles getan, um ihrem Enkel zu helfen, sagen sie. Der mutma\xc3\x9fliche Messerstecher von Grafing, der offenbar psychische Probleme hat, hatte sich zwei Tage vor der Tat noch behandeln lassen.'",b'Der Messerstecher von Grafing war kurz zuvor noch in einer Klinik',http://www.augsburger-allgemeine.de/bayern/Der-Messerstecher-von-Grafing-war-kurz-zuvor-noch-in-einer-Klinik-id37744162.html,23.0,0.0,0.0,0.0,13.0,6.0,9.0,4.0,0.0,1.0,2016-05-11 08:09:21,0,0,0,0,1,1,0,0,1,0,201605,0,55.0
884,887,21011,Channel 4 News,6622931938.0,10153739679346939,2016-05-09 00:00:00,SEP-REP,2016-05-10 12:20:05,video,"b""Police in Greater Manchester carried out a simulated terror attack to test their response.\n\nIt featured a mock suicide bomber shouting 'Allahu Akbar' - and they have since released an apology for the inclusion of the phrase.""",b'Mock terrorist attack staged by police in Manchester',https://www.facebook.com/Channel4News/videos/10153739679346939/,6315.0,75.0,268.0,113.0,137.0,1529.0,3046.0,10581.0,0.0,1.0,2016-05-10 12:20:05,0,0,0,0,1,1,0,1,0,1,201605,1,22064.0
885,888,21013,Channel 4 News,6622931938.0,10153741902571939,2016-05-09 00:00:00,SEP-REP,2016-05-11 13:16:27,video,b'Bottles and cans greet the Manchester United team as they arrive for the last ever match at West Ham United FC\xe2\x80\x99s Boleyn ground.\n \nThe club say they will ban for life the fans responsible.',b'Man Utd team bus attacked at Upton Park',https://www.facebook.com/Channel4News/videos/10153741902571939/,452.0,4.0,26.0,15.0,10.0,63.0,163.0,283.0,0.0,1.0,2016-05-11 13:16:27,0,0,0,0,1,1,0,1,0,1,201605,0,1016.0
886,889,21033,SÜDWEST PRESSE Online,167154977630.0,10154007038752631,2016-05-09 00:00:00,SEP-REP,2016-05-14 15:37:41,video,"b'Das Spiel l\xc3\xa4uft, die Fans sind von Beginn an gut in Form. #fanattackulm #weareorange #uuulmer'",missing_value,https://www.facebook.com/suedwestpresse/videos/10154007038752631/,39.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,2016-05-14 15:37:41,0,0,0,0,1,1,0,1,0,1,201605,0,41.0
887,890,21055,SPIEGEL ONLINE,38246844868.0,10154192686449869,2016-05-09 00:00:00,SEP-REP,2016-05-10 09:35:19,video,"b'Messerangriff am S-Bahnhof Grafing - ein Toter, drei Verletzte:'",missing_value,https://www.facebook.com/spiegelonline/videos/10154192686449869/,138.0,1.0,6.0,2.0,103.0,101.0,126.0,118.0,0.0,1.0,2016-05-10 09:35:19,0,0,0,0,1,1,0,1,0,1,201605,0,595.0
888,891,21090,WELT,97515118114.0,10154261518748115,2016-05-09 00:00:00,SEP-REP,2016-05-10 09:19:21,video,b'Das ist bisher \xc3\xbcber die Messerattacke bei M\xc3\xbcnchen bekannt.',b'Messerattacke in Grafing bei M\xc3\xbcnchen',https://www.facebook.com/welt/videos/10154261518748115/,171.0,1.0,6.0,0.0,86.0,113.0,109.0,202.0,0.0,1.0,2016-05-10 09:19:21,0,0,0,0,1,1,0,1,0,1,201605,0,688.0
889,892,21091,WELT,97515118114.0,10154262043838115,2016-05-09 00:00:00,SEP-REP,2016-05-10 14:50:16,video,b'Das sind die neuesten Fakten zum Messerstecher von Grafing.',b'Pressekonferenz zum Messerstecher von Grafing',https://www.facebook.com/welt/videos/10154262043838115/,127.0,0.0,5.0,0.0,34.0,57.0,79.0,274.0,0.0,1.0,2016-05-10 14:50:16,0,0,0,0,1,1,0,1,0,1,201605,0,576.0
890,893,21125,Bild,25604775729.0,10154395557725730,2016-05-09 00:00:00,SEP-REP,2016-05-13 17:30:00,video,b'Eigentlich wollte Model Jess Adams einem Freund nur einen Gefallen tun. Doch die Fotoshooting-Drohne ging direkt ins Auge. \n\n(via BILD Video)',b'Model Jess Adams von Drohne attackiert',https://www.facebook.com/bild/videos/10154395557725730/,327.0,1.0,28.0,75.0,6.0,6.0,147.0,166.0,0.0,1.0,2016-05-13 17:30:00,0,0,0,0,1,1,0,1,0,1,201605,0,756.0
891,894,21195,ZDF,154149027994068.0,1038274166248212,2016-06-13 00:00:00,ISLAMIST,2016-06-13 08:06:00,video,"b'Schlemmen wie in Frankreich: Die Charlotte sieht aus wie eine Torte, ist aber eigentlich ein Dessert, das zu besonders festlichen Anl\xc3\xa4ssen serviert wird. Das Dessert in den franz\xc3\xb6sischen Nationalfarben sieht aus wie ein kleines Kunstwerk - ist aber relativ einfach zuzubereiten. Viel Spa\xc3\x9f beim Nachbacken :) .\n\nZutaten Boden \n50 L\xc3\xb6ffelbiskuits 120 g weiche Butter\nZutaten F\xc3\xbcllung & Topping\n850 g Erdbeeren\n250 g Mascarpone\n500 g Magerquark\n130 g Zucker\n200 g Schlagsahne\n13 Blatt Gelatine\n5 EL Puderzucker Saft von 1/2 Zitrone\netwas Minze\n\nVon den L\xc3\xb6ffelbiskuits so viele, wie zum Auslegen des Randes der Form ben\xc3\xb6tigt sind, nehmen und je 1/4 mit einem S\xc3\xa4gemesser vorsichtig abschneiden. Die l\xc3\xa4ngeren St\xc3\xbccke beiseitelegen. Die k\xc3\xbcrzeren Biskuit-Enden mit den restlichen L\xc3\xb6ffelbiskuits in einen Gefrierbeutel geben und mit einer Teigrolle fein zerbr\xc3\xb6seln. Die Butter schmelzen und mit den Br\xc3\xb6seln vermengen. Den Boden der Springform mit Backpapier auslegen und die Br\xc3\xb6selmasse darin gleichm\xc3\xa4\xc3\x9fig flachdr\xc3\xbccken. Jetzt die langen Biskuit-St\xc3\xbccke mit der abgeschnittenen Seite nach unten rundherum an den Rand der Springform aufstellen und den Keksboden und \xe2\x80\x93rand circa 1 Stunde in den K\xc3\xbchlschrank stellen.\n\nZubereitung F\xc3\xbcllung & Topping\nErdbeeren waschen und putzen. Ein paar Erdbeeren zum Verzieren beiseitelegen. Von den restlichen Erdbeeren 300 g p\xc3\xbcrieren und 100 g in kleine W\xc3\xbcrfel schneiden.\nMascarpone, Quark und Zucker in einer Sch\xc3\xbcssel verr\xc3\xbchren. Jetzt Erdbeerp\xc3\xbcree und -w\xc3\xbcrfel untermischen. Die Sahne steif schlagen und anschlie\xc3\x9fend vorsichtig unter die Quarkmasse heben.\n8 Blatt Gelatine in kaltem Wasser einweichen. Dann die Gelatine ausdr\xc3\xbccken, vorsichtig aufl\xc3\xb6sen. Zuerst nur 2-3 EL Quarkmasse unterr\xc3\xbchren, dann die Quark-Gelatine-Masse unter die restliche Quarkmasse r\xc3\xbchren. Diese F\xc3\xbcllung auf dem Boden verteilen und wieder circa 1 Stunde im K\xc3\xbchlschrank fest werden lassen.\n\nDie restlichen Erdbeeren, Puderzucker und Zitronensaft zusammen p\xc3\xbcrieren und durch ein Sieb streichen. 5 Blatt Gelatine in kaltem Wasser einweichen, ausdr\xc3\xbccken und vorsichtig aufl\xc3\xb6sen. 2-3 EL Erdbeerp\xc3\xbcree unterr\xc3\xbchren, dann alles unter das Erdbeer-Puderzucker- Zitronensaft-P\xc3\xbcree r\xc3\xbchren. Die Masse auf dem gek\xc3\xbchlten Kuchen verteilen und noch einmal f\xc3\xbcr circa 1,5 Stunden kalt stellen. Danach die Charlotte vorsichtig aus der Form l\xc3\xb6sen, dekorieren und genie\xc3\x9fen.\n#keinFu\xc3\x9fball'",b'Schlemmen wie in Frankreich: Erdbeer-Charlotte',https://www.facebook.com/ZDF/videos/1038274166248212/,294.0,22.0,3.0,0.0,1.0,0.0,7.0,165.0,0.0,3.0,2016-06-13 08:06:00,1,0,0,0,0,0,0,1,0,1,201606,0,492.0
892,895,21213,Neue Westfälische,215604728519502.0,1055645737848726,2016-06-13 00:00:00,ISLAMIST,2016-06-17 11:44:05,link,"b'Polizeipr\xc3\xa4sidentin bedankt sich f\xc3\xbcr ""au\xc3\x9fergew\xc3\xb6hnlich couragiertes Verhalten"" bei Busfahrer Markus R. Er hatte einen Mann daran gehindert, weiter auf seine Frau einzustechen.'",b'Nach Messerattacke: Polizeipr\xc3\xa4sidentin bedankt sich bei mutigem Busfahrer',http://on.nw.de/KJE,45.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,3.0,2016-06-17 11:44:05,1,0,0,0,0,0,0,0,1,0,201606,0,49.0
893,896,21218,Süddeutsche Zeitung,215982125159841.0,1056772437747468,2016-06-13 00:00:00,ISLAMIST,2016-06-13 06:51:00,photo,"b'Statt amerikanische Flaggen zu zeigen, bekunden US-St\xc3\xa4dte ihre Solidarit\xc3\xa4t mit den Opfern durch Regenbogenfarben. #lovewins\n#Orlandoshooting'",b'Timeline Photos',https://www.facebook.com/ihre.sz/photos/a.488243851266999.1073741825.215982125159841/1056772437747468/?type=3,2662.0,140.0,5.0,2.0,106.0,1.0,16.0,112.0,0.0,3.0,2016-06-13 06:51:00,1,0,0,0,0,0,1,0,0,2,201606,0,3044.0
894,897,21228,Süddeutsche Zeitung,215982125159841.0,1057838527640859,2016-06-13 00:00:00,ISLAMIST,2016-06-14 18:31:57,photo,"b'Das Gerede von Donald J. Trump \xc3\xbcber Muslime bringe die Amerikaner gegeneinander auf, schimpft Barack Obama.\n\n""Wenn wir alle Muslime \xc3\xbcber einen Kamm scheren, gehen wir denen auf den Leim, die einen Krieg zwischen dem Islam und dem Westen oder den USA wollen, dann erledigen wir die Arbeit der Terroristen."" (Bild: AP)'",b'Timeline Photos',https://www.facebook.com/ihre.sz/photos/a.488243851266999.1073741825.215982125159841/1057838527640859/?type=3,1104.0,39.0,2.0,3.0,0.0,4.0,53.0,51.0,0.0,3.0,2016-06-14 18:31:57,1,0,0,0,0,0,1,0,0,2,201606,1,1256.0
895,898,21238,Süddeutsche Zeitung,215982125159841.0,1059190370839008,2016-06-13 00:00:00,ISLAMIST,2016-06-16 20:16:46,photo,b'Deutsche Abwehr und polnischer Angriff lernen sich langsam besser kennen.',b'Timeline Photos',https://www.facebook.com/ihre.sz/photos/a.488243851266999.1073741825.215982125159841/1059190370839008/?type=3,26.0,1.0,0.0,6.0,0.0,0.0,5.0,2.0,0.0,3.0,2016-06-16 20:16:46,1,0,0,0,0,0,1,0,0,2,201606,0,40.0
896,899,21276,Metro,117118184990145.0,1087848104583810,2016-06-13 00:00:00,ISLAMIST,2016-06-18 07:18:46,link,b'Jo Cox died after being stabbed and shot on Thursday',b'Tommy Mair charged with murder after Jo Cox shooting',http://metro.co.uk/2016/06/18/tommy-mair-charged-with-murder-after-jo-cox-shooting-5952002/,92.0,1.0,1.0,0.0,10.0,6.0,9.0,6.0,0.0,3.0,2016-06-18 07:18:46,1,0,0,0,0,0,0,0,1,0,201606,0,125.0
897,900,21282,Monitor,186702484702033.0,1088070464565226,2016-06-13 00:00:00,ISLAMIST,2016-06-14 11:44:51,status,"b'Homophobie t\xc3\xb6tet: Orlando geht uns alle an!\n\nNur einen Gedanken zum Anschlag von Orlando: Was w\xc3\xa4re wohl geschehen, wenn sich der Anschlag in Orlando gegen Schwarze, gegen Juden oder gegen Christen gerichtet h\xc3\xa4tte? Dieses Land h\xc3\xa4tte sich solidarisiert, h\xc3\xa4tte Rassismus, Antisemitismus oder Hass gegen Christen zum Thema gemacht - zurecht! Aber jetzt: Ein Angriff auf Schwule und Lesben, und die Politiker - von ein paar Ausnahmen abgesehen - schweigen dar\xc3\xbcber, wem dieser Anschlag eigentlich gegolten hat. Kein deutlicher Aufruf gegen Homophobie, die in Orlando 50 Menschen das Leben kostete. Keine ausdr\xc3\xbcckliche Solidarit\xc3\xa4t mit einer Community, deren Vertreter in zahlreichen L\xc3\xa4ndern dieser Welt noch immer verfolgt, gedem\xc3\xbctigt, ermordet werden. Kein klares Wort der Kanzlerin, des Bundespr\xc3\xa4sidenten oder der Kirche. Als handele es sich um eine Minderheit, die nicht des besonderen Schutzes bed\xc3\xbcrfe - und nicht der Solidarit\xc3\xa4t einer Gesellschaft, die sich doch sonst so gerne als frei bezeichnet.\n\nGeorg Restle'",missing_value,missing_value,1637.0,8.0,1.0,4.0,207.0,149.0,115.0,769.0,0.0,3.0,2016-06-14 11:44:51,1,0,0,0,0,0,0,0,0,0,201606,0,2890.0
898,901,21392,London Evening Standard,165348596842143.0,1182913471752312,2016-06-13 00:00:00,ISLAMIST,2016-06-13 08:13:00,video,"b'He said: ""It is one of the worst atrocities committed against LGBT people in the western world for generations and it has to be called out as such""'",b'The moment Owen Jones walked off Sky News paper review over Orlando shooting',https://www.standard.co.uk/news/world/owen-jones-storms-off-sky-news-paper-review-over-orlando-shooting-a3269851.html,465.0,22.0,4.0,18.0,3.0,6.0,133.0,119.0,0.0,3.0,2016-06-13 08:13:00,1,0,0,0,0,0,0,1,0,1,201606,0,770.0
899,902,21403,London Evening Standard,165348596842143.0,1185335278176798,2016-06-13 00:00:00,ISLAMIST,2016-06-16 14:00:51,link,b'Ms Cox is fighting for life in hospital after the attack',b'Politicians in shock after Jo Cox MP shot',https://www.standard.co.uk/news/crime/jo-cox-mps-react-after-yorkshire-politician-stabbed-and-shot-a3273726.html,41.0,1.0,3.0,0.0,27.0,2.0,10.0,18.0,0.0,3.0,2016-06-16 14:00:51,1,0,0,0,0,0,0,0,1,0,201606,0,102.0
900,903,21413,London Evening Standard,165348596842143.0,1186715861372073,2016-06-13 00:00:00,ISLAMIST,2016-06-18 08:42:19,link,"b'An ""innocent man"" suffered serious injuries after being shot while he stood at the bar'","b'\xc2\xa310,000 offered in hunt for gunmen after Southwark pub shooting'",https://www.standard.co.uk/news/crime/10000-offered-in-hunt-for-gunmen-after-southwark-pub-shooting-of-innocent-man-a3275076.html,17.0,1.0,4.0,0.0,3.0,0.0,0.0,8.0,0.0,3.0,2016-06-18 08:42:19,1,0,0,0,0,0,0,0,1,0,201606,0,33.0
901,904,21429,Daily Express,129617873765147.0,1198799666846957,2016-06-13 00:00:00,ISLAMIST,2016-06-17 15:51:50,link,b'Absolutely tragic...',"b""Jo Cox's tragic last words revealed as Cameron says her death was 'an attack on democracy'""",http://www.express.co.uk/news/uk/680850/Jo-Cox-murder-counter-terror-police-Labour-MP-Birstall,186.0,2.0,0.0,3.0,76.0,19.0,109.0,72.0,0.0,3.0,2016-06-17 15:51:50,1,0,0,0,0,0,0,0,1,0,201606,0,467.0
902,905,21431,Daily Express,129617873765147.0,1198999656826958,2016-06-13 00:00:00,ISLAMIST,2016-06-17 20:28:57,link,b'He says Europe has nothing left after rejecting Christianity',b'\xe2\x80\x98EU is tearing itself apart because it has NO shared values\xe2\x80\x99 Ex-Polish leader in scathing attack',http://www.express.co.uk/news/politics/680989/EU-falling-apart-has-no-shared-values-Lech-Walesa-in-scathing-attack,501.0,26.0,4.0,14.0,2.0,2.0,81.0,307.0,0.0,3.0,2016-06-17 20:28:57,1,0,0,0,0,0,0,0,1,0,201606,0,937.0
903,906,21451,City AM,213682385348579.0,1214862451897229,2016-06-13 00:00:00,ISLAMIST,2016-06-17 06:50:17,link,"b'""There can be no doubt that this brutal crime constitutes an attack on our democracy and on the principles that underpin it.""'","b""Jo Cox's brutal killing is an attack on democracy""",http://www.cityam.com/243524/jo-coxs-brutal-killing-attack,6.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,2016-06-17 06:50:17,1,0,0,0,0,0,0,0,1,0,201606,0,8.0
904,907,21461,The Times and The Sunday Times,147384458624178.0,1298281936867752,2016-06-13 00:00:00,ISLAMIST,2016-06-13 19:38:36,video,"b'President Obama has called US gun laws the ""greatest frustration"" of his presidency #OrlandoShootings. Read more: http://bit.ly/greatestfrustration'",b'Obama after the Orlando shooting',https://www.facebook.com/timesandsundaytimes/videos/1298281936867752/,103.0,0.0,0.0,0.0,10.0,11.0,19.0,28.0,0.0,3.0,2016-06-13 19:38:36,1,0,0,0,0,0,0,1,0,1,201606,0,171.0
905,908,21466,The Times and The Sunday Times,147384458624178.0,1300209283341684,2016-06-13 00:00:00,ISLAMIST,2016-06-16 16:31:50,video,"b'Police have confirmed that The Labour Party MP Jo Cox has died after being stabbed and shot in Birstall, Leeds. Exclusive footage obtained by The Sunday Times shows police restraining a 52-year-old man following the attack. Read more: http://bit.ly/JoCoxMP'",b'The moment that the man who attacked Labour MP Jo Fox is restr...',https://www.facebook.com/timesandsundaytimes/videos/1300209283341684/,62.0,0.0,1.0,0.0,53.0,21.0,53.0,67.0,0.0,3.0,2016-06-16 16:31:50,1,0,0,0,0,0,0,1,0,1,201606,0,257.0
906,909,21468,The Times and The Sunday Times,147384458624178.0,1301688206527125,2016-06-13 00:00:00,ISLAMIST,2016-06-18 16:11:03,link,b'An Isis terror cell was planning to attack football fans.',"b""Police foil 'massive terror attack' on Belgium V Ireland""",http://thetim.es/1Ufr4F5,163.0,2.0,12.0,0.0,1.0,17.0,12.0,58.0,0.0,3.0,2016-06-18 16:11:03,1,0,0,0,0,0,0,0,1,0,201606,1,265.0
907,910,21491,Daily Mail,164305410295882.0,1357586357634442,2016-06-13 00:00:00,ISLAMIST,2016-06-13 23:14:56,video,"b""Vigil in honour of Orlando shooting victims at NYC's historic Stonewall Inn""",missing_value,https://www.facebook.com/DailyMail/videos/1357586357634442/,1477.0,289.0,10.0,14.0,300.0,25.0,377.0,242.0,0.0,3.0,2016-06-13 23:14:56,1,0,0,0,0,0,0,1,0,1,201606,0,2734.0
908,911,21494,Daily Mail,164305410295882.0,1358014107591667,2016-06-13 00:00:00,ISLAMIST,2016-06-14 09:20:05,video,"b""He's been left with 'life-changing injuries' after 'unprovoked attack'""","b""Russian hooligans chanted 'Die, die, die' at England fan as police saved his life""",http://dailym.ai/1U6uLgd,165.0,4.0,7.0,1.0,59.0,106.0,96.0,66.0,0.0,3.0,2016-06-14 09:20:05,1,0,0,0,0,0,0,1,0,1,201606,0,504.0
909,912,21501,The Daily Star,161612017189003.0,1358398640843662,2016-06-13 00:00:00,ISLAMIST,2016-06-15 02:54:43,link,b'Here we go again...',b'BREAKING: Violence erupts as Russian \xe2\x80\x98Ultras\xe2\x80\x99 attack England fans leaving pub in Lille',http://www.dailystar.co.uk/news/latest-news/523027/euro-2016-russian-ultras-attack-england-fans-lille-pub-video,81.0,0.0,0.0,0.0,4.0,10.0,26.0,17.0,0.0,3.0,2016-06-15 02:54:43,1,0,0,0,0,0,0,0,1,0,201606,0,138.0
910,913,21507,Daily Mail,164305410295882.0,1358874467505631,2016-06-13 00:00:00,ISLAMIST,2016-06-15 02:45:15,video,"b""'I am sorry that our tragedy here in Sandy Hook wasn't enough to save your loved ones'""","b""Sandy Hook victim's mom pens open letter after Orlando shooting""",http://dailym.ai/1XVRvpZ,216.0,13.0,0.0,1.0,98.0,0.0,38.0,33.0,0.0,3.0,2016-06-15 02:45:15,1,0,0,0,0,0,0,1,0,1,201606,0,399.0
911,914,21540,The Daily Star,161612017189003.0,1361755307174662,2016-06-13 00:00:00,ISLAMIST,2016-06-18 21:04:44,link,b'London police are not taking any chances after the Orlando shootings',"b""More police at London Pride 2016 after 'increased concerns' following Orlando shootings""",http://www.dailystar.co.uk/news/latest-news/523921/Gay-Pride-London-2016-increased-police-Orlando-Shootings-Pulse,29.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,3.0,2016-06-18 21:04:44,1,0,0,0,0,0,0,0,1,0,201606,0,33.0
912,915,21555,Sky News,164665060214766.0,1370529899628270,2016-06-13 00:00:00,ISLAMIST,2016-06-13 07:30:00,video,"b""#Orlando shooting suspect Omar Mateen's ex-wife has spoken of their marriage, saying he was a violent, short tempered man""","b""Gunman's Ex-Wife On Violence And Temper""",https://www.facebook.com/skynews/videos/1370529899628270/,972.0,3.0,19.0,5.0,183.0,95.0,189.0,501.0,0.0,3.0,2016-06-13 07:30:00,1,0,0,0,0,0,0,1,0,1,201606,0,1967.0
913,916,21567,Sky News,164665060214766.0,1373775612637032,2016-06-13 00:00:00,ISLAMIST,2016-06-16 15:20:39,video,b'Friends of the victims in the Orlando Pulse nightclub shooting are being tattooed in memory of those who lost their lives. Sky News is live at Ink Spot in Orlando. Send your questions to Cordelia Lynch.',missing_value,https://www.facebook.com/skynews/videos/1373775612637032/,1058.0,287.0,16.0,10.0,128.0,15.0,309.0,108.0,0.0,3.0,2016-06-16 15:20:39,1,0,0,0,0,0,0,1,0,1,201606,0,1931.0
914,917,21568,Sky News,164665060214766.0,1373969735950953,2016-06-13 00:00:00,ISLAMIST,2016-06-16 18:46:47,video,"b'Jeremy Corbyn says Jo Cox was ""loved and admired"" at a vigil for the Labour MP, who died today after an attack in her constituency'",b'Corbyn Speaks At Vigil For Jo Cox',https://www.facebook.com/skynews/videos/1373969735950953/,1359.0,66.0,4.0,1.0,577.0,9.0,129.0,752.0,0.0,3.0,2016-06-16 18:46:47,1,0,0,0,0,0,0,1,0,1,201606,0,2897.0
915,918,21702,WAZ,117194401183.0,10153447059276184,2016-06-13 00:00:00,ISLAMIST,2016-06-19 04:00:01,photo,b'Heute in der Digitalen WAZ am Sonntag: \n\nFestnahmen bei Anti-Terror-Einsatz in Belgien\n\nKnapp drei Monate nach den Anschl\xc3\xa4gen in Br\xc3\xbcssel haben Sicherheitskr\xc3\xa4fte am Samstag bei Anti-Terror-Eins\xc3\xa4tzen in Belgien zw\xc3\xb6lf Verd\xc3\xa4chtige festgenommen. Mit der Razzia ist offenbar ein Anschlag auf Fu\xc3\x9fballfans verhindert worden.\n\nHIER GEHTS ZUR APP: http://www.derwesten.de/digital/index.php?ID=gOxLh5dD5QER_KV9pEJwxxH1skV4SlBrZnSaDSEUNs05OMMoH_TE4w1JuOyN82ilzvh1VniuwFhggK&Titel=WAZ&xtatc=INT-176-intext',b'Timeline Photos',https://www.facebook.com/waz/photos/a.181313716183.130756.117194401183/10153447059276184/?type=3,8.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,3.0,2016-06-19 04:00:01,1,0,0,0,0,0,1,0,0,2,201606,1,13.0
916,919,21771,BBC News,228735667216.0,10153677382357217,2016-06-13 00:00:00,ISLAMIST,2016-06-14 17:37:08,video,b'Remembering the victims of the #Orlando mass shooting \nhttp://bbc.in/1Yo62sA',missing_value,https://www.facebook.com/bbcnews/videos/10153677382357217/,3247.0,226.0,8.0,13.0,2301.0,32.0,289.0,762.0,0.0,3.0,2016-06-14 17:37:08,1,0,0,0,0,0,0,1,0,1,201606,0,6878.0
917,920,21827,Handelsblatt,104709558232.0,10153747776148233,2016-06-13 00:00:00,ISLAMIST,2016-06-14 16:00:00,video,"b'Wenige Stunden nach Bekanntwerden des Anschlags in Orlando versammelten sich am Sonntagabend 500 Menschen vor dem Stonewall Inn, einem f\xc3\xbcr Homosexuelle historischen Ort der Gleichberechtigung. Danke an die Fotos an unseren Mitarbeiter vor Ort, Domenico Sciurti.'",missing_value,https://www.facebook.com/handelsblatt/videos/10153747776148233/,22.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,3.0,2016-06-14 16:00:00,1,0,0,0,0,0,0,1,0,1,201606,0,24.0
918,921,21850,Channel 4 News,6622931938.0,10153814663311939,2016-06-13 00:00:00,ISLAMIST,2016-06-13 14:13:27,video,"b'""You can be who you want to be here...We just want to be accepted."" \n\nOne survivor talks about escaping the Orlando nightclub where 50 people were killed.'",b'Pulse shooting survivor on his escape',https://www.facebook.com/Channel4News/videos/10153814663311939/,4293.0,212.0,24.0,9.0,2295.0,31.0,345.0,4668.0,0.0,3.0,2016-06-13 14:13:27,1,0,0,0,0,0,0,1,0,1,201606,0,11877.0
919,922,21851,Channel 4 News,6622931938.0,10153815249056939,2016-06-13 00:00:00,ISLAMIST,2016-06-13 19:45:39,video,"b'""It was a deliberate attack, a terrorist attack on LGBT people.""\n\nOwen Jones speaks to Jon Snow about the worst mass shootings in US history, in which an Orlando gay club was targeted.'","b'ORLANDO: ""A deliberate attack on LGBT people""'",https://www.facebook.com/Channel4News/videos/10153815249056939/,3106.0,207.0,8.0,13.0,220.0,19.0,266.0,1471.0,0.0,3.0,2016-06-13 19:45:39,1,0,0,0,0,0,0,1,0,1,201606,1,5310.0
920,923,21855,ITV News,148007467671.0,10153823821907672,2016-06-13 00:00:00,ISLAMIST,2016-06-13 01:46:56,video,b'Americans sing their national anthem outside the White House during a vigil for the victims of the #OrlandoShooting.',b'National anthem sung outside White House',https://www.facebook.com/itvnews/videos/10153823821907672/,1220.0,109.0,1.0,2.0,240.0,1.0,35.0,115.0,0.0,3.0,2016-06-13 01:46:56,1,0,0,0,0,0,0,1,0,1,201606,0,1723.0
921,924,21860,ITV News,148007467671.0,10153825437362672,2016-06-13 00:00:00,ISLAMIST,2016-06-13 19:39:44,video,"b""A choir sings at a vigil in Old Compton Street - the heart of London's LGBT community - as crowds across the UK paid their respects to the 49 victims murdered at a gay nightclub in Orlando. http://bit.ly/1S2X9xx""","b""Orlando shootings: Choir's tribute at vigil""",https://www.facebook.com/itvnews/videos/10153825437362672/,3074.0,309.0,5.0,1.0,249.0,1.0,42.0,404.0,0.0,3.0,2016-06-13 19:39:44,1,0,0,0,0,0,0,1,0,1,201606,0,4085.0
922,925,21861,ITV News,148007467671.0,10153825594427672,2016-06-13 00:00:00,ISLAMIST,2016-06-13 21:13:54,video,b'A crowd in Manchester sings Something Inside So Strong - one of many vigils held across the UK remembering the Orlando terror attack victims. \n(Tap to listen) http://bit.ly/1S2X9xx',b'Orlando shootings: Singing in solidarity',https://www.facebook.com/itvnews/videos/10153825594427672/,10330.0,1010.0,23.0,4.0,808.0,7.0,213.0,2965.0,0.0,3.0,2016-06-13 21:13:54,1,0,0,0,0,0,0,1,0,1,201606,1,15360.0
923,926,21862,Channel 4 News,6622931938.0,10153827078561939,2016-06-13 00:00:00,ISLAMIST,2016-06-18 16:50:29,video,"b'""What we saw in Orlando was one of the ugliest cocktails of the problems we still see here in America.""\n\nComedian Hasan Minhaj criticizes a room full of U.S politicians for their failure to prevent mass shootings.'","b""Hasan Minhaj's speech on Orlando""",https://www.facebook.com/Channel4News/videos/10153827078561939/,4473.0,284.0,37.0,25.0,10.0,7.0,136.0,1394.0,0.0,3.0,2016-06-18 16:50:29,1,0,0,0,0,0,0,1,0,1,201606,0,6366.0
924,927,21863,ITV News,148007467671.0,10153827209967672,2016-06-13 00:00:00,ISLAMIST,2016-06-14 13:43:51,video,b'Here are the names and faces of the 49 victims of the #OrlandoShooting.',b'The 49 victims of the Orlando massacre',https://www.facebook.com/itvnews/videos/10153827209967672/,1600.0,279.0,3.0,3.0,2997.0,29.0,671.0,2567.0,0.0,3.0,2016-06-14 13:43:51,1,0,0,0,0,0,0,1,0,1,201606,0,8149.0
925,928,21865,ITV News,148007467671.0,10153827431012672,2016-06-13 00:00:00,ISLAMIST,2016-06-14 15:54:06,video,"b'""He shoots the girl next to me ... I\'m thinking \'I\'m next, I\'m dead\'"": #OrlandoShooting survivor recounts the horror of that night.\n\nLatest updates: http://bit.ly/1Q1dkBn'",b'Orlando shooting survivor on the horror of that night',https://www.facebook.com/itvnews/videos/10153827431012672/,387.0,55.0,10.0,0.0,674.0,11.0,93.0,191.0,0.0,3.0,2016-06-14 15:54:06,1,0,0,0,0,0,0,1,0,1,201606,0,1421.0
926,929,21866,ITV News,148007467671.0,10153827473352672,2016-06-13 00:00:00,ISLAMIST,2016-06-14 15:53:54,video,b'US President Barack Obama on the #OrlandoShooting and the latest security update on the so-called Islamic State.\n\nUPDATE: Obama appears 20 minutes in.',b'Barack Obama on the Orlando shooting',https://www.facebook.com/itvnews/videos/10153827473352672/,669.0,164.0,33.0,46.0,81.0,211.0,2051.0,105.0,0.0,3.0,2016-06-14 15:53:54,1,0,0,0,0,0,0,1,0,1,201606,0,3360.0
927,930,21882,ITV News,148007467671.0,10153832209477672,2016-06-13 00:00:00,ISLAMIST,2016-06-16 16:38:38,video,"b'This footage shows the alleged suspect in the shooting of MP Jo Cox, being arrested in a street in Birstall, West Yorkshire.\n\nJo Cox has died of her injuries.\n\nFull story: http://bit.ly/1XrNKHJ'",missing_value,https://www.facebook.com/itvnews/videos/10153832209477672/,3030.0,9.0,73.0,5.0,1238.0,1068.0,1226.0,4529.0,0.0,3.0,2016-06-16 16:38:38,1,0,0,0,0,0,0,1,0,1,201606,0,11178.0
928,931,21885,ITV News,148007467671.0,10153834623087672,2016-06-13 00:00:00,ISLAMIST,2016-06-17 13:44:30,video,"b""Ghulam Maniyar's daughter Fazila Aswat was Jo Cox's assistant. She held the MP in her arms as she lay dying in the street. \n \nHe has told ITV News about the shocking attack on the respected Labour politician: http://bit.ly/1Un1u3k""","b""Father of Jo Cox's assistant: This is shocking for the community""",https://www.facebook.com/itvnews/videos/10153834623087672/,1466.0,90.0,4.0,1.0,439.0,2.0,71.0,677.0,0.0,3.0,2016-06-17 13:44:30,1,0,0,0,0,0,0,1,0,1,201606,0,2750.0
929,932,21886,ITV News,148007467671.0,10153834849562672,2016-06-13 00:00:00,ISLAMIST,2016-06-17 16:02:07,video,"b'""My pain is too much"" - those were the words of Jo Cox as she lay dying after she had been shot and stabbed.\n\nGhulam Maniyar\'s daughter Fazila Aswat was with Jo when she was attacked in the street in her Birstall constituency.\n\nHe has told ITV News how events unfolded: http://bit.ly/1Un1u3k'","b""Ghulam Maniyar describes what his daughter, Jo Cox's assistant...""",https://www.facebook.com/itvnews/videos/10153834849562672/,424.0,7.0,2.0,1.0,289.0,29.0,51.0,194.0,0.0,3.0,2016-06-17 16:02:07,1,0,0,0,0,0,0,1,0,1,201606,0,997.0
930,933,21896,Financial Times,8860325749.0,10154200311505750,2016-06-13 00:00:00,ISLAMIST,2016-06-13 10:41:50,video,"b""FirstFT - US\xe2\x80\x99s worst mass shooting, Uefa warning on football violence\nLatest news:\n- the motives of the gunman who killed 50 in a Florida club \n- a change of tactics for the Remain campaign in Britain\xe2\x80\x99s EU referendum \n- Uefa warns England and Russia over fan violence\nWatch the world's headlines in 60 seconds""","b'FirstFT - Orlando attack, Brexit campaign, football hooligans'",https://www.facebook.com/financialtimes/videos/10154200311505750/,68.0,0.0,0.0,0.0,6.0,2.0,23.0,12.0,0.0,3.0,2016-06-13 10:41:50,1,0,0,0,0,0,0,1,0,1,201606,0,111.0
931,934,21897,Financial Times,8860325749.0,10154200718445750,2016-06-13 00:00:00,ISLAMIST,2016-06-13 14:16:03,video,"b""Orlando on Sunday evening was awash with candlelit vigils as distraught families and friends awaited news of loved ones, following the deadliest mass shooting on US soil in modern history. The FT's Barney Jopson reports.""",b'Orlando nightclub massacre',https://www.facebook.com/financialtimes/videos/10154200718445750/,43.0,0.0,0.0,0.0,15.0,6.0,3.0,14.0,0.0,3.0,2016-06-13 14:16:03,1,0,0,0,0,0,0,1,0,1,201606,0,81.0
932,935,21900,Financial Times,8860325749.0,10154202088555750,2016-06-13 00:00:00,ISLAMIST,2016-06-14 01:12:41,video,b'New Yorkers gathered at the Stonewall Inn on Monday \xe2\x80\x94 birthplace of the modern US gay rights movement and global Gay Pride parades \xe2\x80\x94 filling the streets of the Greenwich Village neighbourhood as they paid tribute to the victims of the attack at the Pulse nightclub in Orlando.',"b'After Orlando, New Yorkers gather at the Stonewall Inn'",https://www.facebook.com/financialtimes/videos/10154202088555750/,155.0,10.0,0.0,0.0,10.0,0.0,7.0,47.0,0.0,3.0,2016-06-14 01:12:41,1,0,0,0,0,0,0,1,0,1,201606,0,229.0
933,936,21902,Financial Times,8860325749.0,10154203015940750,2016-06-13 00:00:00,ISLAMIST,2016-06-14 12:00:42,video,b'How Donald Trump and Hilary Clinton responded to the terror attack in Orlando',"b""Orlando: the candidates' response""",https://www.facebook.com/financialtimes/videos/10154203015940750/,926.0,15.0,10.0,15.0,2.0,6.0,136.0,295.0,0.0,3.0,2016-06-14 12:00:42,1,0,0,0,0,0,0,1,0,1,201606,1,1405.0
934,937,21912,Financial Times,8860325749.0,10154210410035750,2016-06-13 00:00:00,ISLAMIST,2016-06-17 11:19:39,video,b'Latest news: \n- the fatal shooting of a British politician brings an abrupt halt to EU referendum campaigning\n- US diplomats criticise President Obama\xe2\x80\x99s policy on Syria \n- Rolls-Royce has unveiled its first driverless car\n\nSign up for the FirstFT email at http://on.ft.com/1W3dvNA',"b'FirstFT - Cox killing halts EU campaign, US Syrian policy debate'",https://www.facebook.com/financialtimes/videos/10154210410035750/,22.0,0.0,0.0,0.0,13.0,2.0,0.0,7.0,0.0,3.0,2016-06-17 11:19:39,1,0,0,0,0,0,0,1,0,1,201606,0,44.0
935,938,21916,The Guardian,10513336322.0,10154254664736323,2016-06-13 00:00:00,ISLAMIST,2016-06-13 13:20:00,photo,"b""From impassioned pleas for healing to a broadside at the NRA - this is how the world's newspapers reacted to the worst mass shooting by a lone gunman in US history. See the full gallery here: http://gu.com/p/4yvd6/fb""",b'Timeline Photos',https://www.facebook.com/theguardian/photos/a.10150338151436323.391595.10513336322/10154254664736323/?type=3,258.0,15.0,0.0,0.0,68.0,1.0,23.0,30.0,0.0,3.0,2016-06-13 13:20:00,1,0,0,0,0,0,1,0,0,2,201606,0,395.0
936,939,21919,The Guardian,10513336322.0,10154255229621323,2016-06-13 00:00:00,ISLAMIST,2016-06-13 15:40:00,video,"b'""Just behind me is the Admiral Duncan pub. It\'s a gay pub, right in the heart of London\'s LGBT community. And 17 years ago that pub, on a Friday night, was full of people. Full of laughter and love. And a neo-Nazi terrorist detonated a nail bomb. But he didn\'t extinguish the love.""'","b""The Orlando nightclub terrorist will fail: here's why""",https://www.facebook.com/theguardian/videos/10154255229621323/,56263.0,8116.0,66.0,16.0,1656.0,57.0,1657.0,62157.0,0.0,3.0,2016-06-13 15:40:00,1,0,0,0,0,0,0,1,0,1,201606,1,129988.0
937,940,21921,The Guardian,10513336322.0,10154255655981323,2016-06-13 00:00:00,ISLAMIST,2016-06-13 18:00:57,video,"b""We're in Compton Street in Soho, where people have gathered for a vigil in memory of the victims of the Orlando attacks. 50 people including the gunman died in the attack on gay club Pulse.""",missing_value,https://www.facebook.com/theguardian/videos/10154255655981323/,18748.0,3294.0,18.0,12.0,1611.0,43.0,1140.0,2606.0,0.0,3.0,2016-06-13 18:00:57,1,0,0,0,0,0,0,1,0,1,201606,0,27472.0
938,941,21927,The Guardian,10513336322.0,10154260237141323,2016-06-13 00:00:00,ISLAMIST,2016-06-15 18:00:01,video,"b'The key information about Omar Mateen, the American of Afghan origin who killed 49 people in Orlando, Florida, in the deadliest mass shooting in modern US history. The 29-year-old was previously investigated by the FBI but authorities have played down claims that he was directed by a foreign terrorist network'",b'What do we know about Orlando killer Omar Mateen?',https://www.facebook.com/theguardian/videos/10154260237141323/,169.0,3.0,4.0,2.0,54.0,43.0,88.0,100.0,0.0,3.0,2016-06-15 18:00:01,1,0,0,0,0,0,0,1,0,1,201606,1,463.0
939,942,21932,The Guardian,10513336322.0,10154270421811323,2016-06-13 00:00:00,ISLAMIST,2016-06-19 13:40:00,video,"b""Hundreds of people have been queuing up to get a tattoo commemorating the 49 killed during last Sunday's mass shooting at an LGBT club in Orlando, Florida.""",b'Hundreds get tattoos to honour Orlando shooting victims',https://www.facebook.com/theguardian/videos/10154270421811323/,5200.0,775.0,137.0,21.0,25.0,6.0,350.0,1712.0,0.0,3.0,2016-06-19 13:40:00,1,0,0,0,0,0,0,1,0,1,201606,0,8226.0
940,943,21938,SPIEGEL ONLINE,38246844868.0,10154288965069869,2016-06-13 00:00:00,ISLAMIST,2016-06-15 08:30:00,video,"b'So nutzt Donald Trump den Terroranschlag in Orlando, um Angst vor Muslimen zu sch\xc3\xbcren.'",b'Wie Trump Hass gegen Muslime sch\xc3\xbcrt',https://www.facebook.com/spiegelonline/videos/10154288965069869/,647.0,12.0,6.0,9.0,46.0,377.0,320.0,259.0,0.0,3.0,2016-06-15 08:30:00,1,0,0,0,0,0,0,1,0,1,201606,1,1676.0
941,944,21945,ZDF heute,112784955679.0,10154298242500680,2016-06-13 00:00:00,ISLAMIST,2016-06-14 08:25:28,video,"b'""All I want is peace!"" Paris Delane aus Chicago, getroffen vor ein paar Tagen auf unserer US-Wahl-Reise in Nashville. Seine Botschaft an die Politik bekommt nach dem Massaker in Orlando und der Attacke in Frankreich noch mehr Bedeutung... #wethepeople'","b'""All I want is peace"" #wethepeople'",https://www.facebook.com/ZDFheute/videos/10154298242500680/,90.0,4.0,0.0,0.0,0.0,0.0,3.0,22.0,0.0,3.0,2016-06-14 08:25:28,1,0,0,0,0,0,0,1,0,1,201606,0,119.0
942,945,21948,SPIEGEL ONLINE,38246844868.0,10154301432099869,2016-06-13 00:00:00,ISLAMIST,2016-06-18 10:59:53,video,b'In Istanbul trafen sich junge Musikfans und h\xc3\xb6rten das neue Radiohead-Album. Pl\xc3\xb6tzlich wurden sie von Unbekannten attackiert - angeblich weil sie w\xc3\xa4hrend des Ramadans Alkohol getrunken hatten',missing_value,https://www.facebook.com/spiegelonline/videos/10154301432099869/,537.0,3.0,29.0,38.0,290.0,808.0,629.0,805.0,0.0,3.0,2016-06-18 10:59:53,1,0,0,0,0,0,0,1,0,1,201606,0,3139.0
943,946,21994,The Telegraph,143666524748.0,10154368673229749,2016-06-13 00:00:00,ISLAMIST,2016-06-13 08:17:10,video,"b'Imam Syed Shafeeq Rahman of Islamic Center Fort Pierce talks through his interactions with terrorist Omar Mateen, who killed at least 50 people on Sunday morning in Orlando, Florida.'","b""Imam talks about Omar Mateen's character""",https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154368673229749/,807.0,9.0,6.0,1.0,64.0,62.0,120.0,285.0,0.0,3.0,2016-06-13 08:17:10,1,0,0,0,0,0,0,1,0,1,201606,1,1354.0
944,947,21995,The Telegraph,143666524748.0,10154368879034749,2016-06-13 00:00:00,ISLAMIST,2016-06-13 09:52:54,photo,"b'A pride flag stands a half mast during a memorial service in San Diego, California, for the victims of the Orlando Nighclub shooting. \n\nCredit: AFP PHOTO / Sandy Huffaker / Getty Images\n\nSee more on our Instagram: https://www.instagram.com/telegraph/'","b""The Telegraph's cover photo""",https://www.facebook.com/TELEGRAPH.CO.UK/photos/a.10150634002524749.407921.143666524748/10154368878274749/?type=3,347.0,7.0,1.0,1.0,52.0,2.0,15.0,41.0,0.0,3.0,2016-06-13 09:52:54,1,0,0,0,0,0,1,0,0,2,201606,0,466.0
945,948,22009,The Telegraph,143666524748.0,10154373334464749,2016-06-13 00:00:00,ISLAMIST,2016-06-14 20:05:00,video,b'Vigils have been held in the wake of a mass shooting at a gay nightclub in Orlando on Sunday that claimed the lives of 49 people.',missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154373334464749/,332.0,39.0,1.0,0.0,50.0,1.0,18.0,98.0,0.0,3.0,2016-06-14 20:05:00,1,0,0,0,0,0,0,1,0,1,201606,0,539.0
946,949,22031,The Telegraph,143666524748.0,10154382877204749,2016-06-13 00:00:00,ISLAMIST,2016-06-17 19:45:00,video,"b""An Orlando shooting survivor is reunited with a police officer who helped save his life in Sunday's atrocity at Pulse nightclub.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154382877204749/,1683.0,245.0,6.0,2.0,107.0,0.0,30.0,195.0,0.0,3.0,2016-06-17 19:45:00,1,0,0,0,0,0,0,1,0,1,201606,0,2268.0
947,950,22047,Daily Mirror,6149699161.0,10154395351024162,2016-06-13 00:00:00,ISLAMIST,2016-06-14 16:45:01,link,"b""He's the mastermind behind the evil terror state.""","b""ISIS leader Abu Bakr al-Baghdadi 'killed in US-led air strikes in Syria'""",http://www.mirror.co.uk/news/world-news/isis-leader-abu-bakr-al-8186324?ICID=FB_mirror_main,1098.0,89.0,8.0,170.0,0.0,8.0,211.0,290.0,0.0,3.0,2016-06-14 16:45:01,1,0,0,0,0,0,0,0,1,0,201606,1,1874.0
948,951,22062,Daily Mirror,6149699161.0,10154401139619162,2016-06-13 00:00:00,ISLAMIST,2016-06-16 16:18:34,link,b'Absolutely heartbreaking. RIP.',b'Labour MP Jo Cox has died after gun attack',http://www.mirror.co.uk/news/uk-news/labour-mp-jo-cox-dead-8210785?ICID=FB_mirror_main,1722.0,19.0,52.0,1.0,1815.0,406.0,801.0,2110.0,0.0,3.0,2016-06-16 16:18:34,1,0,0,0,0,0,0,0,1,0,201606,0,6926.0
949,952,22076,Daily Mirror,6149699161.0,10154405798214162,2016-06-13 00:00:00,ISLAMIST,2016-06-18 07:00:00,video,b'Shocking footage of the attack.\n\nFull story: http://bit.ly/1Y0tkqb',b'Man treated for facial injuries after serious pub attack',https://www.facebook.com/dailymirror/videos/10154405798214162/,102.0,1.0,5.0,2.0,15.0,23.0,21.0,64.0,0.0,3.0,2016-06-18 07:00:00,1,0,0,0,0,0,0,1,0,1,201606,0,233.0
950,953,22094,RP ONLINE,50327854366.0,10154441681199367,2016-06-13 00:00:00,ISLAMIST,2016-06-15 09:45:36,link,"b'Es k\xc3\xb6nnte das traurige Endes eines Projektes sein, das den Tourismus im Hochsauerland und dem Kreis Siegen-Wittgenstein befl\xc3\xbcgeln sollte.'",b'Nach Angriff auf Neusserin : Wisent-Projekt steht vor dem Aus \xe2\x80\x93 Tieren droht T\xc3\xb6tung',http://www.rp-online.de/nrw/panorama/wisent-projekt-steht-vor-dem-aus-aid-1.6049251,19.0,0.0,0.0,0.0,24.0,77.0,60.0,14.0,0.0,3.0,2016-06-15 09:45:36,1,0,0,0,0,0,0,0,1,0,201606,0,194.0
951,954,22178,junge Welt,123292927706635.0,1016493585053227,2016-06-16 00:00:00,RIGHT,2016-06-21 12:25:20,photo,"b'Der Feind hei\xc3\x9ft Russland\n\n\xc2\xbbW\xc3\xa4hrend sich auf der einen Seite seit Jahren geschichtsrevisionistische Angriffe mehren, die den Beitrag der damaligen Sowjetunion und der Roten Armee zur Befreiung Deutschlands und Europas vom Faschismus schm\xc3\xa4lern und relativieren wollen, verweigert die #Bundesregierung schlicht ein w\xc3\xbcrdiges Gedenken an jene, die Opfer des \xc3\x9cberfalls des faschistischen Deutschlands am 22. Juni 1941 wurden.\xc2\xab\n\nDen Beitrag von Sevim Dagdelen (Bundestagsabgeordnete der Partei Die Linke) ab heute abend auf www.jungewelt.de oder morgen in unserer Tagesausgabe lesen.\n\nFoto: EPA/SERGEY KARPUKHIN'",b'Timeline Photos',https://www.facebook.com/junge.welt/photos/a.124194670949794.9293.123292927706635/1016493585053227/?type=3,71.0,0.0,0.0,3.0,2.0,33.0,21.0,65.0,1.0,1.0,2016-06-21 12:25:20,0,0,1,0,0,0,1,0,0,2,201606,0,195.0
952,955,22197,Neue Westfälische,215604728519502.0,1055645737848726,2016-06-16 00:00:00,RIGHT,2016-06-17 11:44:05,link,"b'Polizeipr\xc3\xa4sidentin bedankt sich f\xc3\xbcr ""au\xc3\x9fergew\xc3\xb6hnlich couragiertes Verhalten"" bei Busfahrer Markus R. Er hatte einen Mann daran gehindert, weiter auf seine Frau einzustechen.'",b'Nach Messerattacke: Polizeipr\xc3\xa4sidentin bedankt sich bei mutigem Busfahrer',http://on.nw.de/KJE,45.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2016-06-17 11:44:05,0,0,1,0,0,0,0,0,1,0,201606,0,49.0
953,956,22205,Neue Westfälische,215604728519502.0,1058113500935283,2016-06-16 00:00:00,RIGHT,2016-06-21 10:38:04,link,"b'Phishing-Attacken sind \xc3\xa4rgerlich - der Polizei ist es gelungen, einen Komplizen f\xc3\xbcr einen solchen Datenklau zu \xc3\xbcberf\xc3\xbchren:'","b'Polizei erwischt Steinheimer, der ausl\xc3\xa4ndische Online-Banking-Datendiebe unterst\xc3\xbctzt hat'",http://on.nw.de/K9W,20.0,0.0,0.0,0.0,0.0,2.0,2.0,21.0,1.0,1.0,2016-06-21 10:38:04,0,0,1,0,0,0,0,0,1,0,201606,0,45.0
954,957,22216,Süddeutsche Zeitung,215982125159841.0,1059190370839008,2016-06-16 00:00:00,RIGHT,2016-06-16 20:16:46,photo,b'Deutsche Abwehr und polnischer Angriff lernen sich langsam besser kennen.',b'Timeline Photos',https://www.facebook.com/ihre.sz/photos/a.488243851266999.1073741825.215982125159841/1059190370839008/?type=3,26.0,1.0,0.0,6.0,0.0,0.0,5.0,2.0,1.0,1.0,2016-06-16 20:16:46,0,0,1,0,0,0,1,0,0,2,201606,0,40.0
955,958,22263,Metro,117118184990145.0,1087848104583810,2016-06-16 00:00:00,RIGHT,2016-06-18 07:18:46,link,b'Jo Cox died after being stabbed and shot on Thursday',b'Tommy Mair charged with murder after Jo Cox shooting',http://metro.co.uk/2016/06/18/tommy-mair-charged-with-murder-after-jo-cox-shooting-5952002/,92.0,1.0,1.0,0.0,10.0,6.0,9.0,6.0,1.0,1.0,2016-06-18 07:18:46,0,0,1,0,0,0,0,0,1,0,201606,0,125.0
956,959,22276,Metro,117118184990145.0,1089581911077096,2016-06-16 00:00:00,RIGHT,2016-06-20 19:00:00,link,b'Has he been the victim of a revenge attack?',"b""Corrie fire horror! Jason in danger from Callum's mates""",http://metro.co.uk/2016/06/18/coronation-street-spoilers-fire-horror-jason-grimshaw-in-danger-from-callum-logans-mates-5949801/?ito=facebook,21.0,0.0,2.0,3.0,0.0,0.0,3.0,4.0,1.0,1.0,2016-06-20 19:00:00,0,0,1,0,0,0,0,0,1,0,201606,0,33.0
957,960,22282,Metro,117118184990145.0,1090085977693356,2016-06-16 00:00:00,RIGHT,2016-06-21 08:20:00,link,b'It happens just days after 49 people were murdered',b'US senate allows for sale of guns to terrorists \xe2\x80\x93 because that makes sense',http://metro.co.uk/2016/06/21/us-senate-allows-for-sale-of-guns-to-terrorists-because-that-makes-sense-5956987/?ito=facebook,43.0,0.0,10.0,3.0,7.0,62.0,34.0,54.0,1.0,1.0,2016-06-21 08:20:00,0,0,1,0,0,0,0,0,1,0,201606,0,213.0
958,961,22301,Monitor,186702484702033.0,1093366734035599,2016-06-16 00:00:00,RIGHT,2016-06-22 17:45:54,link,"b'MONITOR-TV-Tipp: \n\nZwei Tage vor seinem Tod hatte Abdelhamid Abaaoud, der mutma\xc3\x9fliche Drahtzieher der Paris-Anschl\xc3\xa4ge, seiner Cousine erz\xc3\xa4hlt: Es seien noch viele, viele weitere Terroristen nach Europa eingesickert. Neunzig an der Zahl. Wie gro\xc3\x9f ist also die Gefahr weiterer Schl\xc3\xa4ferzellen, die Anschl\xc3\xa4ge planen? Haben die Sicherheitsbeh\xc3\xb6rden versagt? Wie konnte ein solches Netzwerk \xc3\xbcberhaupt entstehen? \n\ndie story: Der lange Arm des IS \xe2\x80\x93 wie der Terror nach Europa kommt. Heute um 22:10 Uhr im WDR Fernsehen oder schon jetzt online: http://www1.wdr.de/fernsehen/die-story/sendungen/der-lange-arm-des-is-106.html \n\nMONITOR berichtete bereits im Dezember \xc3\xbcber die Hintergr\xc3\xbcnde der Pariser Anschl\xc3\xa4ge: http://www1.wdr.de/daserste/monitor/sendungen/die-terroristen-von-paris-100.html'",b'die story: Der lange Arm des IS \xe2\x80\x93 wie der Terror nach Europa kommt',http://www1.wdr.de/fernsehen/die-story/sendungen/der-lange-arm-des-is-106.html,48.0,0.0,0.0,1.0,8.0,10.0,35.0,37.0,1.0,1.0,2016-06-22 17:45:54,0,0,1,0,0,0,0,0,1,0,201606,1,139.0
959,962,22385,London Evening Standard,165348596842143.0,1185335278176798,2016-06-16 00:00:00,RIGHT,2016-06-16 14:00:51,link,b'Ms Cox is fighting for life in hospital after the attack',b'Politicians in shock after Jo Cox MP shot',https://www.standard.co.uk/news/crime/jo-cox-mps-react-after-yorkshire-politician-stabbed-and-shot-a3273726.html,41.0,1.0,3.0,0.0,27.0,2.0,10.0,18.0,1.0,1.0,2016-06-16 14:00:51,0,0,1,0,0,0,0,0,1,0,201606,0,102.0
960,963,22395,London Evening Standard,165348596842143.0,1186715861372073,2016-06-16 00:00:00,RIGHT,2016-06-18 08:42:19,link,"b'An ""innocent man"" suffered serious injuries after being shot while he stood at the bar'","b'\xc2\xa310,000 offered in hunt for gunmen after Southwark pub shooting'",https://www.standard.co.uk/news/crime/10000-offered-in-hunt-for-gunmen-after-southwark-pub-shooting-of-innocent-man-a3275076.html,17.0,1.0,4.0,0.0,3.0,0.0,0.0,8.0,1.0,1.0,2016-06-18 08:42:19,0,0,1,0,0,0,0,0,1,0,201606,0,33.0
961,964,22408,London Evening Standard,165348596842143.0,1189287911114868,2016-06-16 00:00:00,RIGHT,2016-06-21 20:26:51,video,"b'Sadiq Khan has attacked Boris Johnson accusing him of running a campaign of ""hate"" in angry clashes during a televised EU debate'","b""Sadiq Khan attacks Boris Johnson for 'hate' campaign in TV debate""",https://www.standard.co.uk/news/uk/eu-referendum-sadiq-khan-attacks-boris-johnson-for-campaign-of-hate-in-angry-clashes-on-tv-debate-a3277611.html,266.0,20.0,2.0,8.0,2.0,28.0,99.0,57.0,1.0,1.0,2016-06-21 20:26:51,0,0,1,0,0,0,0,1,0,1,201606,0,482.0
962,965,22418,Daily Express,129617873765147.0,1198799666846957,2016-06-16 00:00:00,RIGHT,2016-06-17 15:51:50,link,b'Absolutely tragic...',"b""Jo Cox's tragic last words revealed as Cameron says her death was 'an attack on democracy'""",http://www.express.co.uk/news/uk/680850/Jo-Cox-murder-counter-terror-police-Labour-MP-Birstall,186.0,2.0,0.0,3.0,76.0,19.0,109.0,72.0,1.0,1.0,2016-06-17 15:51:50,0,0,1,0,0,0,0,0,1,0,201606,0,467.0
963,966,22420,Daily Express,129617873765147.0,1198999656826958,2016-06-16 00:00:00,RIGHT,2016-06-17 20:28:57,link,b'He says Europe has nothing left after rejecting Christianity',b'\xe2\x80\x98EU is tearing itself apart because it has NO shared values\xe2\x80\x99 Ex-Polish leader in scathing attack',http://www.express.co.uk/news/politics/680989/EU-falling-apart-has-no-shared-values-Lech-Walesa-in-scathing-attack,501.0,26.0,4.0,14.0,2.0,2.0,81.0,307.0,1.0,1.0,2016-06-17 20:28:57,0,0,1,0,0,0,0,0,1,0,201606,0,937.0
964,967,22443,City AM,213682385348579.0,1214862451897229,2016-06-16 00:00:00,RIGHT,2016-06-17 06:50:17,link,"b'""There can be no doubt that this brutal crime constitutes an attack on our democracy and on the principles that underpin it.""'","b""Jo Cox's brutal killing is an attack on democracy""",http://www.cityam.com/243524/jo-coxs-brutal-killing-attack,6.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,2016-06-17 06:50:17,0,0,1,0,0,0,0,0,1,0,201606,0,8.0
965,968,22470,The Times and The Sunday Times,147384458624178.0,1300209283341684,2016-06-16 00:00:00,RIGHT,2016-06-16 16:31:50,video,"b'Police have confirmed that The Labour Party MP Jo Cox has died after being stabbed and shot in Birstall, Leeds. Exclusive footage obtained by The Sunday Times shows police restraining a 52-year-old man following the attack. Read more: http://bit.ly/JoCoxMP'",b'The moment that the man who attacked Labour MP Jo Fox is restr...',https://www.facebook.com/timesandsundaytimes/videos/1300209283341684/,62.0,0.0,1.0,0.0,53.0,21.0,53.0,67.0,1.0,1.0,2016-06-16 16:31:50,0,0,1,0,0,0,0,1,0,1,201606,0,257.0
966,969,22472,The Times and The Sunday Times,147384458624178.0,1301688206527125,2016-06-16 00:00:00,RIGHT,2016-06-18 16:11:03,link,b'An Isis terror cell was planning to attack football fans.',"b""Police foil 'massive terror attack' on Belgium V Ireland""",http://thetim.es/1Ufr4F5,163.0,2.0,12.0,0.0,1.0,17.0,12.0,58.0,1.0,1.0,2016-06-18 16:11:03,0,0,1,0,0,0,0,0,1,0,201606,1,265.0
967,970,22520,The Daily Star,161612017189003.0,1361755307174662,2016-06-16 00:00:00,RIGHT,2016-06-18 21:04:44,link,b'London police are not taking any chances after the Orlando shootings',"b""More police at London Pride 2016 after 'increased concerns' following Orlando shootings""",http://www.dailystar.co.uk/news/latest-news/523921/Gay-Pride-London-2016-increased-police-Orlando-Shootings-Pulse,29.0,0.0,0.0,0.0,2.0,0.0,0.0,2.0,1.0,1.0,2016-06-18 21:04:44,0,0,1,0,0,0,0,0,1,0,201606,0,33.0
968,971,22537,The Daily Star,161612017189003.0,1363554756994717,2016-06-16 00:00:00,RIGHT,2016-06-20 23:47:53,link,b'He reportedly admits plotting the attack for a year',"b""Donald Trump 'assassination attempt' \xe2\x80\x93 British teen held""",http://www.dailystar.co.uk/news/latest-news/524368/us-election-donald-trump-assassination-british-Michael-Sandford-arrest-las-vegas,15.0,0.0,2.0,2.0,0.0,1.0,10.0,8.0,1.0,1.0,2016-06-20 23:47:53,0,0,1,0,0,0,0,0,1,0,201606,0,38.0
969,972,22542,The Daily Star,161612017189003.0,1364211763595683,2016-06-16 00:00:00,RIGHT,2016-06-21 20:35:00,link,b'Animals',"b""'Face melter' acid attack brothers jailed for 24 years""",http://www.dailystar.co.uk/news/latest-news/524573/Acid-attack-Southampton-Britain-UK-sulphuric-drug-deal-dealing,51.0,0.0,0.0,1.0,1.0,12.0,14.0,4.0,1.0,1.0,2016-06-21 20:35:00,0,0,1,0,0,0,0,0,1,0,201606,0,83.0
970,973,22549,The Daily Star,161612017189003.0,1364545260229000,2016-06-16 00:00:00,RIGHT,2016-06-22 04:00:00,link,b'Fears of new terror attack continue',b'BA suspends all flights to Sharm el-Sheikh \xe2\x80\x98indefinitely\xe2\x80\x99',http://www.dailystar.co.uk/news/latest-news/524657/british-airways-ba-flights-Sharm-el-Sheikh-suspended-indefinitely-security-terror-isis,52.0,0.0,3.0,2.0,0.0,1.0,6.0,13.0,1.0,1.0,2016-06-22 04:00:00,0,0,1,0,0,0,0,0,1,0,201606,1,77.0
971,974,22565,Sky News,164665060214766.0,1373775612637032,2016-06-16 00:00:00,RIGHT,2016-06-16 15:20:39,video,b'Friends of the victims in the Orlando Pulse nightclub shooting are being tattooed in memory of those who lost their lives. Sky News is live at Ink Spot in Orlando. Send your questions to Cordelia Lynch.',missing_value,https://www.facebook.com/skynews/videos/1373775612637032/,1058.0,287.0,16.0,10.0,128.0,15.0,309.0,108.0,1.0,1.0,2016-06-16 15:20:39,0,0,1,0,0,0,0,1,0,1,201606,0,1931.0
972,975,22567,Sky News,164665060214766.0,1373969735950953,2016-06-16 00:00:00,RIGHT,2016-06-16 18:46:47,video,"b'Jeremy Corbyn says Jo Cox was ""loved and admired"" at a vigil for the Labour MP, who died today after an attack in her constituency'",b'Corbyn Speaks At Vigil For Jo Cox',https://www.facebook.com/skynews/videos/1373969735950953/,1359.0,66.0,4.0,1.0,577.0,9.0,129.0,752.0,1.0,1.0,2016-06-16 18:46:47,0,0,1,0,0,0,0,1,0,1,201606,0,2897.0
973,976,22683,WAZ,117194401183.0,10153447059276184,2016-06-16 00:00:00,RIGHT,2016-06-19 04:00:01,photo,b'Heute in der Digitalen WAZ am Sonntag: \n\nFestnahmen bei Anti-Terror-Einsatz in Belgien\n\nKnapp drei Monate nach den Anschl\xc3\xa4gen in Br\xc3\xbcssel haben Sicherheitskr\xc3\xa4fte am Samstag bei Anti-Terror-Eins\xc3\xa4tzen in Belgien zw\xc3\xb6lf Verd\xc3\xa4chtige festgenommen. Mit der Razzia ist offenbar ein Anschlag auf Fu\xc3\x9fballfans verhindert worden.\n\nHIER GEHTS ZUR APP: http://www.derwesten.de/digital/index.php?ID=gOxLh5dD5QER_KV9pEJwxxH1skV4SlBrZnSaDSEUNs05OMMoH_TE4w1JuOyN82ilzvh1VniuwFhggK&Titel=WAZ&xtatc=INT-176-intext',b'Timeline Photos',https://www.facebook.com/waz/photos/a.181313716183.130756.117194401183/10153447059276184/?type=3,8.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,1.0,1.0,2016-06-19 04:00:01,0,0,1,0,0,0,1,0,0,2,201606,1,13.0
974,977,22684,WAZ,117194401183.0,10153450386061184,2016-06-16 00:00:00,RIGHT,2016-06-20 06:45:01,link,"b'Die Hintergr\xc3\xbcnde der Tat sind noch unklar, aber falls ihr euch fragt, warum am Sonntagabend ein Polizeihubschrauber \xc3\xbcber Krefeld flog, ist das hier die Antwort.'",b'Polizei fahndet mit Hubschrauber nach Messerstecher',http://www.derwesten.de/region/niederrhein/polizei-fahndet-mit-hubschrauber-nach-messerstecher-id11932152.html,21.0,0.0,2.0,0.0,0.0,0.0,3.0,12.0,1.0,1.0,2016-06-20 06:45:01,0,0,1,0,0,0,0,0,1,0,201606,0,38.0
975,978,22872,Channel 4 News,6622931938.0,10153827078561939,2016-06-16 00:00:00,RIGHT,2016-06-18 16:50:29,video,"b'""What we saw in Orlando was one of the ugliest cocktails of the problems we still see here in America.""\n\nComedian Hasan Minhaj criticizes a room full of U.S politicians for their failure to prevent mass shootings.'","b""Hasan Minhaj's speech on Orlando""",https://www.facebook.com/Channel4News/videos/10153827078561939/,4473.0,284.0,37.0,25.0,10.0,7.0,136.0,1394.0,1.0,1.0,2016-06-18 16:50:29,0,0,1,0,0,0,0,1,0,1,201606,0,6366.0
976,979,22878,ITV News,148007467671.0,10153832209477672,2016-06-16 00:00:00,RIGHT,2016-06-16 16:38:38,video,"b'This footage shows the alleged suspect in the shooting of MP Jo Cox, being arrested in a street in Birstall, West Yorkshire.\n\nJo Cox has died of her injuries.\n\nFull story: http://bit.ly/1XrNKHJ'",missing_value,https://www.facebook.com/itvnews/videos/10153832209477672/,3030.0,9.0,73.0,5.0,1238.0,1068.0,1226.0,4529.0,1.0,1.0,2016-06-16 16:38:38,0,0,1,0,0,0,0,1,0,1,201606,0,11178.0
977,980,22881,ITV News,148007467671.0,10153834623087672,2016-06-16 00:00:00,RIGHT,2016-06-17 13:44:30,video,"b""Ghulam Maniyar's daughter Fazila Aswat was Jo Cox's assistant. She held the MP in her arms as she lay dying in the street. \n \nHe has told ITV News about the shocking attack on the respected Labour politician: http://bit.ly/1Un1u3k""","b""Father of Jo Cox's assistant: This is shocking for the community""",https://www.facebook.com/itvnews/videos/10153834623087672/,1466.0,90.0,4.0,1.0,439.0,2.0,71.0,677.0,1.0,1.0,2016-06-17 13:44:30,0,0,1,0,0,0,0,1,0,1,201606,0,2750.0
978,981,22882,ITV News,148007467671.0,10153834849562672,2016-06-16 00:00:00,RIGHT,2016-06-17 16:02:07,video,"b'""My pain is too much"" - those were the words of Jo Cox as she lay dying after she had been shot and stabbed.\n\nGhulam Maniyar\'s daughter Fazila Aswat was with Jo when she was attacked in the street in her Birstall constituency.\n\nHe has told ITV News how events unfolded: http://bit.ly/1Un1u3k'","b""Ghulam Maniyar describes what his daughter, Jo Cox's assistant...""",https://www.facebook.com/itvnews/videos/10153834849562672/,424.0,7.0,2.0,1.0,289.0,29.0,51.0,194.0,1.0,1.0,2016-06-17 16:02:07,0,0,1,0,0,0,0,1,0,1,201606,0,997.0
979,982,22890,Channel 4 News,6622931938.0,10153836808631939,2016-06-16 00:00:00,RIGHT,2016-06-22 16:37:19,video,"b'More ""lone wolf"" attacks in Europe have been carried out by right wing terrorists than religious extremists in the past 15 years. \n\nWhilst many more people were killed in attacks from Al-Qaeda and ISIS overall, a study says that \xe2\x80\x9cRight-wing extremists represent a substantial aspect of the lone actor threat and must not be overlooked.\xe2\x80\x9d'",b'Right-Wing lone wolf attacks a bigger threat in Europe than re...',https://www.facebook.com/Channel4News/videos/10153836808631939/,2179.0,8.0,34.0,8.0,140.0,148.0,226.0,3281.0,1.0,1.0,2016-06-22 16:37:19,0,0,1,0,0,0,0,1,0,1,201606,1,6024.0
980,983,22918,Financial Times,8860325749.0,10154210410035750,2016-06-16 00:00:00,RIGHT,2016-06-17 11:19:39,video,b'Latest news: \n- the fatal shooting of a British politician brings an abrupt halt to EU referendum campaigning\n- US diplomats criticise President Obama\xe2\x80\x99s policy on Syria \n- Rolls-Royce has unveiled its first driverless car\n\nSign up for the FirstFT email at http://on.ft.com/1W3dvNA',"b'FirstFT - Cox killing halts EU campaign, US Syrian policy debate'",https://www.facebook.com/financialtimes/videos/10154210410035750/,22.0,0.0,0.0,0.0,13.0,2.0,0.0,7.0,1.0,1.0,2016-06-17 11:19:39,0,0,1,0,0,0,0,1,0,1,201606,0,44.0
981,984,22935,The Guardian,10513336322.0,10154270421811323,2016-06-16 00:00:00,RIGHT,2016-06-19 13:40:00,video,"b""Hundreds of people have been queuing up to get a tattoo commemorating the 49 killed during last Sunday's mass shooting at an LGBT club in Orlando, Florida.""",b'Hundreds get tattoos to honour Orlando shooting victims',https://www.facebook.com/theguardian/videos/10154270421811323/,5200.0,775.0,137.0,21.0,25.0,6.0,350.0,1712.0,1.0,1.0,2016-06-19 13:40:00,0,0,1,0,0,0,0,1,0,1,201606,0,8226.0
982,985,22956,SPIEGEL ONLINE,38246844868.0,10154301432099869,2016-06-16 00:00:00,RIGHT,2016-06-18 10:59:53,video,b'In Istanbul trafen sich junge Musikfans und h\xc3\xb6rten das neue Radiohead-Album. Pl\xc3\xb6tzlich wurden sie von Unbekannten attackiert - angeblich weil sie w\xc3\xa4hrend des Ramadans Alkohol getrunken hatten',missing_value,https://www.facebook.com/spiegelonline/videos/10154301432099869/,537.0,3.0,29.0,38.0,290.0,808.0,629.0,805.0,1.0,1.0,2016-06-18 10:59:53,0,0,1,0,0,0,0,1,0,1,201606,0,3139.0
983,986,23030,The Telegraph,143666524748.0,10154382877204749,2016-06-16 00:00:00,RIGHT,2016-06-17 19:45:00,video,"b""An Orlando shooting survivor is reunited with a police officer who helped save his life in Sunday's atrocity at Pulse nightclub.""",missing_value,https://www.facebook.com/TELEGRAPH.CO.UK/videos/10154382877204749/,1683.0,245.0,6.0,2.0,107.0,0.0,30.0,195.0,1.0,1.0,2016-06-17 19:45:00,0,0,1,0,0,0,0,1,0,1,201606,0,2268.0
984,987,23062,Daily Mirror,6149699161.0,10154401139619162,2016-06-16 00:00:00,RIGHT,2016-06-16 16:18:34,link,b'Absolutely heartbreaking. RIP.',b'Labour MP Jo Cox has died after gun attack',http://www.mirror.co.uk/news/uk-news/labour-mp-jo-cox-dead-8210785?ICID=FB_mirror_main,1722.0,19.0,52.0,1.0,1815.0,406.0,801.0,2110.0,1.0,1.0,2016-06-16 16:18:34,0,0,1,0,0,0,0,0,1,0,201606,0,6926.0
985,988,23076,Daily Mirror,6149699161.0,10154405798214162,2016-06-16 00:00:00,RIGHT,2016-06-18 07:00:00,video,b'Shocking footage of the attack.\n\nFull story: http://bit.ly/1Y0tkqb',b'Man treated for facial injuries after serious pub attack',https://www.facebook.com/dailymirror/videos/10154405798214162/,102.0,1.0,5.0,2.0,15.0,23.0,21.0,64.0,1.0,1.0,2016-06-18 07:00:00,0,0,1,0,0,0,0,1,0,1,201606,0,233.0
986,989,23104,Daily Mirror,6149699161.0,10154419754119162,2016-06-16 00:00:00,RIGHT,2016-06-22 23:15:00,video,b'They finally caught it',"b""Alligator that killed Lane Graves at Disney resort 'removed from area of attack'""",http://www.mirror.co.uk/news/world-news/alligator-killed-lane-graves-disney-8262479,113.0,1.0,1.0,1.0,34.0,8.0,59.0,14.0,1.0,1.0,2016-06-22 23:15:00,0,0,1,0,0,0,0,1,0,1,201606,0,231.0
987,990,23193,ZDF,154149027994068.0,1060628254012803,2016-07-14 00:00:00,ISLAMIST,2016-07-15 20:10:00,video,"b'Theo Koll, unser Studioleiter in Paris, zur ""Nacht der Klassik aus Paris"", die wir um 22:50 Uhr zeigen: ""Wir haben uns im ZDF entschlossen, das Konzert zu senden. Wir m\xc3\xbcssen, neben der entschlossenen Bek\xc3\xa4mpfung, dem Terror unsere Werte und unsere Lebensweise entgegenhalten. Die aufzugeben hie\xc3\x9fe nachzugeben.\xe2\x80\x9c'","b'""Nacht der Klassik aus Paris""'",https://www.facebook.com/ZDF/videos/1060628254012803/,188.0,6.0,0.0,0.0,15.0,0.0,24.0,24.0,433.0,87.0,2016-07-15 20:10:00,1,0,0,0,0,0,0,1,0,1,201607,1,257.0
988,991,23220,Süddeutsche Zeitung,215982125159841.0,1078255008932544,2016-07-14 00:00:00,ISLAMIST,2016-07-15 10:41:00,video,missing_value,b'Twitterschau zum Anschlag in Nizza',https://www.facebook.com/ihre.sz/videos/1078255008932544/,102.0,6.0,0.0,0.0,57.0,1.0,15.0,36.0,433.0,87.0,2016-07-15 10:41:00,1,0,0,0,0,0,0,1,0,1,201607,0,217.0
989,992,23222,Süddeutsche Zeitung,215982125159841.0,1078377702253608,2016-07-14 00:00:00,ISLAMIST,2016-07-15 14:46:00,photo,b'Ein Leser von Le Monde.fr hat der Zeitung nach dem Anschlag in Nizza dieses Bild gemalt. (Bild: John Mejia)',b'Timeline Photos',https://www.facebook.com/ihre.sz/photos/a.488243851266999.1073741825.215982125159841/1078377702253608/?type=3,332.0,10.0,1.0,0.0,177.0,3.0,9.0,108.0,433.0,87.0,2016-07-15 14:46:00,1,0,0,0,0,0,1,0,0,2,201607,0,640.0
990,993,23247,The Morning Star,351763554897760.0,1095716027169172,2016-07-14 00:00:00,ISLAMIST,2016-07-15 18:14:52,link,b'Attacks on Corbyn fly in the face of democracy and common sense | http://morningstaronline.co.uk/a-0bdf-Attacks-on-Corbyn-fly-in-the-face-of-democracy-and-common-sense#.V4kn1I62Dm0',b'Attacks on Corbyn fly in the face of democracy and common sense',http://morningstaronline.co.uk/a-0bdf-Attacks-on-Corbyn-fly-in-the-face-of-democracy-and-common-sense#.V4kn1I62Dm0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,433.0,87.0,2016-07-15 18:14:52,1,0,0,0,0,0,0,0,1,0,201607,0,48.0
991,994,23280,Monitor,186702484702033.0,1108197915885814,2016-07-14 00:00:00,ISLAMIST,2016-07-15 15:22:03,status,"b'Nicht schon wieder! Lehren aus Nizza\n\nOh mein Gott! Nicht schon wieder! Das war meine erste Reaktion gestern Nacht, als ich die Bilder aus Nizza sah. Wieder ein Anschlag, wieder viele Tote, wieder Frankreich. Und wieder schl\xc3\xa4gt der Terrorismus zu? Stopp! Terrorismus? Organisierter Massenmord? Islamischer Staat? Nur sehr wenig wissen wir zur Zeit \xc3\xbcber den T\xc3\xa4ter, jedenfalls nichts dar\xc3\xbcber, ob oder was er mit globalen Terrornetzwerken zu tun hatte.\n\nJa, f\xc3\xbcr die Opfer macht das keinen Unterschied. F\xc3\xbcr die politische Diskussion dagegen schon. Was immer die Ermittlungen noch zeigen werden: Nicht nur in Orlando mussten wir feststellen, dass die Wirklichkeit komplizierter ist. Dass wir es immer wieder auch mit Einzelt\xc3\xa4tern zu tun haben, Kriminellen, Frustrierten oder auch psychisch Kranken, die nichts, aber auch gar nichts mit dem organisierten Terrorismus von ""Islamischem Staat"" oder Al Quaida zu tun haben. T\xc3\xa4ter, die sich allenfalls als Nachahmer eines falsch verstandenen, t\xc3\xb6dlichen Heldentums glorifizieren wollen. Und daf\xc3\xbcr Applaus bekommen von den organisierten M\xc3\xb6rderbanden des IS. \n\nDavor sollten auch wir Journalisten uns h\xc3\xbcten: Den organisierten Terrorismus gr\xc3\xb6\xc3\x9fer zu machen als er ist. Und aus armseligen Kreaturen Soldaten eines globalen Feldzugs gegen westliche Werte.\nSo hart es auch klingen mag: Gegen die Verr\xc3\xbcckten dieser Welt ist kein Kraut gewachsen. Keine noch so umfassenden Sicherheitssysteme werden Anschl\xc3\xa4ge wie den von Nizza f\xc3\xbcr immer verhindern k\xc3\xb6nnen.\n\nWas allein wir tun k\xc3\xb6nnen: Keine falschen Antihelden schaffen. Und unsere Freiheiten verteidigen. Gegen den Terrorismus sowieso, aber auch gegen die Sicherheitsfanatiker, die meinen, der Polizeistaat sei das einzige Mittel gegen durchgeknallte Massenm\xc3\xb6rder. \n\nGeorg Restle \n\n#monitor #ard #georgrestle'",missing_value,missing_value,1417.0,10.0,2.0,3.0,57.0,22.0,119.0,334.0,433.0,87.0,2016-07-15 15:22:03,1,0,0,0,0,0,0,0,0,0,201607,1,1964.0
992,995,23283,Monitor,186702484702033.0,1110057419033197,2016-07-14 00:00:00,ISLAMIST,2016-07-18 15:09:04,link,"b'Geheimkapitel ver\xc3\xb6ffentlicht - Helfer der 9/11-Attent\xc3\xa4ter hatten Verbindungen zu saudischen Offiziellen\n \nMONITOR hatte im Juni \xc3\xbcber geheim gehaltene Seiten eines Untersuchungsberichtes zu den 9/11-Anschl\xc3\xa4gen auf das World Trade Center in New York berichtet. Nun hat das Wei\xc3\x9fe Haus die omin\xc3\xb6sen \xe2\x80\x9e28 Seiten\xe2\x80\x9c 14 Jahre nach ihrer Abfassung f\xc3\xbcr die \xc3\x96ffentlichkeit freigegeben. Der Inhalt best\xc3\xa4tigt die Aussagen, die insbesondere der ehemalige Vorsitzende der Untersuchungskommission, Senator Bob Graham im MONITOR-Interview gemacht hatte: Zweifelsfrei wurden danach die 9/11-Attent\xc3\xa4ter von San Diego von saudischen Staatsb\xc3\xbcrgern in den USA ideologisch, finanziell und logistisch unterst\xc3\xbctzt. \n \nBei einem saudischen Helfer ist die Rede von nachweisbar \xc3\xbcber 100 Telefonanrufen zu saudischen Regierungsstellen in den USA, er erhielt laut Bericht indirekt auch Geld vom Finanzministerium in Riad. Ein anderer Helfer sei \xc3\xbcber Umwege finanziert worden, seine Frau habe ein Stipendium einer Stiftung der Saudischen Kronprinzessin erhalten. Der Bericht enth\xc3\xa4lt zudem die Aussage eines FBI-Agenten, nach der die Anlaufstelle der Terroristen, die Moschee in Culver City, der saudischen Regierung als Geldwaschanlage gedient haben soll. In den 28 Seiten wird auch ein CIA-Papier erw\xc3\xa4hnt, das bereits fr\xc3\xbchzeitig gewarnt hatte, es k\xc3\xb6nne ein gro\xc3\x9fes finanzielles Netzwerk zwischen den Attent\xc3\xa4tern, saudischen Beamten und der K\xc3\xb6nigsfamilie in Riad existieren. Dieses Papier \xc3\xbcber die strukturellen Verbindungen sei, so wird vermerkt, aus unerfindlichen Gr\xc3\xbcnden nie in die H\xc3\xa4nde der Ermittler in Washington gelangt. \n \nDer von vielen Seiten erhobene Vorwurf, die 9/11-Anschl\xc3\xa4ge seien aus Riad von staatlicher Seite mit geplant worden und die Helfer seien m\xc3\xb6glicherweise als Geheimagenten ins Land geschleust worden, werden durch die \xc3\xbcberraschende Ver\xc3\xb6ffentlichung des Geheimkapitels allerdings weder widerlegt noch best\xc3\xa4tigt: Etwa ein Zehntel des Textes, wom\xc3\xb6glich die brisantesten Stellen \xc3\xbcber die saudischen Staatsb\xc3\xbcrger, sind immer noch geschw\xc3\xa4rzt.'",b'MONITOR vom 02.06.2016 - Sendungen - Monitor - Das Erste',http://www1.wdr.de/daserste/monitor/sendungen/elfter-september-102.html,408.0,0.0,49.0,3.0,9.0,106.0,98.0,327.0,433.0,87.0,2016-07-18 15:09:04,1,0,0,0,0,0,0,0,1,0,201607,1,1000.0
993,996,23391,BR - Bayerischer Rundfunk,157820960901646.0,1416584281691968,2016-07-14 00:00:00,ISLAMIST,2016-07-17 07:55:01,photo,"b'Der Messerschmitt-Kabinenroller steht wie die Isetta, das Goggomobil oder der Spatz f\xc3\xbcr die Kleinstwagen, die nach dem Krieg den Grundstein der bayerischen Autoindustrie gelegt haben. BR-Autor Thomas Muggenthaler hat passionierte Fans der heutigen Kultautos getroffen. ""Zeit f\xc3\xbcr Bayern"", Bayern 2, 12.05 Uhr. Audio und Bilder: http://br.de/s/2N6Sed7\n\nBild: BR/Muggenthaler'",b'Timeline Photos',https://www.facebook.com/bayerischer.rundfunk/photos/a.546041238746281.145688.157820960901646/1416584281691968/?type=3,92.0,3.0,1.0,2.0,0.0,0.0,3.0,12.0,433.0,87.0,2016-07-17 07:55:01,1,0,0,0,0,0,1,0,0,2,201607,0,113.0
994,997,23393,BR - Bayerischer Rundfunk,157820960901646.0,1418827671467629,2016-07-14 00:00:00,ISLAMIST,2016-07-18 08:25:50,photo,b'Starke Geste! Klassik am Odeonsplatz wurde gestern den Terroropfern von Nizza und deren Angeh\xc3\xb6rigen gewidmet. \nBild: Britta Schultejans/dpa',b'Timeline Photos',https://www.facebook.com/bayerischer.rundfunk/photos/a.546041238746281.145688.157820960901646/1418827671467629/?type=3,323.0,13.0,7.0,0.0,1.0,0.0,12.0,22.0,433.0,87.0,2016-07-18 08:25:50,1,0,0,0,0,0,1,0,0,2,201607,1,378.0
995,998,23426,rbb24,1645763252367579.0,1738290913114812,2016-07-14 00:00:00,ISLAMIST,2016-07-15 18:28:29,video,"b'""Ich will nicht, dass es zur Routine wird, hierher zu kommen und zu trauern. Das ist einfach unm\xc3\xb6glich."" \n\nReaktionen am Pariser Platz auf den Anschlag von #Nizza. #NiceAttack'",missing_value,https://www.facebook.com/rbb24.de/videos/1738290913114812/,2.0,0.0,0.0,0.0,0.0,0.0,1.0,2.0,433.0,87.0,2016-07-15 18:28:29,1,0,0,0,0,0,0,1,0,1,201607,0,5.0
996,999,23462,ARD,48219766388.0,10153617706821389,2016-07-14 00:00:00,ISLAMIST,2016-07-19 16:15:07,video,b'Heute um 20.15 Uhr: BRENNPUNKT - Die Tat von W\xc3\xbcrzburg \xe2\x80\x93 ein islamistischer Terrorangriff - hier im Livestream:',b'Livestream: BRENNPUNKT - #W\xc3\xbcrzburg',http://www.ardmediathek.de/tv/Das-Erste/live?kanal=208,11.0,0.0,0.0,0.0,1.0,9.0,95.0,7.0,433.0,87.0,2016-07-19 16:15:07,1,0,0,0,0,0,0,1,0,1,201607,1,123.0
997,1000,23475,Augsburger Allgemeine,121104385783.0,10153785075840784,2016-07-14 00:00:00,ISLAMIST,2016-07-18 16:51:30,photo,"b'Der Anschlag von Nizza hat weltweit Trauer und Entsetzen ausgel\xc3\xb6st. In Augsburg gab es gerade eine Gedenkstunde am K\xc3\xb6nigsplatz, zu der rund 50 Teilnehmer kamen. (Foto: Anne Wall)'",b'Timeline Photos',https://www.facebook.com/AugsburgerAllgemeine/photos/a.379128945783.159200.121104385783/10153785075840784/?type=3,45.0,3.0,0.0,0.0,0.0,0.0,8.0,2.0,433.0,87.0,2016-07-18 16:51:30,1,0,0,0,0,0,1,0,0,2,201607,0,58.0
998,1001,23487,Channel 4 News,6622931938.0,10153893902216939,2016-07-14 00:00:00,ISLAMIST,2016-07-15 16:23:20,video,"b'This is the man behind the Nice massacre - a known criminal and ""not very religious"" his neighbours say.'",b'Nice attacker named as Mohamed Lahouaiej Bouhlel',https://www.facebook.com/Channel4News/videos/10153893902216939/,944.0,2.0,11.0,2.0,177.0,332.0,294.0,933.0,433.0,87.0,2016-07-15 16:23:20,1,0,0,0,0,0,0,1,0,1,201607,0,2695.0