Datasets:
File size: 140,545 Bytes
417244d |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
tweet,split,instance_id,annotator_group,annotator_id,hs,offensiveness,stereotype,aggressiveness
Cheap £ means foreigners will be flocking here this summer - oh the irony :-) #Brexit,dev,1,control,1,0,0,0,0
Cheap £ means foreigners will be flocking here this summer - oh the irony :-) #Brexit,dev,1,control,2,0,0,0,0
Cheap £ means foreigners will be flocking here this summer - oh the irony :-) #Brexit,dev,1,control,3,0,0,0,0
Cheap £ means foreigners will be flocking here this summer - oh the irony :-) #Brexit,dev,1,target,4,0,0,0,0
Cheap £ means foreigners will be flocking here this summer - oh the irony :-) #Brexit,dev,1,target,5,0,0,0,0
Cheap £ means foreigners will be flocking here this summer - oh the irony :-) #Brexit,dev,1,target,6,0,0,0,0
#BrexitOrNot ?? Easy!! #BREXIT and protect your country from uncontrolled immigration and the threat of terrorism!!,dev,2,control,1,0,1,1,1
#BrexitOrNot ?? Easy!! #BREXIT and protect your country from uncontrolled immigration and the threat of terrorism!!,dev,2,control,2,0,1,1,0
#BrexitOrNot ?? Easy!! #BREXIT and protect your country from uncontrolled immigration and the threat of terrorism!!,dev,2,control,3,0,0,0,0
#BrexitOrNot ?? Easy!! #BREXIT and protect your country from uncontrolled immigration and the threat of terrorism!!,dev,2,target,4,1,1,1,1
#BrexitOrNot ?? Easy!! #BREXIT and protect your country from uncontrolled immigration and the threat of terrorism!!,dev,2,target,5,1,1,1,1
#BrexitOrNot ?? Easy!! #BREXIT and protect your country from uncontrolled immigration and the threat of terrorism!!,dev,2,target,6,0,0,1,0
"<user> #brexit to sum it up in just one word ""terrorism"", radical Islam was a not tackled properly. All religions are not same.",dev,3,control,1,0,0,1,0
"<user> #brexit to sum it up in just one word ""terrorism"", radical Islam was a not tackled properly. All religions are not same.",dev,3,control,2,0,0,1,0
"<user> #brexit to sum it up in just one word ""terrorism"", radical Islam was a not tackled properly. All religions are not same.",dev,3,control,3,0,1,0,0
"<user> #brexit to sum it up in just one word ""terrorism"", radical Islam was a not tackled properly. All religions are not same.",dev,3,target,4,1,1,1,1
"<user> #brexit to sum it up in just one word ""terrorism"", radical Islam was a not tackled properly. All religions are not same.",dev,3,target,5,1,1,1,1
"<user> #brexit to sum it up in just one word ""terrorism"", radical Islam was a not tackled properly. All religions are not same.",dev,3,target,6,1,1,1,0
Putin says #Brexit reflects unhappiness with migration & security worries <url>,dev,4,control,1,0,0,0,0
Putin says #Brexit reflects unhappiness with migration & security worries <url>,dev,4,control,2,0,0,0,0
Putin says #Brexit reflects unhappiness with migration & security worries <url>,dev,4,control,3,0,0,0,0
Putin says #Brexit reflects unhappiness with migration & security worries <url>,dev,4,target,4,0,0,0,0
Putin says #Brexit reflects unhappiness with migration & security worries <url>,dev,4,target,5,0,0,0,0
Putin says #Brexit reflects unhappiness with migration & security worries <url>,dev,4,target,6,0,0,0,0
"#Brexit is looking likely. but anti-immigration is much stronger in the UK than in the US, so this does not signal a Trump presidency",dev,5,control,1,0,0,0,0
"#Brexit is looking likely. but anti-immigration is much stronger in the UK than in the US, so this does not signal a Trump presidency",dev,5,control,2,0,0,0,0
"#Brexit is looking likely. but anti-immigration is much stronger in the UK than in the US, so this does not signal a Trump presidency",dev,5,control,3,0,0,0,0
"#Brexit is looking likely. but anti-immigration is much stronger in the UK than in the US, so this does not signal a Trump presidency",dev,5,target,4,0,0,0,0
"#Brexit is looking likely. but anti-immigration is much stronger in the UK than in the US, so this does not signal a Trump presidency",dev,5,target,5,0,0,0,0
"#Brexit is looking likely. but anti-immigration is much stronger in the UK than in the US, so this does not signal a Trump presidency",dev,5,target,6,0,0,0,0
"#TheSun warning well informed #Brexit readership that foreign holidays, mobile phones & mortgages will cost more - wages under threat -No!",dev,6,control,1,0,0,0,0
"#TheSun warning well informed #Brexit readership that foreign holidays, mobile phones & mortgages will cost more - wages under threat -No!",dev,6,control,2,0,0,0,0
"#TheSun warning well informed #Brexit readership that foreign holidays, mobile phones & mortgages will cost more - wages under threat -No!",dev,6,control,3,0,0,0,0
"#TheSun warning well informed #Brexit readership that foreign holidays, mobile phones & mortgages will cost more - wages under threat -No!",dev,6,target,4,0,0,0,0
"#TheSun warning well informed #Brexit readership that foreign holidays, mobile phones & mortgages will cost more - wages under threat -No!",dev,6,target,5,0,0,0,0
"#TheSun warning well informed #Brexit readership that foreign holidays, mobile phones & mortgages will cost more - wages under threat -No!",dev,6,target,6,0,0,0,0
RT <user>: .<user> to remain British PM after #Brexit vote: British Foreign Minister <url> <url>,dev,7,control,1,0,0,0,0
RT <user>: .<user> to remain British PM after #Brexit vote: British Foreign Minister <url> <url>,dev,7,control,2,0,0,0,0
RT <user>: .<user> to remain British PM after #Brexit vote: British Foreign Minister <url> <url>,dev,7,control,3,0,0,0,0
RT <user>: .<user> to remain British PM after #Brexit vote: British Foreign Minister <url> <url>,dev,7,target,4,0,0,0,0
RT <user>: .<user> to remain British PM after #Brexit vote: British Foreign Minister <url> <url>,dev,7,target,5,0,0,0,0
RT <user>: .<user> to remain British PM after #Brexit vote: British Foreign Minister <url> <url>,dev,7,target,6,0,0,0,0
Pakistani Muslim leader brags: jihad the reason behind #Brexit <url>,dev,8,control,1,0,0,1,0
Pakistani Muslim leader brags: jihad the reason behind #Brexit <url>,dev,8,control,2,0,0,0,0
Pakistani Muslim leader brags: jihad the reason behind #Brexit <url>,dev,8,control,3,0,0,0,0
Pakistani Muslim leader brags: jihad the reason behind #Brexit <url>,dev,8,target,4,0,1,1,0
Pakistani Muslim leader brags: jihad the reason behind #Brexit <url>,dev,8,target,5,1,1,1,1
Pakistani Muslim leader brags: jihad the reason behind #Brexit <url>,dev,8,target,6,0,0,1,0
"#BREXIT IS A VOTE AGAINST ESTABLISHMENT, MULTICULTURALISM, IMMIGRATION AND FEMINISM....<url> <url>",dev,9,control,1,0,0,0,0
"#BREXIT IS A VOTE AGAINST ESTABLISHMENT, MULTICULTURALISM, IMMIGRATION AND FEMINISM....<url> <url>",dev,9,control,2,0,0,0,0
"#BREXIT IS A VOTE AGAINST ESTABLISHMENT, MULTICULTURALISM, IMMIGRATION AND FEMINISM....<url> <url>",dev,9,control,3,0,0,0,0
"#BREXIT IS A VOTE AGAINST ESTABLISHMENT, MULTICULTURALISM, IMMIGRATION AND FEMINISM....<url> <url>",dev,9,target,4,0,0,0,0
"#BREXIT IS A VOTE AGAINST ESTABLISHMENT, MULTICULTURALISM, IMMIGRATION AND FEMINISM....<url> <url>",dev,9,target,5,0,0,0,0
"#BREXIT IS A VOTE AGAINST ESTABLISHMENT, MULTICULTURALISM, IMMIGRATION AND FEMINISM....<url> <url>",dev,9,target,6,0,0,0,0
"Just realised: thanks to #Brexit I am now COMPLETELY SAFE from terrorist attack! And with those 6,000 new hospitals I'm gonna live forever!",dev,10,control,1,0,0,0,0
"Just realised: thanks to #Brexit I am now COMPLETELY SAFE from terrorist attack! And with those 6,000 new hospitals I'm gonna live forever!",dev,10,control,2,0,0,0,0
"Just realised: thanks to #Brexit I am now COMPLETELY SAFE from terrorist attack! And with those 6,000 new hospitals I'm gonna live forever!",dev,10,control,3,0,0,0,0
"Just realised: thanks to #Brexit I am now COMPLETELY SAFE from terrorist attack! And with those 6,000 new hospitals I'm gonna live forever!",dev,10,target,4,0,0,0,0
"Just realised: thanks to #Brexit I am now COMPLETELY SAFE from terrorist attack! And with those 6,000 new hospitals I'm gonna live forever!",dev,10,target,5,0,0,0,0
"Just realised: thanks to #Brexit I am now COMPLETELY SAFE from terrorist attack! And with those 6,000 new hospitals I'm gonna live forever!",dev,10,target,6,1,0,1,0
<user> Yeah emotion at not wanting to be invaded and harassed and controlled by Islamic / Muslim fundamentalists anymore #BREXIT #UK,dev,11,control,1,0,1,1,1
<user> Yeah emotion at not wanting to be invaded and harassed and controlled by Islamic / Muslim fundamentalists anymore #BREXIT #UK,dev,11,control,2,0,0,1,0
<user> Yeah emotion at not wanting to be invaded and harassed and controlled by Islamic / Muslim fundamentalists anymore #BREXIT #UK,dev,11,control,3,1,1,1,0
<user> Yeah emotion at not wanting to be invaded and harassed and controlled by Islamic / Muslim fundamentalists anymore #BREXIT #UK,dev,11,target,4,1,1,1,1
<user> Yeah emotion at not wanting to be invaded and harassed and controlled by Islamic / Muslim fundamentalists anymore #BREXIT #UK,dev,11,target,5,1,1,1,1
<user> Yeah emotion at not wanting to be invaded and harassed and controlled by Islamic / Muslim fundamentalists anymore #BREXIT #UK,dev,11,target,6,1,1,1,1
you're wrong.. it's a nasty comment <user> that half the country has phobias about islam or foreigners. #Brexit,dev,12,control,1,0,0,0,0
you're wrong.. it's a nasty comment <user> that half the country has phobias about islam or foreigners. #Brexit,dev,12,control,2,0,0,0,0
you're wrong.. it's a nasty comment <user> that half the country has phobias about islam or foreigners. #Brexit,dev,12,control,3,0,0,0,0
you're wrong.. it's a nasty comment <user> that half the country has phobias about islam or foreigners. #Brexit,dev,12,target,4,0,0,0,0
you're wrong.. it's a nasty comment <user> that half the country has phobias about islam or foreigners. #Brexit,dev,12,target,5,0,0,0,0
you're wrong.. it's a nasty comment <user> that half the country has phobias about islam or foreigners. #Brexit,dev,12,target,6,0,0,0,0
I see this wasteman & advocate of terrorism also has some pretty abysmal views on #Brexit too. No surprise. <url>,dev,13,control,1,0,0,0,0
I see this wasteman & advocate of terrorism also has some pretty abysmal views on #Brexit too. No surprise. <url>,dev,13,control,2,0,0,0,0
I see this wasteman & advocate of terrorism also has some pretty abysmal views on #Brexit too. No surprise. <url>,dev,13,control,3,0,0,0,0
I see this wasteman & advocate of terrorism also has some pretty abysmal views on #Brexit too. No surprise. <url>,dev,13,target,4,0,1,0,0
I see this wasteman & advocate of terrorism also has some pretty abysmal views on #Brexit too. No surprise. <url>,dev,13,target,5,0,0,0,0
I see this wasteman & advocate of terrorism also has some pretty abysmal views on #Brexit too. No surprise. <url>,dev,13,target,6,0,0,0,0
You can always go to those Muslim bastions of freedom <url>,dev,14,control,1,0,0,1,0
You can always go to those Muslim bastions of freedom <url>,dev,14,control,2,0,0,1,0
You can always go to those Muslim bastions of freedom <url>,dev,14,control,3,0,1,0,0
You can always go to those Muslim bastions of freedom <url>,dev,14,target,4,0,0,0,0
You can always go to those Muslim bastions of freedom <url>,dev,14,target,5,1,1,0,0
You can always go to those Muslim bastions of freedom <url>,dev,14,target,6,1,1,0,0
"Remainers take note- in future you cannot complain about lack of jobs, immigration, public cuts & unable to deport criminals + more #Brexit",dev,15,control,1,0,0,0,0
"Remainers take note- in future you cannot complain about lack of jobs, immigration, public cuts & unable to deport criminals + more #Brexit",dev,15,control,2,0,1,1,1
"Remainers take note- in future you cannot complain about lack of jobs, immigration, public cuts & unable to deport criminals + more #Brexit",dev,15,control,3,0,0,0,1
"Remainers take note- in future you cannot complain about lack of jobs, immigration, public cuts & unable to deport criminals + more #Brexit",dev,15,target,4,1,1,1,0
"Remainers take note- in future you cannot complain about lack of jobs, immigration, public cuts & unable to deport criminals + more #Brexit",dev,15,target,5,1,1,0,1
"Remainers take note- in future you cannot complain about lack of jobs, immigration, public cuts & unable to deport criminals + more #Brexit",dev,15,target,6,0,0,1,0
"Calais Mayor: migrant camps should move from Calais to Britain
#brexit <url>",dev,16,control,1,0,0,0,0
"Calais Mayor: migrant camps should move from Calais to Britain
#brexit <url>",dev,16,control,2,0,0,0,0
"Calais Mayor: migrant camps should move from Calais to Britain
#brexit <url>",dev,16,control,3,0,0,0,0
"Calais Mayor: migrant camps should move from Calais to Britain
#brexit <url>",dev,16,target,4,0,0,0,0
"Calais Mayor: migrant camps should move from Calais to Britain
#brexit <url>",dev,16,target,5,0,0,0,0
"Calais Mayor: migrant camps should move from Calais to Britain
#brexit <url>",dev,16,target,6,0,0,0,0
<user> <user> All facts show there is no such thing as benign Left.Exactly like Islam the Left gravitates to tyranny. #brexit #auspol,dev,17,control,1,0,1,1,0
<user> <user> All facts show there is no such thing as benign Left.Exactly like Islam the Left gravitates to tyranny. #brexit #auspol,dev,17,control,2,0,1,1,0
<user> <user> All facts show there is no such thing as benign Left.Exactly like Islam the Left gravitates to tyranny. #brexit #auspol,dev,17,control,3,0,1,0,0
<user> <user> All facts show there is no such thing as benign Left.Exactly like Islam the Left gravitates to tyranny. #brexit #auspol,dev,17,target,4,1,1,1,1
<user> <user> All facts show there is no such thing as benign Left.Exactly like Islam the Left gravitates to tyranny. #brexit #auspol,dev,17,target,5,1,1,1,1
<user> <user> All facts show there is no such thing as benign Left.Exactly like Islam the Left gravitates to tyranny. #brexit #auspol,dev,17,target,6,0,0,0,0
"#Eurotunnel boss warns of surge of illegals trying to enter UK before #Brexit. Then do your job properly & stop it, or are you incompetent?",dev,18,control,1,0,1,0,1
"#Eurotunnel boss warns of surge of illegals trying to enter UK before #Brexit. Then do your job properly & stop it, or are you incompetent?",dev,18,control,2,0,0,0,0
"#Eurotunnel boss warns of surge of illegals trying to enter UK before #Brexit. Then do your job properly & stop it, or are you incompetent?",dev,18,control,3,0,0,0,0
"#Eurotunnel boss warns of surge of illegals trying to enter UK before #Brexit. Then do your job properly & stop it, or are you incompetent?",dev,18,target,4,1,1,0,1
"#Eurotunnel boss warns of surge of illegals trying to enter UK before #Brexit. Then do your job properly & stop it, or are you incompetent?",dev,18,target,5,1,1,0,0
"#Eurotunnel boss warns of surge of illegals trying to enter UK before #Brexit. Then do your job properly & stop it, or are you incompetent?",dev,18,target,6,0,0,0,0
"The Economist ranks #Trump presidency higher economic risk than terrorism & #Brexit
Let that marinate for a moment
<url>",dev,19,control,1,0,0,0,0
"The Economist ranks #Trump presidency higher economic risk than terrorism & #Brexit
Let that marinate for a moment
<url>",dev,19,control,2,0,0,0,0
"The Economist ranks #Trump presidency higher economic risk than terrorism & #Brexit
Let that marinate for a moment
<url>",dev,19,control,3,0,0,0,0
"The Economist ranks #Trump presidency higher economic risk than terrorism & #Brexit
Let that marinate for a moment
<url>",dev,19,target,4,0,0,0,0
"The Economist ranks #Trump presidency higher economic risk than terrorism & #Brexit
Let that marinate for a moment
<url>",dev,19,target,5,0,0,0,0
"The Economist ranks #Trump presidency higher economic risk than terrorism & #Brexit
Let that marinate for a moment
<url>",dev,19,target,6,0,0,0,0
National Security concerns vs. Economic Prosperity plans. The fear over the globalization of terrorism won #Brexit,dev,20,control,1,0,0,0,0
National Security concerns vs. Economic Prosperity plans. The fear over the globalization of terrorism won #Brexit,dev,20,control,2,0,0,0,0
National Security concerns vs. Economic Prosperity plans. The fear over the globalization of terrorism won #Brexit,dev,20,control,3,0,0,0,0
National Security concerns vs. Economic Prosperity plans. The fear over the globalization of terrorism won #Brexit,dev,20,target,4,0,0,0,0
National Security concerns vs. Economic Prosperity plans. The fear over the globalization of terrorism won #Brexit,dev,20,target,5,0,1,1,0
National Security concerns vs. Economic Prosperity plans. The fear over the globalization of terrorism won #Brexit,dev,20,target,6,0,0,1,0
"Top 3 of the people worried by the #Brexit Aspiring foreign investment bankers, London real estate agents and City Hookers",dev,21,control,1,0,0,0,0
"Top 3 of the people worried by the #Brexit Aspiring foreign investment bankers, London real estate agents and City Hookers",dev,21,control,2,0,0,0,0
"Top 3 of the people worried by the #Brexit Aspiring foreign investment bankers, London real estate agents and City Hookers",dev,21,control,3,0,0,0,0
"Top 3 of the people worried by the #Brexit Aspiring foreign investment bankers, London real estate agents and City Hookers",dev,21,target,4,0,0,0,0
"Top 3 of the people worried by the #Brexit Aspiring foreign investment bankers, London real estate agents and City Hookers",dev,21,target,5,0,0,1,0
"Top 3 of the people worried by the #Brexit Aspiring foreign investment bankers, London real estate agents and City Hookers",dev,21,target,6,0,0,0,0
"A Welsh Muslim woman,'leave' supporter, was told since #Brexit to 'pack bags and leave' <user> <url> <url>",dev,22,control,1,0,0,0,0
"A Welsh Muslim woman,'leave' supporter, was told since #Brexit to 'pack bags and leave' <user> <url> <url>",dev,22,control,2,0,0,0,0
"A Welsh Muslim woman,'leave' supporter, was told since #Brexit to 'pack bags and leave' <user> <url> <url>",dev,22,control,3,1,0,0,1
"A Welsh Muslim woman,'leave' supporter, was told since #Brexit to 'pack bags and leave' <user> <url> <url>",dev,22,target,4,0,1,0,0
"A Welsh Muslim woman,'leave' supporter, was told since #Brexit to 'pack bags and leave' <user> <url> <url>",dev,22,target,5,0,0,0,0
"A Welsh Muslim woman,'leave' supporter, was told since #Brexit to 'pack bags and leave' <user> <url> <url>",dev,22,target,6,0,0,0,0
#Brexit seems to be a referendum on migration crises in EU more than the #economic considerations. #Politics wins over #economics.,dev,23,control,1,0,0,0,0
#Brexit seems to be a referendum on migration crises in EU more than the #economic considerations. #Politics wins over #economics.,dev,23,control,2,0,0,0,0
#Brexit seems to be a referendum on migration crises in EU more than the #economic considerations. #Politics wins over #economics.,dev,23,control,3,0,0,0,0
#Brexit seems to be a referendum on migration crises in EU more than the #economic considerations. #Politics wins over #economics.,dev,23,target,4,0,0,0,0
#Brexit seems to be a referendum on migration crises in EU more than the #economic considerations. #Politics wins over #economics.,dev,23,target,5,0,0,0,0
#Brexit seems to be a referendum on migration crises in EU more than the #economic considerations. #Politics wins over #economics.,dev,23,target,6,0,0,0,0
Racist Brexit blowback: Muslim women targeted for abuse after EU referendum vote <url> via <user> #Brexit,dev,24,control,1,0,0,0,0
Racist Brexit blowback: Muslim women targeted for abuse after EU referendum vote <url> via <user> #Brexit,dev,24,control,2,0,0,0,0
Racist Brexit blowback: Muslim women targeted for abuse after EU referendum vote <url> via <user> #Brexit,dev,24,control,3,0,0,0,0
Racist Brexit blowback: Muslim women targeted for abuse after EU referendum vote <url> via <user> #Brexit,dev,24,target,4,1,1,0,1
Racist Brexit blowback: Muslim women targeted for abuse after EU referendum vote <url> via <user> #Brexit,dev,24,target,5,0,1,0,0
Racist Brexit blowback: Muslim women targeted for abuse after EU referendum vote <url> via <user> #Brexit,dev,24,target,6,0,0,0,0
Ignorant Brits protest leaving the EU. Wants more refugees to come in and kill their families. SMMFH...#brexit #BrexitOrNot #Brexitdebate,dev,25,control,1,0,1,1,0
Ignorant Brits protest leaving the EU. Wants more refugees to come in and kill their families. SMMFH...#brexit #BrexitOrNot #Brexitdebate,dev,25,control,2,0,1,1,0
Ignorant Brits protest leaving the EU. Wants more refugees to come in and kill their families. SMMFH...#brexit #BrexitOrNot #Brexitdebate,dev,25,control,3,0,1,1,1
Ignorant Brits protest leaving the EU. Wants more refugees to come in and kill their families. SMMFH...#brexit #BrexitOrNot #Brexitdebate,dev,25,target,4,1,1,1,1
Ignorant Brits protest leaving the EU. Wants more refugees to come in and kill their families. SMMFH...#brexit #BrexitOrNot #Brexitdebate,dev,25,target,5,1,1,1,1
Ignorant Brits protest leaving the EU. Wants more refugees to come in and kill their families. SMMFH...#brexit #BrexitOrNot #Brexitdebate,dev,25,target,6,1,1,1,0
<user> <user> Islam has nothing to do with migrants and #Brexit!,dev,26,control,1,0,0,0,0
<user> <user> Islam has nothing to do with migrants and #Brexit!,dev,26,control,2,0,0,0,0
<user> <user> Islam has nothing to do with migrants and #Brexit!,dev,26,control,3,0,0,0,0
<user> <user> Islam has nothing to do with migrants and #Brexit!,dev,26,target,4,0,0,0,0
<user> <user> Islam has nothing to do with migrants and #Brexit!,dev,26,target,5,0,0,0,0
<user> <user> Islam has nothing to do with migrants and #Brexit!,dev,26,target,6,0,0,0,0
"Brexit and the Muslim Equity Investor - SharedEq #brexit #muslim #investor
<url> <url>",dev,27,control,1,0,0,0,0
"Brexit and the Muslim Equity Investor - SharedEq #brexit #muslim #investor
<url> <url>",dev,27,control,2,0,0,0,0
"Brexit and the Muslim Equity Investor - SharedEq #brexit #muslim #investor
<url> <url>",dev,27,control,3,0,0,0,0
"Brexit and the Muslim Equity Investor - SharedEq #brexit #muslim #investor
<url> <url>",dev,27,target,4,0,0,0,0
"Brexit and the Muslim Equity Investor - SharedEq #brexit #muslim #investor
<url> <url>",dev,27,target,5,0,0,0,0
"Brexit and the Muslim Equity Investor - SharedEq #brexit #muslim #investor
<url> <url>",dev,27,target,6,0,0,0,0
"This shows how uninformed some brits were about the idea of #Brexit .the leave vote was not ""A Muslim ban vote"" <url>",dev,28,control,1,0,0,0,0
"This shows how uninformed some brits were about the idea of #Brexit .the leave vote was not ""A Muslim ban vote"" <url>",dev,28,control,2,0,0,0,0
"This shows how uninformed some brits were about the idea of #Brexit .the leave vote was not ""A Muslim ban vote"" <url>",dev,28,control,3,0,0,0,0
"This shows how uninformed some brits were about the idea of #Brexit .the leave vote was not ""A Muslim ban vote"" <url>",dev,28,target,4,0,0,0,0
"This shows how uninformed some brits were about the idea of #Brexit .the leave vote was not ""A Muslim ban vote"" <url>",dev,28,target,5,0,0,0,0
"This shows how uninformed some brits were about the idea of #Brexit .the leave vote was not ""A Muslim ban vote"" <url>",dev,28,target,6,0,0,0,0
<user> TIME TO PACK YOUR PRAYER RUGS #Brexit HAS DONE ISLAM IN! <user> <user> <user> #OPRW <url>,dev,29,control,1,1,0,0,1
<user> TIME TO PACK YOUR PRAYER RUGS #Brexit HAS DONE ISLAM IN! <user> <user> <user> #OPRW <url>,dev,29,control,2,0,0,0,0
<user> TIME TO PACK YOUR PRAYER RUGS #Brexit HAS DONE ISLAM IN! <user> <user> <user> #OPRW <url>,dev,29,control,3,1,1,0,1
<user> TIME TO PACK YOUR PRAYER RUGS #Brexit HAS DONE ISLAM IN! <user> <user> <user> #OPRW <url>,dev,29,target,4,1,1,0,1
<user> TIME TO PACK YOUR PRAYER RUGS #Brexit HAS DONE ISLAM IN! <user> <user> <user> #OPRW <url>,dev,29,target,5,1,1,0,1
<user> TIME TO PACK YOUR PRAYER RUGS #Brexit HAS DONE ISLAM IN! <user> <user> <user> #OPRW <url>,dev,29,target,6,1,1,0,0
Nigel Farage cares more about EU immigration than UK prosperity <url> #brexit #euref #nigelfarage <url>,dev,30,control,1,0,0,0,0
Nigel Farage cares more about EU immigration than UK prosperity <url> #brexit #euref #nigelfarage <url>,dev,30,control,2,0,0,0,0
Nigel Farage cares more about EU immigration than UK prosperity <url> #brexit #euref #nigelfarage <url>,dev,30,control,3,0,0,0,0
Nigel Farage cares more about EU immigration than UK prosperity <url> #brexit #euref #nigelfarage <url>,dev,30,target,4,0,0,0,0
Nigel Farage cares more about EU immigration than UK prosperity <url> #brexit #euref #nigelfarage <url>,dev,30,target,5,0,0,0,0
Nigel Farage cares more about EU immigration than UK prosperity <url> #brexit #euref #nigelfarage <url>,dev,30,target,6,0,0,0,0
"RT <user>: Leave admits immigration won't change and the £350 million a day won't be spent on the NHS. Leave lied. So, why #Brexit?",dev,31,control,1,0,0,0,0
"RT <user>: Leave admits immigration won't change and the £350 million a day won't be spent on the NHS. Leave lied. So, why #Brexit?",dev,31,control,2,0,0,0,0
"RT <user>: Leave admits immigration won't change and the £350 million a day won't be spent on the NHS. Leave lied. So, why #Brexit?",dev,31,control,3,0,0,0,0
"RT <user>: Leave admits immigration won't change and the £350 million a day won't be spent on the NHS. Leave lied. So, why #Brexit?",dev,31,target,4,0,0,0,0
"RT <user>: Leave admits immigration won't change and the £350 million a day won't be spent on the NHS. Leave lied. So, why #Brexit?",dev,31,target,5,0,0,0,0
"RT <user>: Leave admits immigration won't change and the £350 million a day won't be spent on the NHS. Leave lied. So, why #Brexit?",dev,31,target,6,0,0,0,0
Any future terrorist attacks in Europe will be blamed on #Brexit by the LMSM.,dev,32,control,1,0,0,0,0
Any future terrorist attacks in Europe will be blamed on #Brexit by the LMSM.,dev,32,control,2,0,0,0,0
Any future terrorist attacks in Europe will be blamed on #Brexit by the LMSM.,dev,32,control,3,0,0,0,0
Any future terrorist attacks in Europe will be blamed on #Brexit by the LMSM.,dev,32,target,4,0,0,0,0
Any future terrorist attacks in Europe will be blamed on #Brexit by the LMSM.,dev,32,target,5,0,0,0,0
Any future terrorist attacks in Europe will be blamed on #Brexit by the LMSM.,dev,32,target,6,0,0,0,0
"Reading the Holy Quran is the only solution,
to get rid of your depression
#Brexit
#Glastonbury
#EURO2016
#Marr
#HappyBirthdayArianaGrande",dev,33,control,1,0,0,0,0
"Reading the Holy Quran is the only solution,
to get rid of your depression
#Brexit
#Glastonbury
#EURO2016
#Marr
#HappyBirthdayArianaGrande",dev,33,control,2,0,0,0,0
"Reading the Holy Quran is the only solution,
to get rid of your depression
#Brexit
#Glastonbury
#EURO2016
#Marr
#HappyBirthdayArianaGrande",dev,33,control,3,0,0,0,0
"Reading the Holy Quran is the only solution,
to get rid of your depression
#Brexit
#Glastonbury
#EURO2016
#Marr
#HappyBirthdayArianaGrande",dev,33,target,4,0,0,0,0
"Reading the Holy Quran is the only solution,
to get rid of your depression
#Brexit
#Glastonbury
#EURO2016
#Marr
#HappyBirthdayArianaGrande",dev,33,target,5,0,0,0,0
"Reading the Holy Quran is the only solution,
to get rid of your depression
#Brexit
#Glastonbury
#EURO2016
#Marr
#HappyBirthdayArianaGrande",dev,33,target,6,0,0,0,0
Police helpless against marauding Muslim migrants in Spain Coming soon to Canada #cdnpoli #onpoli #topoli #RAPEfugee <url>,dev,34,control,1,0,0,1,0
Police helpless against marauding Muslim migrants in Spain Coming soon to Canada #cdnpoli #onpoli #topoli #RAPEfugee <url>,dev,34,control,2,0,0,0,0
Police helpless against marauding Muslim migrants in Spain Coming soon to Canada #cdnpoli #onpoli #topoli #RAPEfugee <url>,dev,34,control,3,0,1,0,1
Police helpless against marauding Muslim migrants in Spain Coming soon to Canada #cdnpoli #onpoli #topoli #RAPEfugee <url>,dev,34,target,4,0,0,0,0
Police helpless against marauding Muslim migrants in Spain Coming soon to Canada #cdnpoli #onpoli #topoli #RAPEfugee <url>,dev,34,target,5,0,0,0,0
Police helpless against marauding Muslim migrants in Spain Coming soon to Canada #cdnpoli #onpoli #topoli #RAPEfugee <url>,dev,34,target,6,0,0,1,0
#Brexit may inspire more anti immigration rhetoric globally. I wouldn't be surprised if Europe starts to crumble soon. The economy surely is,dev,35,control,1,0,0,0,0
#Brexit may inspire more anti immigration rhetoric globally. I wouldn't be surprised if Europe starts to crumble soon. The economy surely is,dev,35,control,2,0,0,0,0
#Brexit may inspire more anti immigration rhetoric globally. I wouldn't be surprised if Europe starts to crumble soon. The economy surely is,dev,35,control,3,0,0,0,0
#Brexit may inspire more anti immigration rhetoric globally. I wouldn't be surprised if Europe starts to crumble soon. The economy surely is,dev,35,target,4,0,0,1,0
#Brexit may inspire more anti immigration rhetoric globally. I wouldn't be surprised if Europe starts to crumble soon. The economy surely is,dev,35,target,5,0,0,0,0
#Brexit may inspire more anti immigration rhetoric globally. I wouldn't be surprised if Europe starts to crumble soon. The economy surely is,dev,35,target,6,0,0,0,0
"MP Gisela Stuart confirmed that Leave never talked about deportation
She herself is a migrant from Germany
<url> #Brexit",dev,36,control,1,0,0,0,0
"MP Gisela Stuart confirmed that Leave never talked about deportation
She herself is a migrant from Germany
<url> #Brexit",dev,36,control,2,0,0,0,0
"MP Gisela Stuart confirmed that Leave never talked about deportation
She herself is a migrant from Germany
<url> #Brexit",dev,36,control,3,0,0,0,0
"MP Gisela Stuart confirmed that Leave never talked about deportation
She herself is a migrant from Germany
<url> #Brexit",dev,36,target,4,0,0,0,0
"MP Gisela Stuart confirmed that Leave never talked about deportation
She herself is a migrant from Germany
<url> #Brexit",dev,36,target,5,0,0,0,0
"MP Gisela Stuart confirmed that Leave never talked about deportation
She herself is a migrant from Germany
<url> #Brexit",dev,36,target,6,0,0,0,0
<user> How many times.... fuck off & mind your own business you terrorist cunt! <url>,dev,37,control,1,0,1,0,1
<user> How many times.... fuck off & mind your own business you terrorist cunt! <url>,dev,37,control,2,0,1,0,1
<user> How many times.... fuck off & mind your own business you terrorist cunt! <url>,dev,37,control,3,0,0,0,0
<user> How many times.... fuck off & mind your own business you terrorist cunt! <url>,dev,37,target,4,0,1,0,1
<user> How many times.... fuck off & mind your own business you terrorist cunt! <url>,dev,37,target,5,0,1,0,1
<user> How many times.... fuck off & mind your own business you terrorist cunt! <url>,dev,37,target,6,1,1,1,1
Why are Americans talking about Brexit as if they know everything about the UK's immigration record? <url>,dev,38,control,1,0,0,0,0
Why are Americans talking about Brexit as if they know everything about the UK's immigration record? <url>,dev,38,control,2,0,0,0,0
Why are Americans talking about Brexit as if they know everything about the UK's immigration record? <url>,dev,38,control,3,0,0,0,0
Why are Americans talking about Brexit as if they know everything about the UK's immigration record? <url>,dev,38,target,4,0,0,0,0
Why are Americans talking about Brexit as if they know everything about the UK's immigration record? <url>,dev,38,target,5,0,0,0,0
Why are Americans talking about Brexit as if they know everything about the UK's immigration record? <url>,dev,38,target,6,0,0,0,0
<user> <user> After reports of verbal+physical attacks on foreigners post #brexit this was conceived Pls RT <url>,dev,39,control,1,0,0,0,0
<user> <user> After reports of verbal+physical attacks on foreigners post #brexit this was conceived Pls RT <url>,dev,39,control,2,0,0,0,0
<user> <user> After reports of verbal+physical attacks on foreigners post #brexit this was conceived Pls RT <url>,dev,39,control,3,0,0,0,0
<user> <user> After reports of verbal+physical attacks on foreigners post #brexit this was conceived Pls RT <url>,dev,39,target,4,0,0,0,0
<user> <user> After reports of verbal+physical attacks on foreigners post #brexit this was conceived Pls RT <url>,dev,39,target,5,0,0,0,0
<user> <user> After reports of verbal+physical attacks on foreigners post #brexit this was conceived Pls RT <url>,dev,39,target,6,0,0,0,0
"<user> Hard times ahead 4 Britain no doubt. U've suffered worse.
Better than the total collapse of ur society Islam seeks.
#Brexit
<user>",dev,40,control,1,0,1,1,0
"<user> Hard times ahead 4 Britain no doubt. U've suffered worse.
Better than the total collapse of ur society Islam seeks.
#Brexit
<user>",dev,40,control,2,0,1,1,0
"<user> Hard times ahead 4 Britain no doubt. U've suffered worse.
Better than the total collapse of ur society Islam seeks.
#Brexit
<user>",dev,40,control,3,0,0,0,0
"<user> Hard times ahead 4 Britain no doubt. U've suffered worse.
Better than the total collapse of ur society Islam seeks.
#Brexit
<user>",dev,40,target,4,1,1,1,1
"<user> Hard times ahead 4 Britain no doubt. U've suffered worse.
Better than the total collapse of ur society Islam seeks.
#Brexit
<user>",dev,40,target,5,0,1,1,1
"<user> Hard times ahead 4 Britain no doubt. U've suffered worse.
Better than the total collapse of ur society Islam seeks.
#Brexit
<user>",dev,40,target,6,0,0,1,0
An immigrant walks into a bar… | Professor Jem Bendell #brexit <url>,dev,41,control,1,0,0,0,0
An immigrant walks into a bar… | Professor Jem Bendell #brexit <url>,dev,41,control,2,0,0,0,0
An immigrant walks into a bar… | Professor Jem Bendell #brexit <url>,dev,41,control,3,0,0,0,0
An immigrant walks into a bar… | Professor Jem Bendell #brexit <url>,dev,41,target,4,0,0,0,0
An immigrant walks into a bar… | Professor Jem Bendell #brexit <url>,dev,41,target,5,0,0,0,0
An immigrant walks into a bar… | Professor Jem Bendell #brexit <url>,dev,41,target,6,0,0,0,0
So <user> s idea is of a constituent part of the UK opening negotiations with a foreign entity regardless of the UK Gov't? #Brexit,dev,42,control,1,0,0,0,0
So <user> s idea is of a constituent part of the UK opening negotiations with a foreign entity regardless of the UK Gov't? #Brexit,dev,42,control,2,0,0,0,0
So <user> s idea is of a constituent part of the UK opening negotiations with a foreign entity regardless of the UK Gov't? #Brexit,dev,42,control,3,0,0,0,0
So <user> s idea is of a constituent part of the UK opening negotiations with a foreign entity regardless of the UK Gov't? #Brexit,dev,42,target,4,0,0,0,0
So <user> s idea is of a constituent part of the UK opening negotiations with a foreign entity regardless of the UK Gov't? #Brexit,dev,42,target,5,0,0,0,0
So <user> s idea is of a constituent part of the UK opening negotiations with a foreign entity regardless of the UK Gov't? #Brexit,dev,42,target,6,1,1,0,0
#Brexit - Potential implications for UK immigration <url>,dev,43,control,1,0,0,0,0
#Brexit - Potential implications for UK immigration <url>,dev,43,control,2,0,0,0,0
#Brexit - Potential implications for UK immigration <url>,dev,43,control,3,0,0,0,0
#Brexit - Potential implications for UK immigration <url>,dev,43,target,4,0,0,0,0
#Brexit - Potential implications for UK immigration <url>,dev,43,target,5,0,0,0,0
#Brexit - Potential implications for UK immigration <url>,dev,43,target,6,0,0,0,0
RT <user>: Foreign investors eye #UK property after #Brexit <url>,dev,44,control,1,0,0,0,0
RT <user>: Foreign investors eye #UK property after #Brexit <url>,dev,44,control,2,0,0,0,0
RT <user>: Foreign investors eye #UK property after #Brexit <url>,dev,44,control,3,0,0,0,0
RT <user>: Foreign investors eye #UK property after #Brexit <url>,dev,44,target,4,0,0,0,0
RT <user>: Foreign investors eye #UK property after #Brexit <url>,dev,44,target,5,0,0,0,0
RT <user>: Foreign investors eye #UK property after #Brexit <url>,dev,44,target,6,0,0,0,0
"<user> Instead, just like Trump, they played on the anti immigrant and isolationist atttitudes just to get votes. #Brexit",dev,45,control,1,0,0,0,0
"<user> Instead, just like Trump, they played on the anti immigrant and isolationist atttitudes just to get votes. #Brexit",dev,45,control,2,0,0,0,0
"<user> Instead, just like Trump, they played on the anti immigrant and isolationist atttitudes just to get votes. #Brexit",dev,45,control,3,0,0,0,0
"<user> Instead, just like Trump, they played on the anti immigrant and isolationist atttitudes just to get votes. #Brexit",dev,45,target,4,0,0,0,0
"<user> Instead, just like Trump, they played on the anti immigrant and isolationist atttitudes just to get votes. #Brexit",dev,45,target,5,0,0,0,0
"<user> Instead, just like Trump, they played on the anti immigrant and isolationist atttitudes just to get votes. #Brexit",dev,45,target,6,0,0,0,0
yeap only terrorist & sleepers waiting for terrorist act <url>,dev,46,control,1,0,0,0,0
yeap only terrorist & sleepers waiting for terrorist act <url>,dev,46,control,2,0,0,0,0
yeap only terrorist & sleepers waiting for terrorist act <url>,dev,46,control,3,0,0,0,0
yeap only terrorist & sleepers waiting for terrorist act <url>,dev,46,target,4,0,0,0,0
yeap only terrorist & sleepers waiting for terrorist act <url>,dev,46,target,5,0,0,0,0
yeap only terrorist & sleepers waiting for terrorist act <url>,dev,46,target,6,0,0,0,0
"A #Brexit would be a disaster for Europe, empowering the anti-immigrant populists here and across the continent. Get out and vote #Remain",dev,47,control,1,0,0,0,0
"A #Brexit would be a disaster for Europe, empowering the anti-immigrant populists here and across the continent. Get out and vote #Remain",dev,47,control,2,0,0,0,0
"A #Brexit would be a disaster for Europe, empowering the anti-immigrant populists here and across the continent. Get out and vote #Remain",dev,47,control,3,0,0,0,0
"A #Brexit would be a disaster for Europe, empowering the anti-immigrant populists here and across the continent. Get out and vote #Remain",dev,47,target,4,0,0,0,0
"A #Brexit would be a disaster for Europe, empowering the anti-immigrant populists here and across the continent. Get out and vote #Remain",dev,47,target,5,0,1,0,0
"A #Brexit would be a disaster for Europe, empowering the anti-immigrant populists here and across the continent. Get out and vote #Remain",dev,47,target,6,0,0,0,0
"Abandon ME
Draw red line
Cower from red line
Genocide/mass migration ensue
Europe invaded
Brits #Brexit
Obama causes collapse of #EU
#Legacy",dev,48,control,1,0,0,0,0
"Abandon ME
Draw red line
Cower from red line
Genocide/mass migration ensue
Europe invaded
Brits #Brexit
Obama causes collapse of #EU
#Legacy",dev,48,control,2,0,1,1,0
"Abandon ME
Draw red line
Cower from red line
Genocide/mass migration ensue
Europe invaded
Brits #Brexit
Obama causes collapse of #EU
#Legacy",dev,48,control,3,0,0,0,0
"Abandon ME
Draw red line
Cower from red line
Genocide/mass migration ensue
Europe invaded
Brits #Brexit
Obama causes collapse of #EU
#Legacy",dev,48,target,4,1,1,1,1
"Abandon ME
Draw red line
Cower from red line
Genocide/mass migration ensue
Europe invaded
Brits #Brexit
Obama causes collapse of #EU
#Legacy",dev,48,target,5,0,0,0,0
"Abandon ME
Draw red line
Cower from red line
Genocide/mass migration ensue
Europe invaded
Brits #Brexit
Obama causes collapse of #EU
#Legacy",dev,48,target,6,0,0,1,0
Go #Brexit - Fuck Liberal Globalization and Tyranny - Fuck Immigration and Open Borders. A Win for White people and Sovereignty.,dev,49,control,1,0,1,1,1
Go #Brexit - Fuck Liberal Globalization and Tyranny - Fuck Immigration and Open Borders. A Win for White people and Sovereignty.,dev,49,control,2,0,0,0,1
Go #Brexit - Fuck Liberal Globalization and Tyranny - Fuck Immigration and Open Borders. A Win for White people and Sovereignty.,dev,49,control,3,0,0,0,0
Go #Brexit - Fuck Liberal Globalization and Tyranny - Fuck Immigration and Open Borders. A Win for White people and Sovereignty.,dev,49,target,4,0,1,0,0
Go #Brexit - Fuck Liberal Globalization and Tyranny - Fuck Immigration and Open Borders. A Win for White people and Sovereignty.,dev,49,target,5,0,0,0,0
Go #Brexit - Fuck Liberal Globalization and Tyranny - Fuck Immigration and Open Borders. A Win for White people and Sovereignty.,dev,49,target,6,1,1,0,1
Now it's time for foreign invaders to leave the UK #Brexit,dev,50,control,1,1,1,1,1
Now it's time for foreign invaders to leave the UK #Brexit,dev,50,control,2,1,0,0,1
Now it's time for foreign invaders to leave the UK #Brexit,dev,50,control,3,1,1,0,1
Now it's time for foreign invaders to leave the UK #Brexit,dev,50,target,4,1,1,1,0
Now it's time for foreign invaders to leave the UK #Brexit,dev,50,target,5,1,1,1,0
Now it's time for foreign invaders to leave the UK #Brexit,dev,50,target,6,1,1,1,1
Getting a 20% better rate by using an OTA's .UK rates and no foreign transaction fee card. Thank you #Brexit,dev,51,control,1,0,0,0,0
Getting a 20% better rate by using an OTA's .UK rates and no foreign transaction fee card. Thank you #Brexit,dev,51,control,2,0,0,0,0
Getting a 20% better rate by using an OTA's .UK rates and no foreign transaction fee card. Thank you #Brexit,dev,51,control,3,0,0,0,0
Getting a 20% better rate by using an OTA's .UK rates and no foreign transaction fee card. Thank you #Brexit,dev,51,target,4,0,0,0,0
Getting a 20% better rate by using an OTA's .UK rates and no foreign transaction fee card. Thank you #Brexit,dev,51,target,5,0,0,0,0
Getting a 20% better rate by using an OTA's .UK rates and no foreign transaction fee card. Thank you #Brexit,dev,51,target,6,0,0,0,0
"Farage refugee poster like ""Nazi propaganda"" says Liberal leader criticising #Leave campaign #EURef #Brexit <url>",dev,52,control,1,0,0,0,0
"Farage refugee poster like ""Nazi propaganda"" says Liberal leader criticising #Leave campaign #EURef #Brexit <url>",dev,52,control,2,0,0,0,0
"Farage refugee poster like ""Nazi propaganda"" says Liberal leader criticising #Leave campaign #EURef #Brexit <url>",dev,52,control,3,0,0,0,0
"Farage refugee poster like ""Nazi propaganda"" says Liberal leader criticising #Leave campaign #EURef #Brexit <url>",dev,52,target,4,0,0,0,0
"Farage refugee poster like ""Nazi propaganda"" says Liberal leader criticising #Leave campaign #EURef #Brexit <url>",dev,52,target,5,0,1,0,0
"Farage refugee poster like ""Nazi propaganda"" says Liberal leader criticising #Leave campaign #EURef #Brexit <url>",dev,52,target,6,0,0,0,0
As an 18 yo Briton the saddest thing is knowing my children will NOT have their Father blown up in the name of Islam #brexit <user>,dev,53,control,1,0,1,1,0
As an 18 yo Briton the saddest thing is knowing my children will NOT have their Father blown up in the name of Islam #brexit <user>,dev,53,control,2,0,1,1,0
As an 18 yo Briton the saddest thing is knowing my children will NOT have their Father blown up in the name of Islam #brexit <user>,dev,53,control,3,0,1,0,0
As an 18 yo Briton the saddest thing is knowing my children will NOT have their Father blown up in the name of Islam #brexit <user>,dev,53,target,4,1,1,1,1
As an 18 yo Briton the saddest thing is knowing my children will NOT have their Father blown up in the name of Islam #brexit <user>,dev,53,target,5,1,1,1,0
As an 18 yo Briton the saddest thing is knowing my children will NOT have their Father blown up in the name of Islam #brexit <user>,dev,53,target,6,1,1,1,0
At least we're rid of Bureaucracy and EU immigration though right? Economic safety isn't important is it? Or the NHS? #Brexit,dev,54,control,1,0,0,0,0
At least we're rid of Bureaucracy and EU immigration though right? Economic safety isn't important is it? Or the NHS? #Brexit,dev,54,control,2,0,0,0,0
At least we're rid of Bureaucracy and EU immigration though right? Economic safety isn't important is it? Or the NHS? #Brexit,dev,54,control,3,0,0,0,0
At least we're rid of Bureaucracy and EU immigration though right? Economic safety isn't important is it? Or the NHS? #Brexit,dev,54,target,4,0,0,0,0
At least we're rid of Bureaucracy and EU immigration though right? Economic safety isn't important is it? Or the NHS? #Brexit,dev,54,target,5,0,0,0,0
At least we're rid of Bureaucracy and EU immigration though right? Economic safety isn't important is it? Or the NHS? #Brexit,dev,54,target,6,0,0,0,0
"short-term wise, #Brexit will effect the premier league in terms of commercial and signings of foreign players which is a bad thing",dev,55,control,1,0,0,0,0
"short-term wise, #Brexit will effect the premier league in terms of commercial and signings of foreign players which is a bad thing",dev,55,control,2,0,0,0,0
"short-term wise, #Brexit will effect the premier league in terms of commercial and signings of foreign players which is a bad thing",dev,55,control,3,0,0,0,0
"short-term wise, #Brexit will effect the premier league in terms of commercial and signings of foreign players which is a bad thing",dev,55,target,4,0,0,0,0
"short-term wise, #Brexit will effect the premier league in terms of commercial and signings of foreign players which is a bad thing",dev,55,target,5,0,0,0,0
"short-term wise, #Brexit will effect the premier league in terms of commercial and signings of foreign players which is a bad thing",dev,55,target,6,0,0,0,0
#Brexit For CNN Amanpour 2 report immigration in UK won't change without mentioning that EU was intent on slapping quotas is poor journalism,dev,56,control,1,0,0,0,0
#Brexit For CNN Amanpour 2 report immigration in UK won't change without mentioning that EU was intent on slapping quotas is poor journalism,dev,56,control,2,0,0,0,0
#Brexit For CNN Amanpour 2 report immigration in UK won't change without mentioning that EU was intent on slapping quotas is poor journalism,dev,56,control,3,0,0,0,0
#Brexit For CNN Amanpour 2 report immigration in UK won't change without mentioning that EU was intent on slapping quotas is poor journalism,dev,56,target,4,0,0,0,0
#Brexit For CNN Amanpour 2 report immigration in UK won't change without mentioning that EU was intent on slapping quotas is poor journalism,dev,56,target,5,0,0,0,0
#Brexit For CNN Amanpour 2 report immigration in UK won't change without mentioning that EU was intent on slapping quotas is poor journalism,dev,56,target,6,0,0,0,0
"RT <user>: So: #Brexit. Little chance of going for EEA/ EFTA given immigration issue. If rEU insist on speedy exit, we'll be left with not…",dev,57,control,1,0,0,0,0
"RT <user>: So: #Brexit. Little chance of going for EEA/ EFTA given immigration issue. If rEU insist on speedy exit, we'll be left with not…",dev,57,control,2,0,0,0,0
"RT <user>: So: #Brexit. Little chance of going for EEA/ EFTA given immigration issue. If rEU insist on speedy exit, we'll be left with not…",dev,57,control,3,0,0,0,0
"RT <user>: So: #Brexit. Little chance of going for EEA/ EFTA given immigration issue. If rEU insist on speedy exit, we'll be left with not…",dev,57,target,4,0,0,0,0
"RT <user>: So: #Brexit. Little chance of going for EEA/ EFTA given immigration issue. If rEU insist on speedy exit, we'll be left with not…",dev,57,target,5,0,0,0,0
"RT <user>: So: #Brexit. Little chance of going for EEA/ EFTA given immigration issue. If rEU insist on speedy exit, we'll be left with not…",dev,57,target,6,0,0,0,0
"<user> Stupid tweet. #Brexit not a ""working class revolt"" Was a revolt against foreign #religious #culture undermining #democracy",dev,58,control,1,0,0,1,0
"<user> Stupid tweet. #Brexit not a ""working class revolt"" Was a revolt against foreign #religious #culture undermining #democracy",dev,58,control,2,0,0,0,0
"<user> Stupid tweet. #Brexit not a ""working class revolt"" Was a revolt against foreign #religious #culture undermining #democracy",dev,58,control,3,0,0,0,0
"<user> Stupid tweet. #Brexit not a ""working class revolt"" Was a revolt against foreign #religious #culture undermining #democracy",dev,58,target,4,0,0,0,0
"<user> Stupid tweet. #Brexit not a ""working class revolt"" Was a revolt against foreign #religious #culture undermining #democracy",dev,58,target,5,0,0,0,0
"<user> Stupid tweet. #Brexit not a ""working class revolt"" Was a revolt against foreign #religious #culture undermining #democracy",dev,58,target,6,0,0,0,0
#Brexit: punishing your own youth for generations while trying to punish Muslim refugees who are stuck in Calais. <url>,dev,59,control,1,0,0,0,0
#Brexit: punishing your own youth for generations while trying to punish Muslim refugees who are stuck in Calais. <url>,dev,59,control,2,0,0,0,0
#Brexit: punishing your own youth for generations while trying to punish Muslim refugees who are stuck in Calais. <url>,dev,59,control,3,0,0,0,0
#Brexit: punishing your own youth for generations while trying to punish Muslim refugees who are stuck in Calais. <url>,dev,59,target,4,0,0,0,0
#Brexit: punishing your own youth for generations while trying to punish Muslim refugees who are stuck in Calais. <url>,dev,59,target,5,0,0,0,0
#Brexit: punishing your own youth for generations while trying to punish Muslim refugees who are stuck in Calais. <url>,dev,59,target,6,0,0,0,0
"Croatian Foreign Minister Reacts to #Brexit <url> ""we need, we need,"" you wont get wakey wakey :)",dev,60,control,1,0,0,0,0
"Croatian Foreign Minister Reacts to #Brexit <url> ""we need, we need,"" you wont get wakey wakey :)",dev,60,control,2,0,0,0,0
"Croatian Foreign Minister Reacts to #Brexit <url> ""we need, we need,"" you wont get wakey wakey :)",dev,60,control,3,0,0,0,0
"Croatian Foreign Minister Reacts to #Brexit <url> ""we need, we need,"" you wont get wakey wakey :)",dev,60,target,4,0,0,0,0
"Croatian Foreign Minister Reacts to #Brexit <url> ""we need, we need,"" you wont get wakey wakey :)",dev,60,target,5,0,0,0,0
"Croatian Foreign Minister Reacts to #Brexit <url> ""we need, we need,"" you wont get wakey wakey :)",dev,60,target,6,0,0,0,0
"If we took ALL mention of immigration out of the leave campaign, how many would of still voted?! 🤔 #Brexit #EURefResults",dev,61,control,1,0,0,0,0
"If we took ALL mention of immigration out of the leave campaign, how many would of still voted?! 🤔 #Brexit #EURefResults",dev,61,control,2,0,0,0,0
"If we took ALL mention of immigration out of the leave campaign, how many would of still voted?! 🤔 #Brexit #EURefResults",dev,61,control,3,0,0,0,0
"If we took ALL mention of immigration out of the leave campaign, how many would of still voted?! 🤔 #Brexit #EURefResults",dev,61,target,4,0,0,0,0
"If we took ALL mention of immigration out of the leave campaign, how many would of still voted?! 🤔 #Brexit #EURefResults",dev,61,target,5,0,0,0,0
"If we took ALL mention of immigration out of the leave campaign, how many would of still voted?! 🤔 #Brexit #EURefResults",dev,61,target,6,0,0,0,0
RT <user>: I didn't think Trump could win until #Brexit. All we need is a muslim refuge killing some Americans and ISIS will decide t…,dev,62,control,1,0,0,0,0
RT <user>: I didn't think Trump could win until #Brexit. All we need is a muslim refuge killing some Americans and ISIS will decide t…,dev,62,control,2,0,0,1,0
RT <user>: I didn't think Trump could win until #Brexit. All we need is a muslim refuge killing some Americans and ISIS will decide t…,dev,62,control,3,1,0,0,0
RT <user>: I didn't think Trump could win until #Brexit. All we need is a muslim refuge killing some Americans and ISIS will decide t…,dev,62,target,4,1,1,0,1
RT <user>: I didn't think Trump could win until #Brexit. All we need is a muslim refuge killing some Americans and ISIS will decide t…,dev,62,target,5,1,1,1,1
RT <user>: I didn't think Trump could win until #Brexit. All we need is a muslim refuge killing some Americans and ISIS will decide t…,dev,62,target,6,1,1,1,0
#Brexit may be great for America. We may wake up to the consequences of idiotic isolationism and anti immigration on your economy,dev,63,control,1,0,0,0,0
#Brexit may be great for America. We may wake up to the consequences of idiotic isolationism and anti immigration on your economy,dev,63,control,2,0,0,0,0
#Brexit may be great for America. We may wake up to the consequences of idiotic isolationism and anti immigration on your economy,dev,63,control,3,0,0,0,0
#Brexit may be great for America. We may wake up to the consequences of idiotic isolationism and anti immigration on your economy,dev,63,target,4,0,0,0,0
#Brexit may be great for America. We may wake up to the consequences of idiotic isolationism and anti immigration on your economy,dev,63,target,5,0,0,0,0
#Brexit may be great for America. We may wake up to the consequences of idiotic isolationism and anti immigration on your economy,dev,63,target,6,0,0,0,0
"With all his innumerable foibles, fr expediency,sincerity or both, blair was first UK PM to throw open immigration as wide as he did #Brexit",dev,64,control,1,0,0,0,0
"With all his innumerable foibles, fr expediency,sincerity or both, blair was first UK PM to throw open immigration as wide as he did #Brexit",dev,64,control,2,0,0,0,0
"With all his innumerable foibles, fr expediency,sincerity or both, blair was first UK PM to throw open immigration as wide as he did #Brexit",dev,64,control,3,0,0,0,0
"With all his innumerable foibles, fr expediency,sincerity or both, blair was first UK PM to throw open immigration as wide as he did #Brexit",dev,64,target,4,0,0,0,0
"With all his innumerable foibles, fr expediency,sincerity or both, blair was first UK PM to throw open immigration as wide as he did #Brexit",dev,64,target,5,0,0,0,0
"With all his innumerable foibles, fr expediency,sincerity or both, blair was first UK PM to throw open immigration as wide as he did #Brexit",dev,64,target,6,0,0,0,0
"<user>: #Brexit vote was carried by anti-immigrant sentiment. London, Scotland & the young voted against it. <url>",dev,65,control,1,0,0,0,0
"<user>: #Brexit vote was carried by anti-immigrant sentiment. London, Scotland & the young voted against it. <url>",dev,65,control,2,0,0,0,0
"<user>: #Brexit vote was carried by anti-immigrant sentiment. London, Scotland & the young voted against it. <url>",dev,65,control,3,0,0,0,0
"<user>: #Brexit vote was carried by anti-immigrant sentiment. London, Scotland & the young voted against it. <url>",dev,65,target,4,0,0,1,0
"<user>: #Brexit vote was carried by anti-immigrant sentiment. London, Scotland & the young voted against it. <url>",dev,65,target,5,0,0,0,0
"<user>: #Brexit vote was carried by anti-immigrant sentiment. London, Scotland & the young voted against it. <url>",dev,65,target,6,0,0,0,0
RT <user>: German Foreign Minister: “It looks like a sad day for Europe and the United Kingdom.” – <user> #EUref #Brexit,dev,66,control,1,0,0,0,0
RT <user>: German Foreign Minister: “It looks like a sad day for Europe and the United Kingdom.” – <user> #EUref #Brexit,dev,66,control,2,0,0,0,0
RT <user>: German Foreign Minister: “It looks like a sad day for Europe and the United Kingdom.” – <user> #EUref #Brexit,dev,66,control,3,0,0,0,0
RT <user>: German Foreign Minister: “It looks like a sad day for Europe and the United Kingdom.” – <user> #EUref #Brexit,dev,66,target,4,0,0,0,0
RT <user>: German Foreign Minister: “It looks like a sad day for Europe and the United Kingdom.” – <user> #EUref #Brexit,dev,66,target,5,0,0,0,0
RT <user>: German Foreign Minister: “It looks like a sad day for Europe and the United Kingdom.” – <user> #EUref #Brexit,dev,66,target,6,0,0,0,0
"Just imagine if a western or especially a white nation treated illegals or blacks, like blacks treat blacks?
#brexit <url>",dev,67,control,1,0,0,0,0
"Just imagine if a western or especially a white nation treated illegals or blacks, like blacks treat blacks?
#brexit <url>",dev,67,control,2,0,0,0,0
"Just imagine if a western or especially a white nation treated illegals or blacks, like blacks treat blacks?
#brexit <url>",dev,67,control,3,0,0,0,0
"Just imagine if a western or especially a white nation treated illegals or blacks, like blacks treat blacks?
#brexit <url>",dev,67,target,4,1,1,0,0
"Just imagine if a western or especially a white nation treated illegals or blacks, like blacks treat blacks?
#brexit <url>",dev,67,target,5,0,0,0,0
"Just imagine if a western or especially a white nation treated illegals or blacks, like blacks treat blacks?
#brexit <url>",dev,67,target,6,1,1,1,0
In uk p**i mean Paki okay #Brexit #Britons #UKref <url>,dev,68,control,1,0,0,0,0
In uk p**i mean Paki okay #Brexit #Britons #UKref <url>,dev,68,control,2,0,0,0,0
In uk p**i mean Paki okay #Brexit #Britons #UKref <url>,dev,68,control,3,0,0,0,0
In uk p**i mean Paki okay #Brexit #Britons #UKref <url>,dev,68,target,4,0,1,0,0
In uk p**i mean Paki okay #Brexit #Britons #UKref <url>,dev,68,target,5,0,1,0,0
In uk p**i mean Paki okay #Brexit #Britons #UKref <url>,dev,68,target,6,1,1,1,1
RT <user>: #Brexit anti-immigration poster 'demonises refugees' <url> <url>,dev,69,control,1,0,0,0,0
RT <user>: #Brexit anti-immigration poster 'demonises refugees' <url> <url>,dev,69,control,2,0,0,0,0
RT <user>: #Brexit anti-immigration poster 'demonises refugees' <url> <url>,dev,69,control,3,0,0,0,0
RT <user>: #Brexit anti-immigration poster 'demonises refugees' <url> <url>,dev,69,target,4,0,0,0,0
RT <user>: #Brexit anti-immigration poster 'demonises refugees' <url> <url>,dev,69,target,5,1,1,1,1
RT <user>: #Brexit anti-immigration poster 'demonises refugees' <url> <url>,dev,69,target,6,1,1,0,1
"<user> <user>
The #Brexit win may not stop Muslim welfare immigration but it will stop the tsunami that was coming",dev,70,control,1,0,1,1,0
"<user> <user>
The #Brexit win may not stop Muslim welfare immigration but it will stop the tsunami that was coming",dev,70,control,2,0,1,1,0
"<user> <user>
The #Brexit win may not stop Muslim welfare immigration but it will stop the tsunami that was coming",dev,70,control,3,0,0,0,0
"<user> <user>
The #Brexit win may not stop Muslim welfare immigration but it will stop the tsunami that was coming",dev,70,target,4,1,1,1,1
"<user> <user>
The #Brexit win may not stop Muslim welfare immigration but it will stop the tsunami that was coming",dev,70,target,5,1,1,1,0
"<user> <user>
The #Brexit win may not stop Muslim welfare immigration but it will stop the tsunami that was coming",dev,70,target,6,1,0,1,0
<user> you can't be a hypocrite American whose Obama gives money to ISIS through Iran and complain about refugees #Brexit,dev,71,control,1,0,0,1,0
<user> you can't be a hypocrite American whose Obama gives money to ISIS through Iran and complain about refugees #Brexit,dev,71,control,2,0,0,0,0
<user> you can't be a hypocrite American whose Obama gives money to ISIS through Iran and complain about refugees #Brexit,dev,71,control,3,0,0,0,0
<user> you can't be a hypocrite American whose Obama gives money to ISIS through Iran and complain about refugees #Brexit,dev,71,target,4,0,1,0,0
<user> you can't be a hypocrite American whose Obama gives money to ISIS through Iran and complain about refugees #Brexit,dev,71,target,5,0,1,1,1
<user> you can't be a hypocrite American whose Obama gives money to ISIS through Iran and complain about refugees #Brexit,dev,71,target,6,0,0,0,0
"focus still on #Brexit-damaged 401(k)s, but if you have $ in foreign accoiunts, also note June 30 #FBAR deadline <url>",dev,72,control,1,0,0,0,0
"focus still on #Brexit-damaged 401(k)s, but if you have $ in foreign accoiunts, also note June 30 #FBAR deadline <url>",dev,72,control,2,0,0,0,0
"focus still on #Brexit-damaged 401(k)s, but if you have $ in foreign accoiunts, also note June 30 #FBAR deadline <url>",dev,72,control,3,0,0,0,0
"focus still on #Brexit-damaged 401(k)s, but if you have $ in foreign accoiunts, also note June 30 #FBAR deadline <url>",dev,72,target,4,0,0,0,0
"focus still on #Brexit-damaged 401(k)s, but if you have $ in foreign accoiunts, also note June 30 #FBAR deadline <url>",dev,72,target,5,0,0,0,0
"focus still on #Brexit-damaged 401(k)s, but if you have $ in foreign accoiunts, also note June 30 #FBAR deadline <url>",dev,72,target,6,0,0,0,0
The majority of the English football team have immigrant ancestry you stupid bastards #brexit,dev,73,control,1,0,1,0,0
The majority of the English football team have immigrant ancestry you stupid bastards #brexit,dev,73,control,2,0,0,0,0
The majority of the English football team have immigrant ancestry you stupid bastards #brexit,dev,73,control,3,0,0,0,0
The majority of the English football team have immigrant ancestry you stupid bastards #brexit,dev,73,target,4,0,1,0,0
The majority of the English football team have immigrant ancestry you stupid bastards #brexit,dev,73,target,5,0,0,0,0
The majority of the English football team have immigrant ancestry you stupid bastards #brexit,dev,73,target,6,1,1,1,1
<user> <user> YEAH BIG FAT PHONY NIGGER #BREXIT,dev,74,control,1,0,0,0,0
<user> <user> YEAH BIG FAT PHONY NIGGER #BREXIT,dev,74,control,2,0,1,0,1
<user> <user> YEAH BIG FAT PHONY NIGGER #BREXIT,dev,74,control,3,0,1,0,0
<user> <user> YEAH BIG FAT PHONY NIGGER #BREXIT,dev,74,target,4,1,1,0,1
<user> <user> YEAH BIG FAT PHONY NIGGER #BREXIT,dev,74,target,5,1,1,0,1
<user> <user> YEAH BIG FAT PHONY NIGGER #BREXIT,dev,74,target,6,1,1,0,1
Hasn't isolationalism (and anti-immigrant nationalism) preceded both World Wars? <url>,dev,75,control,1,0,0,0,0
Hasn't isolationalism (and anti-immigrant nationalism) preceded both World Wars? <url>,dev,75,control,2,0,0,0,0
Hasn't isolationalism (and anti-immigrant nationalism) preceded both World Wars? <url>,dev,75,control,3,0,0,0,0
Hasn't isolationalism (and anti-immigrant nationalism) preceded both World Wars? <url>,dev,75,target,4,0,0,0,0
Hasn't isolationalism (and anti-immigrant nationalism) preceded both World Wars? <url>,dev,75,target,5,0,0,0,0
Hasn't isolationalism (and anti-immigrant nationalism) preceded both World Wars? <url>,dev,75,target,6,0,0,0,0
at least there will be one less terrorist attack in the unforeseeable future with #BREXIT #BrexitVote $SPY $SPX $WTI $COP $AAPL $DB,dev,76,control,1,0,0,0,0
at least there will be one less terrorist attack in the unforeseeable future with #BREXIT #BrexitVote $SPY $SPX $WTI $COP $AAPL $DB,dev,76,control,2,0,0,0,0
at least there will be one less terrorist attack in the unforeseeable future with #BREXIT #BrexitVote $SPY $SPX $WTI $COP $AAPL $DB,dev,76,control,3,0,0,0,0
at least there will be one less terrorist attack in the unforeseeable future with #BREXIT #BrexitVote $SPY $SPX $WTI $COP $AAPL $DB,dev,76,target,4,0,1,1,0
at least there will be one less terrorist attack in the unforeseeable future with #BREXIT #BrexitVote $SPY $SPX $WTI $COP $AAPL $DB,dev,76,target,5,0,0,0,0
at least there will be one less terrorist attack in the unforeseeable future with #BREXIT #BrexitVote $SPY $SPX $WTI $COP $AAPL $DB,dev,76,target,6,0,1,0,0
RT <user>: Angela Merkel gives #Europe both an Immigrant crisis & a 64 million people Emigrant crisis. #Brexit <url>,dev,77,control,1,0,0,0,0
RT <user>: Angela Merkel gives #Europe both an Immigrant crisis & a 64 million people Emigrant crisis. #Brexit <url>,dev,77,control,2,0,0,0,0
RT <user>: Angela Merkel gives #Europe both an Immigrant crisis & a 64 million people Emigrant crisis. #Brexit <url>,dev,77,control,3,0,0,0,0
RT <user>: Angela Merkel gives #Europe both an Immigrant crisis & a 64 million people Emigrant crisis. #Brexit <url>,dev,77,target,4,0,1,0,0
RT <user>: Angela Merkel gives #Europe both an Immigrant crisis & a 64 million people Emigrant crisis. #Brexit <url>,dev,77,target,5,0,0,1,0
RT <user>: Angela Merkel gives #Europe both an Immigrant crisis & a 64 million people Emigrant crisis. #Brexit <url>,dev,77,target,6,0,0,0,0
<user> and this - the <user> made it easy for Putin to control the immigration pipeline - #brexit will fix it <url>,dev,78,control,1,0,0,0,0
<user> and this - the <user> made it easy for Putin to control the immigration pipeline - #brexit will fix it <url>,dev,78,control,2,0,0,0,0
<user> and this - the <user> made it easy for Putin to control the immigration pipeline - #brexit will fix it <url>,dev,78,control,3,0,0,0,0
<user> and this - the <user> made it easy for Putin to control the immigration pipeline - #brexit will fix it <url>,dev,78,target,4,0,0,0,0
<user> and this - the <user> made it easy for Putin to control the immigration pipeline - #brexit will fix it <url>,dev,78,target,5,0,0,0,0
<user> and this - the <user> made it easy for Putin to control the immigration pipeline - #brexit will fix it <url>,dev,78,target,6,0,0,0,0
"Angry, anti-immigrant Britons showed up to the UK polls in droves to vote for #Brexit. Don't underestimate Trump voters in November.",dev,79,control,1,0,0,0,0
"Angry, anti-immigrant Britons showed up to the UK polls in droves to vote for #Brexit. Don't underestimate Trump voters in November.",dev,79,control,2,0,0,0,0
"Angry, anti-immigrant Britons showed up to the UK polls in droves to vote for #Brexit. Don't underestimate Trump voters in November.",dev,79,control,3,0,0,0,0
"Angry, anti-immigrant Britons showed up to the UK polls in droves to vote for #Brexit. Don't underestimate Trump voters in November.",dev,79,target,4,0,1,0,0
"Angry, anti-immigrant Britons showed up to the UK polls in droves to vote for #Brexit. Don't underestimate Trump voters in November.",dev,79,target,5,0,0,0,0
"Angry, anti-immigrant Britons showed up to the UK polls in droves to vote for #Brexit. Don't underestimate Trump voters in November.",dev,79,target,6,0,0,0,0
Watching BBC News piece on racism Post-#brexit. Interviewing people in Leeds - why do anti-immigration types come across as thick f#*kwitz?,dev,80,control,1,0,0,0,0
Watching BBC News piece on racism Post-#brexit. Interviewing people in Leeds - why do anti-immigration types come across as thick f#*kwitz?,dev,80,control,2,0,0,0,0
Watching BBC News piece on racism Post-#brexit. Interviewing people in Leeds - why do anti-immigration types come across as thick f#*kwitz?,dev,80,control,3,0,0,0,0
Watching BBC News piece on racism Post-#brexit. Interviewing people in Leeds - why do anti-immigration types come across as thick f#*kwitz?,dev,80,target,4,0,0,0,0
Watching BBC News piece on racism Post-#brexit. Interviewing people in Leeds - why do anti-immigration types come across as thick f#*kwitz?,dev,80,target,5,0,0,0,0
Watching BBC News piece on racism Post-#brexit. Interviewing people in Leeds - why do anti-immigration types come across as thick f#*kwitz?,dev,80,target,6,0,0,0,0
As predicted.. EUref #Brexit vote which was primarily based on anti-immigration sentiment emboldens racists. #racism <url>,dev,81,control,1,0,0,0,0
As predicted.. EUref #Brexit vote which was primarily based on anti-immigration sentiment emboldens racists. #racism <url>,dev,81,control,2,0,0,0,0
As predicted.. EUref #Brexit vote which was primarily based on anti-immigration sentiment emboldens racists. #racism <url>,dev,81,control,3,0,0,0,0
As predicted.. EUref #Brexit vote which was primarily based on anti-immigration sentiment emboldens racists. #racism <url>,dev,81,target,4,0,0,0,0
As predicted.. EUref #Brexit vote which was primarily based on anti-immigration sentiment emboldens racists. #racism <url>,dev,81,target,5,0,0,0,0
As predicted.. EUref #Brexit vote which was primarily based on anti-immigration sentiment emboldens racists. #racism <url>,dev,81,target,6,0,0,0,0
"<user> As a Muslim , I welcome #Brexit",dev,82,control,1,0,0,0,0
"<user> As a Muslim , I welcome #Brexit",dev,82,control,2,0,0,0,0
"<user> As a Muslim , I welcome #Brexit",dev,82,control,3,0,0,0,0
"<user> As a Muslim , I welcome #Brexit",dev,82,target,4,0,0,0,0
"<user> As a Muslim , I welcome #Brexit",dev,82,target,5,0,0,1,0
"<user> As a Muslim , I welcome #Brexit",dev,82,target,6,0,0,0,0
"<user> The true Brits have spoken! UK out of EU, and Islam out of the UK! <user> #Brexit",dev,83,control,1,1,0,0,1
"<user> The true Brits have spoken! UK out of EU, and Islam out of the UK! <user> #Brexit",dev,83,control,2,0,0,0,0
"<user> The true Brits have spoken! UK out of EU, and Islam out of the UK! <user> #Brexit",dev,83,control,3,1,0,0,0
"<user> The true Brits have spoken! UK out of EU, and Islam out of the UK! <user> #Brexit",dev,83,target,4,1,1,0,1
"<user> The true Brits have spoken! UK out of EU, and Islam out of the UK! <user> #Brexit",dev,83,target,5,1,1,1,1
"<user> The true Brits have spoken! UK out of EU, and Islam out of the UK! <user> #Brexit",dev,83,target,6,0,0,0,0
#Brexit let's now deport these Scum <user> <user> <user> <user> <user> <user> <url>,dev,84,control,1,1,1,0,1
#Brexit let's now deport these Scum <user> <user> <user> <user> <user> <user> <url>,dev,84,control,2,1,1,0,0
#Brexit let's now deport these Scum <user> <user> <user> <user> <user> <user> <url>,dev,84,control,3,1,1,1,1
#Brexit let's now deport these Scum <user> <user> <user> <user> <user> <user> <url>,dev,84,target,4,0,1,0,1
#Brexit let's now deport these Scum <user> <user> <user> <user> <user> <user> <url>,dev,84,target,5,0,0,0,0
#Brexit let's now deport these Scum <user> <user> <user> <user> <user> <user> <url>,dev,84,target,6,1,1,0,1
"He wants his country back and ""hes langwich"" them foreigners can't force us to use grammar or spelling... <url>",dev,85,control,1,0,0,0,0
"He wants his country back and ""hes langwich"" them foreigners can't force us to use grammar or spelling... <url>",dev,85,control,2,0,0,0,0
"He wants his country back and ""hes langwich"" them foreigners can't force us to use grammar or spelling... <url>",dev,85,control,3,0,0,0,0
"He wants his country back and ""hes langwich"" them foreigners can't force us to use grammar or spelling... <url>",dev,85,target,4,0,0,0,0
"He wants his country back and ""hes langwich"" them foreigners can't force us to use grammar or spelling... <url>",dev,85,target,5,0,0,0,0
"He wants his country back and ""hes langwich"" them foreigners can't force us to use grammar or spelling... <url>",dev,85,target,6,0,0,0,0
#Brexit #Germany won't stop importing refugees <url>,dev,86,control,1,0,0,0,0
#Brexit #Germany won't stop importing refugees <url>,dev,86,control,2,0,0,0,0
#Brexit #Germany won't stop importing refugees <url>,dev,86,control,3,0,0,0,0
#Brexit #Germany won't stop importing refugees <url>,dev,86,target,4,1,1,0,0
#Brexit #Germany won't stop importing refugees <url>,dev,86,target,5,0,0,0,0
#Brexit #Germany won't stop importing refugees <url>,dev,86,target,6,0,0,1,0
Nigel Farage's anti-immigration poster splits #Brexit camps #EUReferendum #Europe <url>,dev,87,control,1,0,0,0,0
Nigel Farage's anti-immigration poster splits #Brexit camps #EUReferendum #Europe <url>,dev,87,control,2,0,0,0,0
Nigel Farage's anti-immigration poster splits #Brexit camps #EUReferendum #Europe <url>,dev,87,control,3,0,0,0,0
Nigel Farage's anti-immigration poster splits #Brexit camps #EUReferendum #Europe <url>,dev,87,target,4,0,1,0,0
Nigel Farage's anti-immigration poster splits #Brexit camps #EUReferendum #Europe <url>,dev,87,target,5,0,0,0,0
Nigel Farage's anti-immigration poster splits #Brexit camps #EUReferendum #Europe <url>,dev,87,target,6,0,0,0,0
"<user> Fred Barnes says Radical Islam is a problem yet he wants us to import millions of them. #cuckservative
#Brexit #Trump #ccot",dev,88,control,1,0,1,1,0
"<user> Fred Barnes says Radical Islam is a problem yet he wants us to import millions of them. #cuckservative
#Brexit #Trump #ccot",dev,88,control,2,0,1,0,0
"<user> Fred Barnes says Radical Islam is a problem yet he wants us to import millions of them. #cuckservative
#Brexit #Trump #ccot",dev,88,control,3,0,1,0,0
"<user> Fred Barnes says Radical Islam is a problem yet he wants us to import millions of them. #cuckservative
#Brexit #Trump #ccot",dev,88,target,4,1,1,1,1
"<user> Fred Barnes says Radical Islam is a problem yet he wants us to import millions of them. #cuckservative
#Brexit #Trump #ccot",dev,88,target,5,1,1,1,1
"<user> Fred Barnes says Radical Islam is a problem yet he wants us to import millions of them. #cuckservative
#Brexit #Trump #ccot",dev,88,target,6,1,1,1,0
<user> <user> irony of this racism by England fans IN europe wanting to stay IN euros drinking foreign beer.... Lost #brexit,dev,89,control,1,0,0,0,0
<user> <user> irony of this racism by England fans IN europe wanting to stay IN euros drinking foreign beer.... Lost #brexit,dev,89,control,2,0,0,0,0
<user> <user> irony of this racism by England fans IN europe wanting to stay IN euros drinking foreign beer.... Lost #brexit,dev,89,control,3,0,0,0,0
<user> <user> irony of this racism by England fans IN europe wanting to stay IN euros drinking foreign beer.... Lost #brexit,dev,89,target,4,0,0,0,0
<user> <user> irony of this racism by England fans IN europe wanting to stay IN euros drinking foreign beer.... Lost #brexit,dev,89,target,5,0,1,0,1
<user> <user> irony of this racism by England fans IN europe wanting to stay IN euros drinking foreign beer.... Lost #brexit,dev,89,target,6,0,0,0,0
Follow our reporters <user> & <user> for coverage of the EU foreign ministers meeting in Berlin.What comes after #Brexit? #EUref,dev,90,control,1,0,0,0,0
Follow our reporters <user> & <user> for coverage of the EU foreign ministers meeting in Berlin.What comes after #Brexit? #EUref,dev,90,control,2,0,0,0,0
Follow our reporters <user> & <user> for coverage of the EU foreign ministers meeting in Berlin.What comes after #Brexit? #EUref,dev,90,control,3,0,0,0,0
Follow our reporters <user> & <user> for coverage of the EU foreign ministers meeting in Berlin.What comes after #Brexit? #EUref,dev,90,target,4,0,0,0,0
Follow our reporters <user> & <user> for coverage of the EU foreign ministers meeting in Berlin.What comes after #Brexit? #EUref,dev,90,target,5,0,0,0,0
Follow our reporters <user> & <user> for coverage of the EU foreign ministers meeting in Berlin.What comes after #Brexit? #EUref,dev,90,target,6,0,0,0,0
What is the correlation between #brexit and #banIslam ? If #Brexit dealing with nationality and Islam is a religion <url>,dev,91,control,1,0,0,0,0
What is the correlation between #brexit and #banIslam ? If #Brexit dealing with nationality and Islam is a religion <url>,dev,91,control,2,0,0,0,0
What is the correlation between #brexit and #banIslam ? If #Brexit dealing with nationality and Islam is a religion <url>,dev,91,control,3,0,0,0,0
What is the correlation between #brexit and #banIslam ? If #Brexit dealing with nationality and Islam is a religion <url>,dev,91,target,4,0,0,0,0
What is the correlation between #brexit and #banIslam ? If #Brexit dealing with nationality and Islam is a religion <url>,dev,91,target,5,0,0,0,0
What is the correlation between #brexit and #banIslam ? If #Brexit dealing with nationality and Islam is a religion <url>,dev,91,target,6,0,0,0,0
"<user> not even a year for each crime? What the very fuck. Just deport him... Oh wait, we can't #brexit",dev,92,control,1,0,0,0,0
"<user> not even a year for each crime? What the very fuck. Just deport him... Oh wait, we can't #brexit",dev,92,control,2,0,0,0,0
"<user> not even a year for each crime? What the very fuck. Just deport him... Oh wait, we can't #brexit",dev,92,control,3,1,0,0,1
"<user> not even a year for each crime? What the very fuck. Just deport him... Oh wait, we can't #brexit",dev,92,target,4,1,1,0,1
"<user> not even a year for each crime? What the very fuck. Just deport him... Oh wait, we can't #brexit",dev,92,target,5,1,1,0,1
"<user> not even a year for each crime? What the very fuck. Just deport him... Oh wait, we can't #brexit",dev,92,target,6,0,1,0,0
You Scottish punks better start packing and apply for refugee status in France. #brexit,dev,93,control,1,0,1,0,0
You Scottish punks better start packing and apply for refugee status in France. #brexit,dev,93,control,2,0,0,0,1
You Scottish punks better start packing and apply for refugee status in France. #brexit,dev,93,control,3,0,0,0,0
You Scottish punks better start packing and apply for refugee status in France. #brexit,dev,93,target,4,1,1,0,0
You Scottish punks better start packing and apply for refugee status in France. #brexit,dev,93,target,5,0,0,0,0
You Scottish punks better start packing and apply for refugee status in France. #brexit,dev,93,target,6,1,1,0,1
<user> <user> The reason why Brits voted for #Brexit is immigration after the terrorist attack in Paris & Brussels.,dev,94,control,1,0,0,0,0
<user> <user> The reason why Brits voted for #Brexit is immigration after the terrorist attack in Paris & Brussels.,dev,94,control,2,0,0,0,0
<user> <user> The reason why Brits voted for #Brexit is immigration after the terrorist attack in Paris & Brussels.,dev,94,control,3,0,0,0,0
<user> <user> The reason why Brits voted for #Brexit is immigration after the terrorist attack in Paris & Brussels.,dev,94,target,4,0,0,1,0
<user> <user> The reason why Brits voted for #Brexit is immigration after the terrorist attack in Paris & Brussels.,dev,94,target,5,0,0,0,0
<user> <user> The reason why Brits voted for #Brexit is immigration after the terrorist attack in Paris & Brussels.,dev,94,target,6,0,0,0,0
I'm assuming all the refugees at Calais have gone home now after #brexit?,dev,95,control,1,0,0,0,0
I'm assuming all the refugees at Calais have gone home now after #brexit?,dev,95,control,2,0,0,0,0
I'm assuming all the refugees at Calais have gone home now after #brexit?,dev,95,control,3,0,0,0,0
I'm assuming all the refugees at Calais have gone home now after #brexit?,dev,95,target,4,0,0,0,0
I'm assuming all the refugees at Calais have gone home now after #brexit?,dev,95,target,5,0,0,0,0
I'm assuming all the refugees at Calais have gone home now after #brexit?,dev,95,target,6,0,0,0,0
"<user> fascinating to hear US views on #Brexit vote, rightly point to immigration & open borders, plus key facts from <user>",dev,96,control,1,0,0,0,0
"<user> fascinating to hear US views on #Brexit vote, rightly point to immigration & open borders, plus key facts from <user>",dev,96,control,2,0,0,0,0
"<user> fascinating to hear US views on #Brexit vote, rightly point to immigration & open borders, plus key facts from <user>",dev,96,control,3,0,0,0,0
"<user> fascinating to hear US views on #Brexit vote, rightly point to immigration & open borders, plus key facts from <user>",dev,96,target,4,0,0,0,0
"<user> fascinating to hear US views on #Brexit vote, rightly point to immigration & open borders, plus key facts from <user>",dev,96,target,5,0,0,0,0
"<user> fascinating to hear US views on #Brexit vote, rightly point to immigration & open borders, plus key facts from <user>",dev,96,target,6,0,0,0,0
You really think there wouldn't be a refugee crisis had the West military intervened in Syria? <url>,dev,97,control,1,0,0,0,0
You really think there wouldn't be a refugee crisis had the West military intervened in Syria? <url>,dev,97,control,2,0,0,0,0
You really think there wouldn't be a refugee crisis had the West military intervened in Syria? <url>,dev,97,control,3,0,0,0,0
You really think there wouldn't be a refugee crisis had the West military intervened in Syria? <url>,dev,97,target,4,0,0,0,0
You really think there wouldn't be a refugee crisis had the West military intervened in Syria? <url>,dev,97,target,5,0,0,0,0
You really think there wouldn't be a refugee crisis had the West military intervened in Syria? <url>,dev,97,target,6,0,0,0,0
"<user> Congratulations, Dy Mayor! Immigrant business leaders show why we need to be open, #Brexit the wrong choice for Britain",dev,98,control,1,0,0,0,0
"<user> Congratulations, Dy Mayor! Immigrant business leaders show why we need to be open, #Brexit the wrong choice for Britain",dev,98,control,2,0,0,0,0
"<user> Congratulations, Dy Mayor! Immigrant business leaders show why we need to be open, #Brexit the wrong choice for Britain",dev,98,control,3,0,0,0,0
"<user> Congratulations, Dy Mayor! Immigrant business leaders show why we need to be open, #Brexit the wrong choice for Britain",dev,98,target,4,0,0,0,0
"<user> Congratulations, Dy Mayor! Immigrant business leaders show why we need to be open, #Brexit the wrong choice for Britain",dev,98,target,5,0,0,0,0
"<user> Congratulations, Dy Mayor! Immigrant business leaders show why we need to be open, #Brexit the wrong choice for Britain",dev,98,target,6,0,0,0,0
"UK stop invasion of Muslim terrorist refugees. Deport Muslims in UK. UK is Western CIVILIZATION, not UNCIVIL Islam. <url>",dev,99,control,1,1,1,1,1
"UK stop invasion of Muslim terrorist refugees. Deport Muslims in UK. UK is Western CIVILIZATION, not UNCIVIL Islam. <url>",dev,99,control,2,1,1,1,1
"UK stop invasion of Muslim terrorist refugees. Deport Muslims in UK. UK is Western CIVILIZATION, not UNCIVIL Islam. <url>",dev,99,control,3,1,1,0,1
"UK stop invasion of Muslim terrorist refugees. Deport Muslims in UK. UK is Western CIVILIZATION, not UNCIVIL Islam. <url>",dev,99,target,4,1,1,1,1
"UK stop invasion of Muslim terrorist refugees. Deport Muslims in UK. UK is Western CIVILIZATION, not UNCIVIL Islam. <url>",dev,99,target,5,1,1,1,1
"UK stop invasion of Muslim terrorist refugees. Deport Muslims in UK. UK is Western CIVILIZATION, not UNCIVIL Islam. <url>",dev,99,target,6,1,1,1,0
RT <user>: We can control migration *and* have free trade inside EFTA: <url> #Brexit #EFTA #euref #lexit <url>,dev,100,control,1,0,0,0,0
RT <user>: We can control migration *and* have free trade inside EFTA: <url> #Brexit #EFTA #euref #lexit <url>,dev,100,control,2,0,0,0,0
RT <user>: We can control migration *and* have free trade inside EFTA: <url> #Brexit #EFTA #euref #lexit <url>,dev,100,control,3,0,0,0,0
RT <user>: We can control migration *and* have free trade inside EFTA: <url> #Brexit #EFTA #euref #lexit <url>,dev,100,target,4,0,0,0,0
RT <user>: We can control migration *and* have free trade inside EFTA: <url> #Brexit #EFTA #euref #lexit <url>,dev,100,target,5,0,0,0,0
RT <user>: We can control migration *and* have free trade inside EFTA: <url> #Brexit #EFTA #euref #lexit <url>,dev,100,target,6,0,0,0,0
RT <user>: time for Saudi Arabia to start taking Muslim #refugees #RefugeeWeek #Brexit,dev,101,control,1,0,0,0,0
RT <user>: time for Saudi Arabia to start taking Muslim #refugees #RefugeeWeek #Brexit,dev,101,control,2,0,0,0,0
RT <user>: time for Saudi Arabia to start taking Muslim #refugees #RefugeeWeek #Brexit,dev,101,control,3,0,0,0,0
RT <user>: time for Saudi Arabia to start taking Muslim #refugees #RefugeeWeek #Brexit,dev,101,target,4,0,0,0,0
RT <user>: time for Saudi Arabia to start taking Muslim #refugees #RefugeeWeek #Brexit,dev,101,target,5,0,0,0,0
RT <user>: time for Saudi Arabia to start taking Muslim #refugees #RefugeeWeek #Brexit,dev,101,target,6,0,0,0,0
"Friday = #UK takeaway night
So #Brexiteer's what international flavour are you having tonight from your immigrant based takeaway
#Brexit",dev,102,control,1,0,0,0,0
"Friday = #UK takeaway night
So #Brexiteer's what international flavour are you having tonight from your immigrant based takeaway
#Brexit",dev,102,control,2,0,0,0,0
"Friday = #UK takeaway night
So #Brexiteer's what international flavour are you having tonight from your immigrant based takeaway
#Brexit",dev,102,control,3,0,0,0,0
"Friday = #UK takeaway night
So #Brexiteer's what international flavour are you having tonight from your immigrant based takeaway
#Brexit",dev,102,target,4,0,0,0,0
"Friday = #UK takeaway night
So #Brexiteer's what international flavour are you having tonight from your immigrant based takeaway
#Brexit",dev,102,target,5,0,0,0,0
"Friday = #UK takeaway night
So #Brexiteer's what international flavour are you having tonight from your immigrant based takeaway
#Brexit",dev,102,target,6,0,0,0,0
Crowded London Muslim Shop Fire-Bombed As Post-#Brexit Hatred Rages Out Of… <url> #news #nieuws <url>,dev,103,control,1,0,0,0,0
Crowded London Muslim Shop Fire-Bombed As Post-#Brexit Hatred Rages Out Of… <url> #news #nieuws <url>,dev,103,control,2,0,0,0,0
Crowded London Muslim Shop Fire-Bombed As Post-#Brexit Hatred Rages Out Of… <url> #news #nieuws <url>,dev,103,control,3,0,0,0,0
Crowded London Muslim Shop Fire-Bombed As Post-#Brexit Hatred Rages Out Of… <url> #news #nieuws <url>,dev,103,target,4,0,0,0,0
Crowded London Muslim Shop Fire-Bombed As Post-#Brexit Hatred Rages Out Of… <url> #news #nieuws <url>,dev,103,target,5,1,1,0,1
Crowded London Muslim Shop Fire-Bombed As Post-#Brexit Hatred Rages Out Of… <url> #news #nieuws <url>,dev,103,target,6,0,1,0,1
A few more Muslim voters would have tipped the scales in favor of RMN. Brits are SO LUCKY they did the #Brexit now. <url>,dev,104,control,1,0,0,1,0
A few more Muslim voters would have tipped the scales in favor of RMN. Brits are SO LUCKY they did the #Brexit now. <url>,dev,104,control,2,0,0,0,0
A few more Muslim voters would have tipped the scales in favor of RMN. Brits are SO LUCKY they did the #Brexit now. <url>,dev,104,control,3,0,0,0,0
A few more Muslim voters would have tipped the scales in favor of RMN. Brits are SO LUCKY they did the #Brexit now. <url>,dev,104,target,4,1,1,1,0
A few more Muslim voters would have tipped the scales in favor of RMN. Brits are SO LUCKY they did the #Brexit now. <url>,dev,104,target,5,0,0,0,0
A few more Muslim voters would have tipped the scales in favor of RMN. Brits are SO LUCKY they did the #Brexit now. <url>,dev,104,target,6,0,0,1,0
What the referendum seems to have meant to alarming numbers: a vote for anyone looking foreign to leave immediately😡 <url>,dev,105,control,1,0,0,0,0
What the referendum seems to have meant to alarming numbers: a vote for anyone looking foreign to leave immediately😡 <url>,dev,105,control,2,0,0,0,0
What the referendum seems to have meant to alarming numbers: a vote for anyone looking foreign to leave immediately😡 <url>,dev,105,control,3,0,0,0,0
What the referendum seems to have meant to alarming numbers: a vote for anyone looking foreign to leave immediately😡 <url>,dev,105,target,4,0,1,1,0
What the referendum seems to have meant to alarming numbers: a vote for anyone looking foreign to leave immediately😡 <url>,dev,105,target,5,0,0,0,0
What the referendum seems to have meant to alarming numbers: a vote for anyone looking foreign to leave immediately😡 <url>,dev,105,target,6,0,0,1,0
"It is a simplification to say that immigration is the only quandary Uk has with EU. Bailouts,NHS ,sovereignty <url>",dev,106,control,1,0,0,0,0
"It is a simplification to say that immigration is the only quandary Uk has with EU. Bailouts,NHS ,sovereignty <url>",dev,106,control,2,0,0,0,0
"It is a simplification to say that immigration is the only quandary Uk has with EU. Bailouts,NHS ,sovereignty <url>",dev,106,control,3,0,0,0,0
"It is a simplification to say that immigration is the only quandary Uk has with EU. Bailouts,NHS ,sovereignty <url>",dev,106,target,4,0,0,0,0
"It is a simplification to say that immigration is the only quandary Uk has with EU. Bailouts,NHS ,sovereignty <url>",dev,106,target,5,0,0,0,0
"It is a simplification to say that immigration is the only quandary Uk has with EU. Bailouts,NHS ,sovereignty <url>",dev,106,target,6,0,0,0,0
RT <user>: The driver behind this was the massive Muslim migration! People felt the country could or would not protect them! <url>,dev,107,control,1,0,0,1,0
RT <user>: The driver behind this was the massive Muslim migration! People felt the country could or would not protect them! <url>,dev,107,control,2,0,0,0,0
RT <user>: The driver behind this was the massive Muslim migration! People felt the country could or would not protect them! <url>,dev,107,control,3,0,0,0,0
RT <user>: The driver behind this was the massive Muslim migration! People felt the country could or would not protect them! <url>,dev,107,target,4,1,1,1,1
RT <user>: The driver behind this was the massive Muslim migration! People felt the country could or would not protect them! <url>,dev,107,target,5,1,1,1,0
RT <user>: The driver behind this was the massive Muslim migration! People felt the country could or would not protect them! <url>,dev,107,target,6,1,1,1,0
Shame on the UK on voting to leave the EU. The pound will continue to drop and immigration will diminish. Should have remained. #Brexit,dev,108,control,1,0,0,0,0
Shame on the UK on voting to leave the EU. The pound will continue to drop and immigration will diminish. Should have remained. #Brexit,dev,108,control,2,0,0,0,0
Shame on the UK on voting to leave the EU. The pound will continue to drop and immigration will diminish. Should have remained. #Brexit,dev,108,control,3,0,0,0,0
Shame on the UK on voting to leave the EU. The pound will continue to drop and immigration will diminish. Should have remained. #Brexit,dev,108,target,4,0,1,0,0
Shame on the UK on voting to leave the EU. The pound will continue to drop and immigration will diminish. Should have remained. #Brexit,dev,108,target,5,0,0,0,0
Shame on the UK on voting to leave the EU. The pound will continue to drop and immigration will diminish. Should have remained. #Brexit,dev,108,target,6,0,1,0,0
"#NSBlog | Stories on #Brexit, Foreign Policy, Shark Conservation & #NationalAboriginalDay: <url> <url>",dev,109,control,1,0,0,0,0
"#NSBlog | Stories on #Brexit, Foreign Policy, Shark Conservation & #NationalAboriginalDay: <url> <url>",dev,109,control,2,0,0,0,0
"#NSBlog | Stories on #Brexit, Foreign Policy, Shark Conservation & #NationalAboriginalDay: <url> <url>",dev,109,control,3,0,0,0,0
"#NSBlog | Stories on #Brexit, Foreign Policy, Shark Conservation & #NationalAboriginalDay: <url> <url>",dev,109,target,4,0,0,0,0
"#NSBlog | Stories on #Brexit, Foreign Policy, Shark Conservation & #NationalAboriginalDay: <url> <url>",dev,109,target,5,0,0,0,0
"#NSBlog | Stories on #Brexit, Foreign Policy, Shark Conservation & #NationalAboriginalDay: <url> <url>",dev,109,target,6,0,0,0,0
"I've never understood how limiting EU immigration in favour of ""high-skilled, Commonwealth"" immigrants won't lead to more backlash. #Brexit",dev,110,control,1,0,0,0,0
"I've never understood how limiting EU immigration in favour of ""high-skilled, Commonwealth"" immigrants won't lead to more backlash. #Brexit",dev,110,control,2,0,0,0,0
"I've never understood how limiting EU immigration in favour of ""high-skilled, Commonwealth"" immigrants won't lead to more backlash. #Brexit",dev,110,control,3,0,0,0,0
"I've never understood how limiting EU immigration in favour of ""high-skilled, Commonwealth"" immigrants won't lead to more backlash. #Brexit",dev,110,target,4,0,0,0,0
"I've never understood how limiting EU immigration in favour of ""high-skilled, Commonwealth"" immigrants won't lead to more backlash. #Brexit",dev,110,target,5,0,0,0,0
"I've never understood how limiting EU immigration in favour of ""high-skilled, Commonwealth"" immigrants won't lead to more backlash. #Brexit",dev,110,target,6,0,0,0,0
Wonder if #BorisPfeffel has revised his foreign policy modelling since leading #Brexit ? <url>,dev,111,control,1,0,0,0,0
Wonder if #BorisPfeffel has revised his foreign policy modelling since leading #Brexit ? <url>,dev,111,control,2,0,0,0,0
Wonder if #BorisPfeffel has revised his foreign policy modelling since leading #Brexit ? <url>,dev,111,control,3,0,0,0,0
Wonder if #BorisPfeffel has revised his foreign policy modelling since leading #Brexit ? <url>,dev,111,target,4,0,0,0,0
Wonder if #BorisPfeffel has revised his foreign policy modelling since leading #Brexit ? <url>,dev,111,target,5,0,0,0,0
Wonder if #BorisPfeffel has revised his foreign policy modelling since leading #Brexit ? <url>,dev,111,target,6,0,0,0,0
"What does #Brexit hold for #Nigeria? Read; 'Of Brexit, the New Foreign Exchange Policy, Tax and You' by <user> <url>",dev,112,control,1,0,0,0,0
"What does #Brexit hold for #Nigeria? Read; 'Of Brexit, the New Foreign Exchange Policy, Tax and You' by <user> <url>",dev,112,control,2,0,0,0,0
"What does #Brexit hold for #Nigeria? Read; 'Of Brexit, the New Foreign Exchange Policy, Tax and You' by <user> <url>",dev,112,control,3,0,0,0,0
"What does #Brexit hold for #Nigeria? Read; 'Of Brexit, the New Foreign Exchange Policy, Tax and You' by <user> <url>",dev,112,target,4,0,0,0,0
"What does #Brexit hold for #Nigeria? Read; 'Of Brexit, the New Foreign Exchange Policy, Tax and You' by <user> <url>",dev,112,target,5,0,0,0,0
"What does #Brexit hold for #Nigeria? Read; 'Of Brexit, the New Foreign Exchange Policy, Tax and You' by <user> <url>",dev,112,target,6,0,0,0,0
Interesting analysis - What does #Brexit mean for refugees via <user> <url>,dev,113,control,1,0,0,0,0
Interesting analysis - What does #Brexit mean for refugees via <user> <url>,dev,113,control,2,0,0,0,0
Interesting analysis - What does #Brexit mean for refugees via <user> <url>,dev,113,control,3,0,0,0,0
Interesting analysis - What does #Brexit mean for refugees via <user> <url>,dev,113,target,4,0,0,0,0
Interesting analysis - What does #Brexit mean for refugees via <user> <url>,dev,113,target,5,0,0,0,0
Interesting analysis - What does #Brexit mean for refugees via <user> <url>,dev,113,target,6,0,0,0,0
"<user> <user> it's not #Brexit, it's individuals, Just like Jihad isn't ALL Muslims, it's a minority of Leave voters.",dev,114,control,1,0,0,0,0
"<user> <user> it's not #Brexit, it's individuals, Just like Jihad isn't ALL Muslims, it's a minority of Leave voters.",dev,114,control,2,0,0,0,0
"<user> <user> it's not #Brexit, it's individuals, Just like Jihad isn't ALL Muslims, it's a minority of Leave voters.",dev,114,control,3,0,0,0,0
"<user> <user> it's not #Brexit, it's individuals, Just like Jihad isn't ALL Muslims, it's a minority of Leave voters.",dev,114,target,4,0,0,0,0
"<user> <user> it's not #Brexit, it's individuals, Just like Jihad isn't ALL Muslims, it's a minority of Leave voters.",dev,114,target,5,0,0,0,0
"<user> <user> it's not #Brexit, it's individuals, Just like Jihad isn't ALL Muslims, it's a minority of Leave voters.",dev,114,target,6,0,0,0,0
Just nipped to the local corner shop and the nice Muslim man who runs it is still there?! #Brexit #donttellfarage #itdidntwork #ivotedin,dev,115,control,1,0,0,0,0
Just nipped to the local corner shop and the nice Muslim man who runs it is still there?! #Brexit #donttellfarage #itdidntwork #ivotedin,dev,115,control,2,0,0,0,0
Just nipped to the local corner shop and the nice Muslim man who runs it is still there?! #Brexit #donttellfarage #itdidntwork #ivotedin,dev,115,control,3,0,0,0,0
Just nipped to the local corner shop and the nice Muslim man who runs it is still there?! #Brexit #donttellfarage #itdidntwork #ivotedin,dev,115,target,4,0,0,0,0
Just nipped to the local corner shop and the nice Muslim man who runs it is still there?! #Brexit #donttellfarage #itdidntwork #ivotedin,dev,115,target,5,0,0,0,0
Just nipped to the local corner shop and the nice Muslim man who runs it is still there?! #Brexit #donttellfarage #itdidntwork #ivotedin,dev,115,target,6,0,0,0,0
The #Brexit vote is what the British people want. Who are we as Americans to dictate to a foreign people what they want?,dev,116,control,1,0,0,0,0
The #Brexit vote is what the British people want. Who are we as Americans to dictate to a foreign people what they want?,dev,116,control,2,0,0,0,0
The #Brexit vote is what the British people want. Who are we as Americans to dictate to a foreign people what they want?,dev,116,control,3,0,0,0,0
The #Brexit vote is what the British people want. Who are we as Americans to dictate to a foreign people what they want?,dev,116,target,4,0,0,0,0
The #Brexit vote is what the British people want. Who are we as Americans to dictate to a foreign people what they want?,dev,116,target,5,0,0,0,0
The #Brexit vote is what the British people want. Who are we as Americans to dictate to a foreign people what they want?,dev,116,target,6,0,0,0,0
"I know I've got no right to accuse, but at least America's foreign relations choices don't sound like shitty candy bars. #brexit",dev,117,control,1,0,0,0,0
"I know I've got no right to accuse, but at least America's foreign relations choices don't sound like shitty candy bars. #brexit",dev,117,control,2,0,0,0,0
"I know I've got no right to accuse, but at least America's foreign relations choices don't sound like shitty candy bars. #brexit",dev,117,control,3,0,0,0,0
"I know I've got no right to accuse, but at least America's foreign relations choices don't sound like shitty candy bars. #brexit",dev,117,target,4,0,0,0,0
"I know I've got no right to accuse, but at least America's foreign relations choices don't sound like shitty candy bars. #brexit",dev,117,target,5,0,0,0,0
"I know I've got no right to accuse, but at least America's foreign relations choices don't sound like shitty candy bars. #brexit",dev,117,target,6,0,0,0,0
"<user> <user> Oh yes I am sure you will apply that, The EU won't let you. How many illegals are here already too many #Brexit",dev,118,control,1,0,0,1,1
"<user> <user> Oh yes I am sure you will apply that, The EU won't let you. How many illegals are here already too many #Brexit",dev,118,control,2,0,1,1,1
"<user> <user> Oh yes I am sure you will apply that, The EU won't let you. How many illegals are here already too many #Brexit",dev,118,control,3,0,0,0,0
"<user> <user> Oh yes I am sure you will apply that, The EU won't let you. How many illegals are here already too many #Brexit",dev,118,target,4,1,1,0,0
"<user> <user> Oh yes I am sure you will apply that, The EU won't let you. How many illegals are here already too many #Brexit",dev,118,target,5,1,1,1,0
"<user> <user> Oh yes I am sure you will apply that, The EU won't let you. How many illegals are here already too many #Brexit",dev,118,target,6,0,0,1,0
"<user> #Marr #MarrShow
#Brexit allows us to deport Muslim child-rapist gangs:
<url> <url>",dev,119,control,1,0,0,1,1
"<user> #Marr #MarrShow
#Brexit allows us to deport Muslim child-rapist gangs:
<url> <url>",dev,119,control,2,1,1,1,0
"<user> #Marr #MarrShow
#Brexit allows us to deport Muslim child-rapist gangs:
<url> <url>",dev,119,control,3,1,1,1,1
"<user> #Marr #MarrShow
#Brexit allows us to deport Muslim child-rapist gangs:
<url> <url>",dev,119,target,4,1,1,1,1
"<user> #Marr #MarrShow
#Brexit allows us to deport Muslim child-rapist gangs:
<url> <url>",dev,119,target,5,1,1,1,1
"<user> #Marr #MarrShow
#Brexit allows us to deport Muslim child-rapist gangs:
<url> <url>",dev,119,target,6,1,1,1,0
"<user> Precisely, control of immigration important, but sovereignty and democracy was what swung it for me and most of #Brexit voters!",dev,120,control,1,0,0,0,0
"<user> Precisely, control of immigration important, but sovereignty and democracy was what swung it for me and most of #Brexit voters!",dev,120,control,2,0,0,0,0
"<user> Precisely, control of immigration important, but sovereignty and democracy was what swung it for me and most of #Brexit voters!",dev,120,control,3,0,0,0,0
"<user> Precisely, control of immigration important, but sovereignty and democracy was what swung it for me and most of #Brexit voters!",dev,120,target,4,0,0,0,0
"<user> Precisely, control of immigration important, but sovereignty and democracy was what swung it for me and most of #Brexit voters!",dev,120,target,5,0,0,0,0
"<user> Precisely, control of immigration important, but sovereignty and democracy was what swung it for me and most of #Brexit voters!",dev,120,target,6,0,0,0,0
"Antiglobalisation and anti-immigration sentiment highlights classic case of the ""seen versus the unseen""... #Brexit",dev,121,control,1,0,0,0,0
"Antiglobalisation and anti-immigration sentiment highlights classic case of the ""seen versus the unseen""... #Brexit",dev,121,control,2,0,0,0,0
"Antiglobalisation and anti-immigration sentiment highlights classic case of the ""seen versus the unseen""... #Brexit",dev,121,control,3,0,0,0,0
"Antiglobalisation and anti-immigration sentiment highlights classic case of the ""seen versus the unseen""... #Brexit",dev,121,target,4,0,0,0,0
"Antiglobalisation and anti-immigration sentiment highlights classic case of the ""seen versus the unseen""... #Brexit",dev,121,target,5,0,0,0,0
"Antiglobalisation and anti-immigration sentiment highlights classic case of the ""seen versus the unseen""... #Brexit",dev,121,target,6,0,0,0,0
Spanish fascist attacks foreign girl on train. <url> vía <user> #Brexit #racism #Spexit,dev,122,control,1,0,0,0,0
Spanish fascist attacks foreign girl on train. <url> vía <user> #Brexit #racism #Spexit,dev,122,control,2,0,0,0,0
Spanish fascist attacks foreign girl on train. <url> vía <user> #Brexit #racism #Spexit,dev,122,control,3,0,0,0,0
Spanish fascist attacks foreign girl on train. <url> vía <user> #Brexit #racism #Spexit,dev,122,target,4,0,1,0,1
Spanish fascist attacks foreign girl on train. <url> vía <user> #Brexit #racism #Spexit,dev,122,target,5,0,1,0,1
Spanish fascist attacks foreign girl on train. <url> vía <user> #Brexit #racism #Spexit,dev,122,target,6,0,1,1,0
I would kill to be trading forex and foreign futures right now. This action is crazy. #Brexit,dev,123,control,1,0,0,0,0
I would kill to be trading forex and foreign futures right now. This action is crazy. #Brexit,dev,123,control,2,0,0,0,0
I would kill to be trading forex and foreign futures right now. This action is crazy. #Brexit,dev,123,control,3,0,0,0,0
I would kill to be trading forex and foreign futures right now. This action is crazy. #Brexit,dev,123,target,4,0,0,0,0
I would kill to be trading forex and foreign futures right now. This action is crazy. #Brexit,dev,123,target,5,0,0,0,0
I would kill to be trading forex and foreign futures right now. This action is crazy. #Brexit,dev,123,target,6,0,0,0,0
German Foreign Ministry tweet reminds us the continent is in safe hands. #brexit <user> <url>,dev,124,control,1,0,0,0,0
German Foreign Ministry tweet reminds us the continent is in safe hands. #brexit <user> <url>,dev,124,control,2,0,0,0,0
German Foreign Ministry tweet reminds us the continent is in safe hands. #brexit <user> <url>,dev,124,control,3,0,0,0,0
German Foreign Ministry tweet reminds us the continent is in safe hands. #brexit <user> <url>,dev,124,target,4,0,0,0,0
German Foreign Ministry tweet reminds us the continent is in safe hands. #brexit <user> <url>,dev,124,target,5,0,0,0,0
German Foreign Ministry tweet reminds us the continent is in safe hands. #brexit <user> <url>,dev,124,target,6,0,0,0,0
"Brexit could mean VISA-FREE migration between Australia, UK, Canada and NZ <url>
Whoopeedo #freemovement #Brexit",dev,125,control,1,0,0,0,0
"Brexit could mean VISA-FREE migration between Australia, UK, Canada and NZ <url>
Whoopeedo #freemovement #Brexit",dev,125,control,2,0,0,0,0
"Brexit could mean VISA-FREE migration between Australia, UK, Canada and NZ <url>
Whoopeedo #freemovement #Brexit",dev,125,control,3,0,0,0,0
"Brexit could mean VISA-FREE migration between Australia, UK, Canada and NZ <url>
Whoopeedo #freemovement #Brexit",dev,125,target,4,0,0,0,0
"Brexit could mean VISA-FREE migration between Australia, UK, Canada and NZ <url>
Whoopeedo #freemovement #Brexit",dev,125,target,5,0,0,0,0
"Brexit could mean VISA-FREE migration between Australia, UK, Canada and NZ <url>
Whoopeedo #freemovement #Brexit",dev,125,target,6,0,0,0,0
Loved seeing this weasel take it in the ass. We need to deport this asshole soon. <url>,dev,126,control,1,0,1,0,1
Loved seeing this weasel take it in the ass. We need to deport this asshole soon. <url>,dev,126,control,2,1,0,1,0
Loved seeing this weasel take it in the ass. We need to deport this asshole soon. <url>,dev,126,control,3,0,0,0,0
Loved seeing this weasel take it in the ass. We need to deport this asshole soon. <url>,dev,126,target,4,1,1,0,1
Loved seeing this weasel take it in the ass. We need to deport this asshole soon. <url>,dev,126,target,5,1,1,0,1
Loved seeing this weasel take it in the ass. We need to deport this asshole soon. <url>,dev,126,target,6,1,1,0,1
Looking at #Brexit coverage. #USA should watch how #Britain has spoken about bad immigration & economic policy. Its our turn come November!,dev,127,control,1,0,0,0,0
Looking at #Brexit coverage. #USA should watch how #Britain has spoken about bad immigration & economic policy. Its our turn come November!,dev,127,control,2,0,0,0,0
Looking at #Brexit coverage. #USA should watch how #Britain has spoken about bad immigration & economic policy. Its our turn come November!,dev,127,control,3,0,0,0,0
Looking at #Brexit coverage. #USA should watch how #Britain has spoken about bad immigration & economic policy. Its our turn come November!,dev,127,target,4,0,0,0,0
Looking at #Brexit coverage. #USA should watch how #Britain has spoken about bad immigration & economic policy. Its our turn come November!,dev,127,target,5,0,0,0,0
Looking at #Brexit coverage. #USA should watch how #Britain has spoken about bad immigration & economic policy. Its our turn come November!,dev,127,target,6,0,0,0,0
"""Can't exit #EU & retain privileges"".""Access to EU open market will include 'free movement of people"".#Brexit ending immigration was a sham.",dev,128,control,1,0,0,0,0
"""Can't exit #EU & retain privileges"".""Access to EU open market will include 'free movement of people"".#Brexit ending immigration was a sham.",dev,128,control,2,0,0,0,0
"""Can't exit #EU & retain privileges"".""Access to EU open market will include 'free movement of people"".#Brexit ending immigration was a sham.",dev,128,control,3,0,0,0,0
"""Can't exit #EU & retain privileges"".""Access to EU open market will include 'free movement of people"".#Brexit ending immigration was a sham.",dev,128,target,4,0,0,0,0
"""Can't exit #EU & retain privileges"".""Access to EU open market will include 'free movement of people"".#Brexit ending immigration was a sham.",dev,128,target,5,0,0,0,0
"""Can't exit #EU & retain privileges"".""Access to EU open market will include 'free movement of people"".#Brexit ending immigration was a sham.",dev,128,target,6,0,0,0,0
"<user>
our allies that can allow their courts void, or prevented to deport criminals #Brexit",dev,129,control,1,0,0,0,0
"<user>
our allies that can allow their courts void, or prevented to deport criminals #Brexit",dev,129,control,2,0,0,0,0
"<user>
our allies that can allow their courts void, or prevented to deport criminals #Brexit",dev,129,control,3,0,0,0,0
"<user>
our allies that can allow their courts void, or prevented to deport criminals #Brexit",dev,129,target,4,1,1,0,0
"<user>
our allies that can allow their courts void, or prevented to deport criminals #Brexit",dev,129,target,5,1,1,1,0
"<user>
our allies that can allow their courts void, or prevented to deport criminals #Brexit",dev,129,target,6,0,0,1,0
"British Airways are staying in the UK, FTSE & Sterling are rising, foreign trade deals are in progress. #Brexit <url>",dev,130,control,1,0,0,0,0
"British Airways are staying in the UK, FTSE & Sterling are rising, foreign trade deals are in progress. #Brexit <url>",dev,130,control,2,0,0,0,0
"British Airways are staying in the UK, FTSE & Sterling are rising, foreign trade deals are in progress. #Brexit <url>",dev,130,control,3,0,0,0,0
"British Airways are staying in the UK, FTSE & Sterling are rising, foreign trade deals are in progress. #Brexit <url>",dev,130,target,4,0,0,0,0
"British Airways are staying in the UK, FTSE & Sterling are rising, foreign trade deals are in progress. #Brexit <url>",dev,130,target,5,0,0,0,0
"British Airways are staying in the UK, FTSE & Sterling are rising, foreign trade deals are in progress. #Brexit <url>",dev,130,target,6,0,0,0,0
Taxi driver yg Muslim kat London..sila mogok ..#Brexit,dev,131,control,1,0,0,0,0
Taxi driver yg Muslim kat London..sila mogok ..#Brexit,dev,131,control,2,0,0,0,0
Taxi driver yg Muslim kat London..sila mogok ..#Brexit,dev,131,control,3,0,0,0,0
Taxi driver yg Muslim kat London..sila mogok ..#Brexit,dev,131,target,4,0,0,0,0
Taxi driver yg Muslim kat London..sila mogok ..#Brexit,dev,131,target,5,0,0,0,0
Taxi driver yg Muslim kat London..sila mogok ..#Brexit,dev,131,target,6,1,1,0,0
Controversial idea: The reaction to #Brexit #EURef resembles a reaction to a terrorist attack. Do we really understand its implications?,dev,132,control,1,0,0,0,0
Controversial idea: The reaction to #Brexit #EURef resembles a reaction to a terrorist attack. Do we really understand its implications?,dev,132,control,2,0,0,0,0
Controversial idea: The reaction to #Brexit #EURef resembles a reaction to a terrorist attack. Do we really understand its implications?,dev,132,control,3,0,0,0,0
Controversial idea: The reaction to #Brexit #EURef resembles a reaction to a terrorist attack. Do we really understand its implications?,dev,132,target,4,0,0,0,0
Controversial idea: The reaction to #Brexit #EURef resembles a reaction to a terrorist attack. Do we really understand its implications?,dev,132,target,5,0,0,0,0
Controversial idea: The reaction to #Brexit #EURef resembles a reaction to a terrorist attack. Do we really understand its implications?,dev,132,target,6,0,0,0,0
#DEPORT Illegals Support r #VETS Taxpayer $ for #AmericaFirst #HillarysAmerica is destruction #VoteTrump & #MAGA <url>,dev,133,control,1,1,0,1,1
#DEPORT Illegals Support r #VETS Taxpayer $ for #AmericaFirst #HillarysAmerica is destruction #VoteTrump & #MAGA <url>,dev,133,control,2,1,0,0,1
#DEPORT Illegals Support r #VETS Taxpayer $ for #AmericaFirst #HillarysAmerica is destruction #VoteTrump & #MAGA <url>,dev,133,control,3,1,0,0,1
#DEPORT Illegals Support r #VETS Taxpayer $ for #AmericaFirst #HillarysAmerica is destruction #VoteTrump & #MAGA <url>,dev,133,target,4,1,1,0,1
#DEPORT Illegals Support r #VETS Taxpayer $ for #AmericaFirst #HillarysAmerica is destruction #VoteTrump & #MAGA <url>,dev,133,target,5,1,1,0,0
#DEPORT Illegals Support r #VETS Taxpayer $ for #AmericaFirst #HillarysAmerica is destruction #VoteTrump & #MAGA <url>,dev,133,target,6,0,0,0,0
I didn't realize that IS respects sovereignty laws of a nation...#Brexit does nothing to solve guerrilla terrorism <url>,dev,134,control,1,0,0,0,0
I didn't realize that IS respects sovereignty laws of a nation...#Brexit does nothing to solve guerrilla terrorism <url>,dev,134,control,2,0,0,0,0
I didn't realize that IS respects sovereignty laws of a nation...#Brexit does nothing to solve guerrilla terrorism <url>,dev,134,control,3,0,0,0,0
I didn't realize that IS respects sovereignty laws of a nation...#Brexit does nothing to solve guerrilla terrorism <url>,dev,134,target,4,0,0,0,0
I didn't realize that IS respects sovereignty laws of a nation...#Brexit does nothing to solve guerrilla terrorism <url>,dev,134,target,5,0,1,0,0
I didn't realize that IS respects sovereignty laws of a nation...#Brexit does nothing to solve guerrilla terrorism <url>,dev,134,target,6,0,0,0,0
Have UK conservatives started blaming the #Brexit recession on immigrants and refugees yet?,dev,135,control,1,0,0,0,0
Have UK conservatives started blaming the #Brexit recession on immigrants and refugees yet?,dev,135,control,2,0,0,0,0
Have UK conservatives started blaming the #Brexit recession on immigrants and refugees yet?,dev,135,control,3,0,0,0,0
Have UK conservatives started blaming the #Brexit recession on immigrants and refugees yet?,dev,135,target,4,0,0,0,0
Have UK conservatives started blaming the #Brexit recession on immigrants and refugees yet?,dev,135,target,5,0,0,0,0
Have UK conservatives started blaming the #Brexit recession on immigrants and refugees yet?,dev,135,target,6,0,0,0,0
We the unintellectual populists are taking back the reins. The dusk is nigh for traitor leftist tyrants & Muslim apologists. #brexit #auspol,dev,136,control,1,0,0,1,1
We the unintellectual populists are taking back the reins. The dusk is nigh for traitor leftist tyrants & Muslim apologists. #brexit #auspol,dev,136,control,2,0,0,0,0
We the unintellectual populists are taking back the reins. The dusk is nigh for traitor leftist tyrants & Muslim apologists. #brexit #auspol,dev,136,control,3,0,0,0,0
We the unintellectual populists are taking back the reins. The dusk is nigh for traitor leftist tyrants & Muslim apologists. #brexit #auspol,dev,136,target,4,1,1,0,0
We the unintellectual populists are taking back the reins. The dusk is nigh for traitor leftist tyrants & Muslim apologists. #brexit #auspol,dev,136,target,5,1,1,1,1
We the unintellectual populists are taking back the reins. The dusk is nigh for traitor leftist tyrants & Muslim apologists. #brexit #auspol,dev,136,target,6,0,0,0,0
<user> <user> <user> <user> <user> No jihadi loving immigration from Obama or Killary!! <url>,dev,137,control,1,0,0,1,0
<user> <user> <user> <user> <user> No jihadi loving immigration from Obama or Killary!! <url>,dev,137,control,2,0,1,1,0
<user> <user> <user> <user> <user> No jihadi loving immigration from Obama or Killary!! <url>,dev,137,control,3,0,1,0,1
<user> <user> <user> <user> <user> No jihadi loving immigration from Obama or Killary!! <url>,dev,137,target,4,1,1,1,1
<user> <user> <user> <user> <user> No jihadi loving immigration from Obama or Killary!! <url>,dev,137,target,5,1,1,1,1
<user> <user> <user> <user> <user> No jihadi loving immigration from Obama or Killary!! <url>,dev,137,target,6,0,0,0,0
"Hey <user> how many refugees did you take in to your home?
#Brexit #Labour #UKIP #Conservatives #Corbyn <url>",dev,138,control,1,0,0,1,1
"Hey <user> how many refugees did you take in to your home?
#Brexit #Labour #UKIP #Conservatives #Corbyn <url>",dev,138,control,2,0,0,0,0
"Hey <user> how many refugees did you take in to your home?
#Brexit #Labour #UKIP #Conservatives #Corbyn <url>",dev,138,control,3,0,0,0,1
"Hey <user> how many refugees did you take in to your home?
#Brexit #Labour #UKIP #Conservatives #Corbyn <url>",dev,138,target,4,1,1,0,0
"Hey <user> how many refugees did you take in to your home?
#Brexit #Labour #UKIP #Conservatives #Corbyn <url>",dev,138,target,5,1,0,0,0
"Hey <user> how many refugees did you take in to your home?
#Brexit #Labour #UKIP #Conservatives #Corbyn <url>",dev,138,target,6,0,1,1,0
Canada welcomes all refugees including those fleeing #Brexit /uk-eu-brexit-vote-move-to-canada-1.3651308,dev,139,control,1,0,0,0,0
Canada welcomes all refugees including those fleeing #Brexit /uk-eu-brexit-vote-move-to-canada-1.3651308,dev,139,control,2,0,0,0,0
Canada welcomes all refugees including those fleeing #Brexit /uk-eu-brexit-vote-move-to-canada-1.3651308,dev,139,control,3,0,0,0,0
Canada welcomes all refugees including those fleeing #Brexit /uk-eu-brexit-vote-move-to-canada-1.3651308,dev,139,target,4,0,0,0,0
Canada welcomes all refugees including those fleeing #Brexit /uk-eu-brexit-vote-move-to-canada-1.3651308,dev,139,target,5,0,0,0,0
Canada welcomes all refugees including those fleeing #Brexit /uk-eu-brexit-vote-move-to-canada-1.3651308,dev,139,target,6,0,0,0,0
"Howard says #Brexit ""not a rejection of immigration"" but public support for immigration based on tight controls. #ausvotes",dev,140,control,1,0,0,0,0
"Howard says #Brexit ""not a rejection of immigration"" but public support for immigration based on tight controls. #ausvotes",dev,140,control,2,0,0,0,0
"Howard says #Brexit ""not a rejection of immigration"" but public support for immigration based on tight controls. #ausvotes",dev,140,control,3,0,0,0,0
"Howard says #Brexit ""not a rejection of immigration"" but public support for immigration based on tight controls. #ausvotes",dev,140,target,4,0,0,0,0
"Howard says #Brexit ""not a rejection of immigration"" but public support for immigration based on tight controls. #ausvotes",dev,140,target,5,0,0,0,0
"Howard says #Brexit ""not a rejection of immigration"" but public support for immigration based on tight controls. #ausvotes",dev,140,target,6,0,0,0,0
"#British tourist video #Calais police clashing with #Merkel's muslim invaders
<url>
It's what Merkel wants for #UK #BRexit",dev,141,control,1,0,1,1,1
"#British tourist video #Calais police clashing with #Merkel's muslim invaders
<url>
It's what Merkel wants for #UK #BRexit",dev,141,control,2,0,1,1,0
"#British tourist video #Calais police clashing with #Merkel's muslim invaders
<url>
It's what Merkel wants for #UK #BRexit",dev,141,control,3,0,1,0,0
"#British tourist video #Calais police clashing with #Merkel's muslim invaders
<url>
It's what Merkel wants for #UK #BRexit",dev,141,target,4,1,1,1,1
"#British tourist video #Calais police clashing with #Merkel's muslim invaders
<url>
It's what Merkel wants for #UK #BRexit",dev,141,target,5,1,1,1,1
"#British tourist video #Calais police clashing with #Merkel's muslim invaders
<url>
It's what Merkel wants for #UK #BRexit",dev,141,target,6,1,1,1,0
so Jhunt's plan is to whip up anti-immigrant sentiment in other EU states so it's ruined for the rest of us too? <user> #brexit,dev,142,control,1,0,0,0,0
so Jhunt's plan is to whip up anti-immigrant sentiment in other EU states so it's ruined for the rest of us too? <user> #brexit,dev,142,control,2,0,0,0,0
so Jhunt's plan is to whip up anti-immigrant sentiment in other EU states so it's ruined for the rest of us too? <user> #brexit,dev,142,control,3,0,0,0,0
so Jhunt's plan is to whip up anti-immigrant sentiment in other EU states so it's ruined for the rest of us too? <user> #brexit,dev,142,target,4,0,0,0,0
so Jhunt's plan is to whip up anti-immigrant sentiment in other EU states so it's ruined for the rest of us too? <user> #brexit,dev,142,target,5,0,0,0,0
so Jhunt's plan is to whip up anti-immigrant sentiment in other EU states so it's ruined for the rest of us too? <user> #brexit,dev,142,target,6,0,0,0,0
EU foreign ministers to London: We won't wait until October to begin #Brexit negotiations <url> <url>,dev,143,control,1,0,0,0,0
EU foreign ministers to London: We won't wait until October to begin #Brexit negotiations <url> <url>,dev,143,control,2,0,0,0,0
EU foreign ministers to London: We won't wait until October to begin #Brexit negotiations <url> <url>,dev,143,control,3,0,0,0,0
EU foreign ministers to London: We won't wait until October to begin #Brexit negotiations <url> <url>,dev,143,target,4,0,0,0,0
EU foreign ministers to London: We won't wait until October to begin #Brexit negotiations <url> <url>,dev,143,target,5,0,0,0,0
EU foreign ministers to London: We won't wait until October to begin #Brexit negotiations <url> <url>,dev,143,target,6,0,0,0,0
"Had the Bush Admin. not invaded Iraq and Afghanistan, ISIS may not have existed, refugee migration not happened and nor #Brexit happened.",dev,144,control,1,0,0,0,0
"Had the Bush Admin. not invaded Iraq and Afghanistan, ISIS may not have existed, refugee migration not happened and nor #Brexit happened.",dev,144,control,2,0,0,0,0
"Had the Bush Admin. not invaded Iraq and Afghanistan, ISIS may not have existed, refugee migration not happened and nor #Brexit happened.",dev,144,control,3,0,0,0,0
"Had the Bush Admin. not invaded Iraq and Afghanistan, ISIS may not have existed, refugee migration not happened and nor #Brexit happened.",dev,144,target,4,0,0,0,0
"Had the Bush Admin. not invaded Iraq and Afghanistan, ISIS may not have existed, refugee migration not happened and nor #Brexit happened.",dev,144,target,5,0,0,0,0
"Had the Bush Admin. not invaded Iraq and Afghanistan, ISIS may not have existed, refugee migration not happened and nor #Brexit happened.",dev,144,target,6,0,0,0,0
#AnNur - this is the type of message every Muslim and non Muslim must see bout Islam <user> <user> <url>,dev,145,control,1,0,0,0,0
#AnNur - this is the type of message every Muslim and non Muslim must see bout Islam <user> <user> <url>,dev,145,control,2,0,0,0,0
#AnNur - this is the type of message every Muslim and non Muslim must see bout Islam <user> <user> <url>,dev,145,control,3,0,0,0,0
#AnNur - this is the type of message every Muslim and non Muslim must see bout Islam <user> <user> <url>,dev,145,target,4,0,0,0,0
#AnNur - this is the type of message every Muslim and non Muslim must see bout Islam <user> <user> <url>,dev,145,target,5,0,0,0,0
#AnNur - this is the type of message every Muslim and non Muslim must see bout Islam <user> <user> <url>,dev,145,target,6,0,0,0,0
"TIME FOR INTERNMENT
Nazis were aligned with Islam
pimply kids need history lessons
#Brexit #sacramento #Trump <url>",dev,146,control,1,0,0,0,0
"TIME FOR INTERNMENT
Nazis were aligned with Islam
pimply kids need history lessons
#Brexit #sacramento #Trump <url>",dev,146,control,2,1,0,0,1
"TIME FOR INTERNMENT
Nazis were aligned with Islam
pimply kids need history lessons
#Brexit #sacramento #Trump <url>",dev,146,control,3,0,0,0,0
"TIME FOR INTERNMENT
Nazis were aligned with Islam
pimply kids need history lessons
#Brexit #sacramento #Trump <url>",dev,146,target,4,1,1,1,1
"TIME FOR INTERNMENT
Nazis were aligned with Islam
pimply kids need history lessons
#Brexit #sacramento #Trump <url>",dev,146,target,5,0,0,0,0
"TIME FOR INTERNMENT
Nazis were aligned with Islam
pimply kids need history lessons
#Brexit #sacramento #Trump <url>",dev,146,target,6,0,1,0,0
EU migrant strike following Brexit <url> #Scottish #Brexit #EURefResults #NicolaSturgeon #SaveEU #saveeurope,dev,147,control,1,0,0,0,0
EU migrant strike following Brexit <url> #Scottish #Brexit #EURefResults #NicolaSturgeon #SaveEU #saveeurope,dev,147,control,2,0,0,0,0
EU migrant strike following Brexit <url> #Scottish #Brexit #EURefResults #NicolaSturgeon #SaveEU #saveeurope,dev,147,control,3,0,0,0,0
EU migrant strike following Brexit <url> #Scottish #Brexit #EURefResults #NicolaSturgeon #SaveEU #saveeurope,dev,147,target,4,0,0,0,0
EU migrant strike following Brexit <url> #Scottish #Brexit #EURefResults #NicolaSturgeon #SaveEU #saveeurope,dev,147,target,5,0,0,0,0
EU migrant strike following Brexit <url> #Scottish #Brexit #EURefResults #NicolaSturgeon #SaveEU #saveeurope,dev,147,target,6,0,0,0,0
Radical Islam (redundant) supported Remain <url>,dev,148,control,1,0,1,1,0
Radical Islam (redundant) supported Remain <url>,dev,148,control,2,0,1,1,0
Radical Islam (redundant) supported Remain <url>,dev,148,control,3,0,0,0,0
Radical Islam (redundant) supported Remain <url>,dev,148,target,4,1,1,0,1
Radical Islam (redundant) supported Remain <url>,dev,148,target,5,1,1,1,1
Radical Islam (redundant) supported Remain <url>,dev,148,target,6,1,0,0,0
"BREAKING: #Nato chief says #UK staying in the #EU is key to fighting terrorism
<url> #UKtoStay #EUref #Brexit #StrongerIN",dev,149,control,1,0,0,0,0
"BREAKING: #Nato chief says #UK staying in the #EU is key to fighting terrorism
<url> #UKtoStay #EUref #Brexit #StrongerIN",dev,149,control,2,0,0,0,0
"BREAKING: #Nato chief says #UK staying in the #EU is key to fighting terrorism
<url> #UKtoStay #EUref #Brexit #StrongerIN",dev,149,control,3,0,0,0,0
"BREAKING: #Nato chief says #UK staying in the #EU is key to fighting terrorism
<url> #UKtoStay #EUref #Brexit #StrongerIN",dev,149,target,4,0,0,0,0
"BREAKING: #Nato chief says #UK staying in the #EU is key to fighting terrorism
<url> #UKtoStay #EUref #Brexit #StrongerIN",dev,149,target,5,0,0,0,0
"BREAKING: #Nato chief says #UK staying in the #EU is key to fighting terrorism
<url> #UKtoStay #EUref #Brexit #StrongerIN",dev,149,target,6,0,0,0,0
"RT <user>: #BREXIT: We will have to develop immigration policy, staying in single market means free movement - <user> (Labo…",dev,150,control,1,0,0,0,0
"RT <user>: #BREXIT: We will have to develop immigration policy, staying in single market means free movement - <user> (Labo…",dev,150,control,2,0,0,0,0
"RT <user>: #BREXIT: We will have to develop immigration policy, staying in single market means free movement - <user> (Labo…",dev,150,control,3,0,0,0,0
"RT <user>: #BREXIT: We will have to develop immigration policy, staying in single market means free movement - <user> (Labo…",dev,150,target,4,0,0,0,0
"RT <user>: #BREXIT: We will have to develop immigration policy, staying in single market means free movement - <user> (Labo…",dev,150,target,5,0,0,0,0
"RT <user>: #BREXIT: We will have to develop immigration policy, staying in single market means free movement - <user> (Labo…",dev,150,target,6,0,0,0,0
Wondering if JK Rowling allows just anyone onto her Estate. Why doesn't she open it to Muslim refugees? #Brexit,dev,151,control,1,0,0,1,0
Wondering if JK Rowling allows just anyone onto her Estate. Why doesn't she open it to Muslim refugees? #Brexit,dev,151,control,2,0,0,0,0
Wondering if JK Rowling allows just anyone onto her Estate. Why doesn't she open it to Muslim refugees? #Brexit,dev,151,control,3,0,0,0,0
Wondering if JK Rowling allows just anyone onto her Estate. Why doesn't she open it to Muslim refugees? #Brexit,dev,151,target,4,0,1,0,0
Wondering if JK Rowling allows just anyone onto her Estate. Why doesn't she open it to Muslim refugees? #Brexit,dev,151,target,5,0,1,0,0
Wondering if JK Rowling allows just anyone onto her Estate. Why doesn't she open it to Muslim refugees? #Brexit,dev,151,target,6,0,0,0,0
Out of fear. They think Refugees in Europe will enter in England At some point <url>,dev,152,control,1,0,0,0,0
Out of fear. They think Refugees in Europe will enter in England At some point <url>,dev,152,control,2,0,0,0,0
Out of fear. They think Refugees in Europe will enter in England At some point <url>,dev,152,control,3,0,0,0,0
Out of fear. They think Refugees in Europe will enter in England At some point <url>,dev,152,target,4,0,0,0,0
Out of fear. They think Refugees in Europe will enter in England At some point <url>,dev,152,target,5,0,0,0,0
Out of fear. They think Refugees in Europe will enter in England At some point <url>,dev,152,target,6,0,0,0,0
#Brexit means end of #UK immigration checks in #Calais. And also all the illegals who reach to UK can not be returned to #EU.,dev,153,control,1,0,0,0,0
#Brexit means end of #UK immigration checks in #Calais. And also all the illegals who reach to UK can not be returned to #EU.,dev,153,control,2,0,0,0,0
#Brexit means end of #UK immigration checks in #Calais. And also all the illegals who reach to UK can not be returned to #EU.,dev,153,control,3,0,0,0,0
#Brexit means end of #UK immigration checks in #Calais. And also all the illegals who reach to UK can not be returned to #EU.,dev,153,target,4,1,1,0,0
#Brexit means end of #UK immigration checks in #Calais. And also all the illegals who reach to UK can not be returned to #EU.,dev,153,target,5,1,1,0,0
#Brexit means end of #UK immigration checks in #Calais. And also all the illegals who reach to UK can not be returned to #EU.,dev,153,target,6,1,1,1,0
".<user> Thats unpossible. You don't have an unaccountable foreign body with a 2,000 pg constitution regulating eggs. #Brexit",dev,154,control,1,0,0,0,0
".<user> Thats unpossible. You don't have an unaccountable foreign body with a 2,000 pg constitution regulating eggs. #Brexit",dev,154,control,2,0,0,0,0
".<user> Thats unpossible. You don't have an unaccountable foreign body with a 2,000 pg constitution regulating eggs. #Brexit",dev,154,control,3,0,0,0,0
".<user> Thats unpossible. You don't have an unaccountable foreign body with a 2,000 pg constitution regulating eggs. #Brexit",dev,154,target,4,0,0,0,0
".<user> Thats unpossible. You don't have an unaccountable foreign body with a 2,000 pg constitution regulating eggs. #Brexit",dev,154,target,5,0,0,0,0
".<user> Thats unpossible. You don't have an unaccountable foreign body with a 2,000 pg constitution regulating eggs. #Brexit",dev,154,target,6,0,0,1,0
So... no real changes to immigration likely under #Brexit BUT you might find it harder getting a job <url>,dev,155,control,1,0,0,0,0
So... no real changes to immigration likely under #Brexit BUT you might find it harder getting a job <url>,dev,155,control,2,0,0,0,0
So... no real changes to immigration likely under #Brexit BUT you might find it harder getting a job <url>,dev,155,control,3,0,0,0,0
So... no real changes to immigration likely under #Brexit BUT you might find it harder getting a job <url>,dev,155,target,4,0,0,1,0
So... no real changes to immigration likely under #Brexit BUT you might find it harder getting a job <url>,dev,155,target,5,0,0,0,0
So... no real changes to immigration likely under #Brexit BUT you might find it harder getting a job <url>,dev,155,target,6,0,0,0,0
For me #Brexit is a victory only from an immigration stand point. When you consider the demographic of the voters in Favour of #Brexit.,dev,156,control,1,0,0,0,0
For me #Brexit is a victory only from an immigration stand point. When you consider the demographic of the voters in Favour of #Brexit.,dev,156,control,2,0,0,0,0
For me #Brexit is a victory only from an immigration stand point. When you consider the demographic of the voters in Favour of #Brexit.,dev,156,control,3,0,0,0,0
For me #Brexit is a victory only from an immigration stand point. When you consider the demographic of the voters in Favour of #Brexit.,dev,156,target,4,0,0,0,0
For me #Brexit is a victory only from an immigration stand point. When you consider the demographic of the voters in Favour of #Brexit.,dev,156,target,5,0,0,0,0
For me #Brexit is a victory only from an immigration stand point. When you consider the demographic of the voters in Favour of #Brexit.,dev,156,target,6,0,0,1,0
The London Muslim #Remain vote may decide #EUref #Brexit <url>,dev,157,control,1,0,0,0,0
The London Muslim #Remain vote may decide #EUref #Brexit <url>,dev,157,control,2,0,0,0,0
The London Muslim #Remain vote may decide #EUref #Brexit <url>,dev,157,control,3,0,0,0,0
The London Muslim #Remain vote may decide #EUref #Brexit <url>,dev,157,target,4,0,0,0,0
The London Muslim #Remain vote may decide #EUref #Brexit <url>,dev,157,target,5,0,0,0,0
The London Muslim #Remain vote may decide #EUref #Brexit <url>,dev,157,target,6,0,0,0,0
"<user> #brexit sad truth is anyone voting #voteremain, that isnt a migrant or being paid off, is stupid. Voting 2 give right away.",dev,158,control,1,0,0,0,0
"<user> #brexit sad truth is anyone voting #voteremain, that isnt a migrant or being paid off, is stupid. Voting 2 give right away.",dev,158,control,2,0,0,0,0
"<user> #brexit sad truth is anyone voting #voteremain, that isnt a migrant or being paid off, is stupid. Voting 2 give right away.",dev,158,control,3,0,0,0,0
"<user> #brexit sad truth is anyone voting #voteremain, that isnt a migrant or being paid off, is stupid. Voting 2 give right away.",dev,158,target,4,0,1,0,0
"<user> #brexit sad truth is anyone voting #voteremain, that isnt a migrant or being paid off, is stupid. Voting 2 give right away.",dev,158,target,5,1,1,0,0
"<user> #brexit sad truth is anyone voting #voteremain, that isnt a migrant or being paid off, is stupid. Voting 2 give right away.",dev,158,target,6,0,0,0,0
What the global elitists won't tell you is that there's no such thing as a moderate #Muslim they ALL support terrorism #Brexit,dev,159,control,1,0,1,1,0
What the global elitists won't tell you is that there's no such thing as a moderate #Muslim they ALL support terrorism #Brexit,dev,159,control,2,0,1,1,1
What the global elitists won't tell you is that there's no such thing as a moderate #Muslim they ALL support terrorism #Brexit,dev,159,control,3,0,1,1,0
What the global elitists won't tell you is that there's no such thing as a moderate #Muslim they ALL support terrorism #Brexit,dev,159,target,4,1,1,1,1
What the global elitists won't tell you is that there's no such thing as a moderate #Muslim they ALL support terrorism #Brexit,dev,159,target,5,1,1,1,1
What the global elitists won't tell you is that there's no such thing as a moderate #Muslim they ALL support terrorism #Brexit,dev,159,target,6,1,1,1,0
Unfortunately this has just become anti immigration vs pro immigration vote #Brexit #VoteRemain #Bremain #VoteLeave #EUreferendum,dev,160,control,1,0,0,0,0
Unfortunately this has just become anti immigration vs pro immigration vote #Brexit #VoteRemain #Bremain #VoteLeave #EUreferendum,dev,160,control,2,0,0,0,0
Unfortunately this has just become anti immigration vs pro immigration vote #Brexit #VoteRemain #Bremain #VoteLeave #EUreferendum,dev,160,control,3,0,0,0,0
Unfortunately this has just become anti immigration vs pro immigration vote #Brexit #VoteRemain #Bremain #VoteLeave #EUreferendum,dev,160,target,4,0,0,0,0
Unfortunately this has just become anti immigration vs pro immigration vote #Brexit #VoteRemain #Bremain #VoteLeave #EUreferendum,dev,160,target,5,0,0,0,0
Unfortunately this has just become anti immigration vs pro immigration vote #Brexit #VoteRemain #Bremain #VoteLeave #EUreferendum,dev,160,target,6,0,0,0,0
"No xtra money for NHS, no immigration cut guarantee, no access to largest political and economic zone in the world. Well done #Brexit",dev,161,control,1,0,0,0,0
"No xtra money for NHS, no immigration cut guarantee, no access to largest political and economic zone in the world. Well done #Brexit",dev,161,control,2,0,0,0,0
"No xtra money for NHS, no immigration cut guarantee, no access to largest political and economic zone in the world. Well done #Brexit",dev,161,control,3,0,0,0,0
"No xtra money for NHS, no immigration cut guarantee, no access to largest political and economic zone in the world. Well done #Brexit",dev,161,target,4,0,0,0,0
"No xtra money for NHS, no immigration cut guarantee, no access to largest political and economic zone in the world. Well done #Brexit",dev,161,target,5,0,0,0,0
"No xtra money for NHS, no immigration cut guarantee, no access to largest political and economic zone in the world. Well done #Brexit",dev,161,target,6,0,0,0,0
The wind of neglect and uncontrolled immigration has sown the whirlwind of EU exit.#Brexit <url>,dev,162,control,1,0,0,0,0
The wind of neglect and uncontrolled immigration has sown the whirlwind of EU exit.#Brexit <url>,dev,162,control,2,0,0,0,0
The wind of neglect and uncontrolled immigration has sown the whirlwind of EU exit.#Brexit <url>,dev,162,control,3,0,0,0,0
The wind of neglect and uncontrolled immigration has sown the whirlwind of EU exit.#Brexit <url>,dev,162,target,4,0,1,1,0
The wind of neglect and uncontrolled immigration has sown the whirlwind of EU exit.#Brexit <url>,dev,162,target,5,0,0,0,0
The wind of neglect and uncontrolled immigration has sown the whirlwind of EU exit.#Brexit <url>,dev,162,target,6,0,0,0,0
Pakistani Muslim leader: “Time is not far when the entire Western civilization would fall” <url> #qanda <user> #Brexit <user>,dev,163,control,1,0,0,1,0
Pakistani Muslim leader: “Time is not far when the entire Western civilization would fall” <url> #qanda <user> #Brexit <user>,dev,163,control,2,0,0,0,0
Pakistani Muslim leader: “Time is not far when the entire Western civilization would fall” <url> #qanda <user> #Brexit <user>,dev,163,control,3,0,0,0,0
Pakistani Muslim leader: “Time is not far when the entire Western civilization would fall” <url> #qanda <user> #Brexit <user>,dev,163,target,4,0,0,1,0
Pakistani Muslim leader: “Time is not far when the entire Western civilization would fall” <url> #qanda <user> #Brexit <user>,dev,163,target,5,0,1,1,0
Pakistani Muslim leader: “Time is not far when the entire Western civilization would fall” <url> #qanda <user> #Brexit <user>,dev,163,target,6,0,0,1,0
"Sky news is interviewing a guy from ""Muslims for Britain"", a pro-#brexit group. Says South Asians don't like EU favoring immigration rules.",dev,164,control,1,0,0,0,0
"Sky news is interviewing a guy from ""Muslims for Britain"", a pro-#brexit group. Says South Asians don't like EU favoring immigration rules.",dev,164,control,2,0,0,0,0
"Sky news is interviewing a guy from ""Muslims for Britain"", a pro-#brexit group. Says South Asians don't like EU favoring immigration rules.",dev,164,control,3,0,0,0,0
"Sky news is interviewing a guy from ""Muslims for Britain"", a pro-#brexit group. Says South Asians don't like EU favoring immigration rules.",dev,164,target,4,0,0,0,0
"Sky news is interviewing a guy from ""Muslims for Britain"", a pro-#brexit group. Says South Asians don't like EU favoring immigration rules.",dev,164,target,5,0,0,0,0
"Sky news is interviewing a guy from ""Muslims for Britain"", a pro-#brexit group. Says South Asians don't like EU favoring immigration rules.",dev,164,target,6,0,0,0,0
"After this #brexit, is there anyway we can deport Mark Lawrenson? I fucking hate him.",dev,165,control,1,0,0,0,1
"After this #brexit, is there anyway we can deport Mark Lawrenson? I fucking hate him.",dev,165,control,2,1,0,0,1
"After this #brexit, is there anyway we can deport Mark Lawrenson? I fucking hate him.",dev,165,control,3,0,0,0,0
"After this #brexit, is there anyway we can deport Mark Lawrenson? I fucking hate him.",dev,165,target,4,1,1,0,1
"After this #brexit, is there anyway we can deport Mark Lawrenson? I fucking hate him.",dev,165,target,5,0,1,0,1
"After this #brexit, is there anyway we can deport Mark Lawrenson? I fucking hate him.",dev,165,target,6,1,1,0,1
"<user> Europe is collapsing, don't worry we welcome refugees here in #Byzantium :))))) #Brexit",dev,166,control,1,0,0,0,0
"<user> Europe is collapsing, don't worry we welcome refugees here in #Byzantium :))))) #Brexit",dev,166,control,2,0,0,0,0
"<user> Europe is collapsing, don't worry we welcome refugees here in #Byzantium :))))) #Brexit",dev,166,control,3,0,0,0,0
"<user> Europe is collapsing, don't worry we welcome refugees here in #Byzantium :))))) #Brexit",dev,166,target,4,1,1,1,0
"<user> Europe is collapsing, don't worry we welcome refugees here in #Byzantium :))))) #Brexit",dev,166,target,5,1,1,1,0
"<user> Europe is collapsing, don't worry we welcome refugees here in #Byzantium :))))) #Brexit",dev,166,target,6,0,0,0,0
"#Brexit its now cheaper for foreign tourists to come to the #UK ☔️ but it's more expensive for me to travel out 🌞😎😫, #doover #whyyouleave",dev,167,control,1,0,0,0,0
"#Brexit its now cheaper for foreign tourists to come to the #UK ☔️ but it's more expensive for me to travel out 🌞😎😫, #doover #whyyouleave",dev,167,control,2,0,0,0,0
"#Brexit its now cheaper for foreign tourists to come to the #UK ☔️ but it's more expensive for me to travel out 🌞😎😫, #doover #whyyouleave",dev,167,control,3,0,0,0,0
"#Brexit its now cheaper for foreign tourists to come to the #UK ☔️ but it's more expensive for me to travel out 🌞😎😫, #doover #whyyouleave",dev,167,target,4,0,0,0,0
"#Brexit its now cheaper for foreign tourists to come to the #UK ☔️ but it's more expensive for me to travel out 🌞😎😫, #doover #whyyouleave",dev,167,target,5,0,0,0,0
"#Brexit its now cheaper for foreign tourists to come to the #UK ☔️ but it's more expensive for me to travel out 🌞😎😫, #doover #whyyouleave",dev,167,target,6,0,0,0,0
So #Brexit is a reclaiming of England's independence!The irony: No country has done more to deny independence in foreign lands than England.,dev,168,control,1,0,0,0,0
So #Brexit is a reclaiming of England's independence!The irony: No country has done more to deny independence in foreign lands than England.,dev,168,control,2,0,0,0,0
So #Brexit is a reclaiming of England's independence!The irony: No country has done more to deny independence in foreign lands than England.,dev,168,control,3,0,0,0,0
So #Brexit is a reclaiming of England's independence!The irony: No country has done more to deny independence in foreign lands than England.,dev,168,target,4,0,0,0,0
So #Brexit is a reclaiming of England's independence!The irony: No country has done more to deny independence in foreign lands than England.,dev,168,target,5,0,0,0,0
So #Brexit is a reclaiming of England's independence!The irony: No country has done more to deny independence in foreign lands than England.,dev,168,target,6,0,0,0,0
|