-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcleantxtBrexit
More file actions
2911 lines (2911 loc) · 206 KB
/
cleantxtBrexit
File metadata and controls
2911 lines (2911 loc) · 206 KB
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
txtRm = {" the brexit episode of with is delayed on until thurs so share \
it like hell ht", " so all the rich are coming out to remain nhs schools etc \
doesnt affect them they can all afford private leaveee b", " thursdays daily \
mail front page\n\nnailed four big eu lies\n\ntomorrowspaperstoday bbcpapers \
referendum ", " leaveee retweet if you are going to leaveee tomorrow lets \
takecontrol projecthope ", " the big banks transnational industry have got \
everything crossed for remain \n\nbrexit httpst",
" come on great uk germany is counting on you leavee brexit leaveee", " \
even tonight im talking to friends encouraging them to vote and trying to \
help them decide it really is all to play for e",
" brexit referendum bye to london as business hub maybe not \n\n ", " \
jamesj96 today is our independence day the day uk votes to leaveee the euan \
union leaveee referendum", " leaveeetheeu leaveeofficial leaveee tomorrow for \
our independence\n\n\n\nreferendum brexit brexit",
" we agree tomorrow is our chance to leaveee leaveee ",
" leaveee staer pack ", "for a stronger uk in an unceain world \
referendum remain strongerin brexit ", " ukip leader nigel farage has pulled \
out of a channel 4 referendum debate just over an hour before transmission",
" that brexit manifesto in private eye remain referendum ", " nick1985 \
get out and vote i will crawl over broken glass to put a cross in the leaveee \
box tomorrow lets do this brexit referendum vo", " proof that one side is \
optimistic and hopeful and the other is trying to scare you into submission \
referendum ", "cant sleep brexit any one out there", "say no to project fear \
the time has come folks to restore uk independence sovereignty leaveee be \
brave brexit ", "this is insanity storm stormy night is so ominous with the \
day ahead referendum thunderandlightning", " after the uk voting malin out i \
can honestly say i trust the uk to make the right decision on the brexit \
tomorrow l", "i guess the one saving grace of brexit is how great itll be \
when the entire population of benidorm gets depoed", " we need control we \
need democracy we need freedom not serfdom leaveee brexit independenc", " \
and so we have it the eu confirms that will be no referendumorm from within \
the eu leaveee to take back control ",
" have not mentioned my views on the referendum up until now leaveee \
brexit", " samedwards1 donald trump thinks uk should leaveee the euthat alone \
should make you vote remain remain referendum",
"what would happen to the eu after a brexit ", "fuck this better not be \
pathetic fallacy referendum strongerin strongeogether",
" are you leaveee or remain", " people probrexit\n\n\n\nnigel \
farage\n\nmarine le pen\n\ntrump \n\nputin\n\nmichael gove\n\nlex \
luthor\n\nvoldemo\n\nthe wicked witch of the west\n\nz",
" its only going to get worse leaveee ", " leaveee he said we wouldnt \
pay it but we did tomorrow is our chance to leaveee and takebackcontrol ",
" come on great uk germany is counting on you leavee brexit leaveee", " \
new poll puts leaveee ahead of remain with just hours left until historic \
brexit vote brexit leaveee", "if leaveee wins the vote we must remember to \
acknowledge gods mercy on our nation by guiding our leaders to give us the \
choice", "forex yen weaker in early asia as brexit vote day arrives forex",
"forex yen weaker in early asia as brexit vote day arrives forex", "br\
exit leaveee watch farages inspiring brexit rallying cry that will make you \
proud to be uk ", " wow its finally here vote for freedomvote for \
democracyvote for independence leaveee in uk leaveee htt", " in this \
referendum weve had bullingdon boys trying to dismiss economic expes as \
elites on guardia", " remain held this back yesterday so that could tell \
the uk turkey was not joining referendum leaveee https", " if uk stays will \
acknowledge the wembley goal referendum tomorrowspaperstoday ", " woken by \
thunderclaps it sounds like the referendumerendoftheworld out there \
referendum", " remember if you dont vote today you forfeit the right to \
complain about who runs your country leaveee brexit eure", "malin has gone \
from loveisland if thats your choice guys then i have no hope for tomorrow \
brexit", "drank too much ", " wow this thunderstorm is epic brexit", " \
juncker uk voters have to know there will be no kind of any renegotiation so \
how can we fight leaveee leaveee", " ukip leader nigel farage has pulled out \
of a channel 4 referendum debate just over an hour before transmission", "bef\
ore you go to vote watch this i wasnt undecided but this is a powerful \
reasoned argument brexit leaveee", " taxivader years ago i never had a vote \
today i do today i will be heard\n\n\n\nbrexit leaveee ", "the eu will not be \
referendumormed uk must leaveee an unreferendumormed eu\n\nleaveee leaveee \
leaveee lexit snpout ", " arronbanks im a financier london is the financial \
capital of the world frankfu is the motoring equivalent of a lada httpstc",
"brexit more like oh heckit my anxiety is out of control",
" leaveee staer pack ", " this is your one only chance to vote out \
the eu\n\n\n\nreferendumerendum leavee leaveee brexit strongerin inorout htt"\
, " the sun seems to be suggesting the first consequence of brexit will be a \
nuclear strike on nohern scotland httpst", "leaveee are so pathetic thinking \
there is going to be a rigged vote clearly not confident remain", " camerons \
deal has been rubished even by the eu president \n\n\n\nreferendum leaveee \
brexit remain inorout labour h", " hope the leaveee carrys the daysounds \
like the eu has been an unmitigated disaster for f", " we speak to the \
nations grafters on the brexit frontline before referendum of a lifetime \
httpstco", " uk has nothing to feartrusted uk warriors say we are safer out \
of eu\n\ntakebackcontrol leaveee referendum https", " wants to leaveee the \
eu the sun newspaper suppos brexitif you need a valid reason to remain ive \
just giv",
" how i feel about the brexit vote tomorrow leaveee brexit lexit ", " \
jamesj96 today is our independence day the day uk votes to leaveee the euan \
union leaveee referendum", " good to hear the bnp get a mention on the \
bbcdebate this was the issue remain tried to use to smear leaveee https", " \
cut through the brexit noise get the facts on the referendum free with the \
economist ", "its pretty close this referendum referendum referendumerendum",
"john olivers brexit takedown wont air in the uk until after eu vote ",
"brexit united kingdom will be free of external control and free to \
manage its own affairs and become a world power again long live the ukgb",
"in the science of civilizations brexit is the euan unions reckoning ",
" thursdays sun front page\n\nindependence day\n\ntomorrowspaperstoday \
bbcpapers referendum ",
" right poll just before the referendum when voted referendum", " \
theinvan amazing referendum image from jean jullien aist behind peace for \
paris symbol on the van soon strongeogether https", " plane with leaveee \
banner flies directly over jo cox memorial in trafalgar sq \n\n\n\nactually \
trolling funerals \n\n\n\nhttps", " lol so junker the cunter says uk has no \
more bargaining power all those on the fence voters have just made up their",
"brexit 1 minute watch please why they hate trump in one minute via ",
"compliance news eu considers implications of brexit concerns over \
impact of leaveee vote do not end at eng ", " the eu is \
broken\n\n\n\nreferendum leaveee brexit inorout imin imout remain ", " \
camerons deal has been rubished even by the eu president \n\n\n\nreferendum \
leaveee brexit remain inorout labour h", " leaveee he said we wouldnt pay it \
but we did tomorrow is our chance to leaveee and takebackcontrol ", "complian\
ce news eu considers implications of brexit concerns over impact of leaveee \
vote do not end at eng ", " sunderland likely midnight if its really close as \
polls suggests one side taking unbeatable lead maybe around referendum",
"in the science of civilizations brexit is the euan unions reckoning ",
" dollydarren i think this should help the undecided referendum ",
"traders set to act after vote on brexit ", " brexit people include \
here is a list of brexit suppoers colourcoded by whether i normally ", "71 \
powerful minutes of documentary evidence collated from variety of sources \
brexit leaveee", "ftse and pound rally on eve of brexit vote ftse 0 and \
pound rally as investors appear increasingly confiden ", " we need control \
we need democracy we need freedom not serfdom leaveee brexit independenc", "p\
olling stations are open from 7am until m today for the referendum \
leaveee remain you decide ", " why has promoted and remain about 5 times \
on my tl today and not promoted leaveee once dodgy methinks", " feel \
incredibly proud to have been pa of the leaveee caign and to have led the \
team in haringey tomorrow let", " are you leaveee or remain", " \
mhairimcalpine the latest independence daily thanks to referendum \
referendum", " before you go to vote watch this i wasnt undecided but this \
is a powerful reasoned argument b", "leaveee insists eu nationals already in \
uk would be able to stay but immigration lawyers say its not so simple ", "o\
nly the big corps want to remain \n\n\n\nthe uk public want brexit not remain \
\n\n\n\nin or out leaveee or remain \n\nuk will survive",
"vote leaveee leaveee brexit ", "in the science of civilizations brexit \
is the euan unions reckoning scientists who study long term tre ", " \
thursdays sun front page\n\nindependence day\n\ntomorrowspaperstoday \
bbcpapers referendum ", " worried youve lostnot got your polling card if ur \
on the electoral roll you can still vote in referendum just go to ur", " \
thursdays daily telegraph business\n\nbanks secret brexit fallback \
dossier\n\ntomorrowspaperstoday bbcpapers referendum https", " brexit will \
win according to top referendum numbercruncher read the full analysis \
reacti", "no doubt the government will extend electoral day by 48 hours \
because its raining referendum",
" brexit the movie fully subtitled and online for free ", "anyone \
genuinely undecided still or thinking of voting brexit referendum", " best \
of luck to our friends in the uk going to the polls tomorrow brexit leaveee",
" hear that thunder its a sign brexit day is nigh", "islamic state \
immigrants expose 99 liars since general election at back of the queue says \
haters brexit", " if you care about the nhs please put an end to an unfair \
eu one chance please leaveee thank you ", "followback beware choppy brexit \
trading banks warn clients forex world news",
" this is a serious storm leaveee brexit",
" i dont like muslims so leaveee", " c4debate as a labour voter im \
shocked you cant secure workers rights without the eu takebackcontrol \
leaveee", " leaveee it will collapse because the bond traders are not \
interested in the eus eurobonds when not if brexit now https", " big day \
tomorrow my opinion why i am voting to leaveee referendum here whether you \
agree or not pls", " you would have half a brain to vote remain two leaders \
who do not know their own minds who offer empty promises leaveee", " leaveee \
davidcameron georgeosborne want you to prop up the \n\n trillion euro \
ponzischeme brexit run httpst",
"if you havent made your mind up yet this made mine up referendum ", " \
where after these jobs we will lose plenty to go round after migrants sent \
home brexit", " feel incredibly proud to have been pa of the leaveee caign \
and to have led the team in haringey tomorrow let", " leaveee it will \
collapse because the bond traders are not interested in the eus eurobonds \
when not if brexit now https", "she met the world with love brendancox \
lovelikejo jocoxvigil uk politics brexit economy syria migrant", " well done \
to you for having the integrity and backbone to suppo leaveee brexit your \
generation others salute you c4debate", "the celeb remain vote isnt based on \
politics its based on im not doing bad jack and any change may affect me and \
thats it referendum", " why would you want your country controlled by the \
anti democratic eu \n\n\n\n referendum leaveee brexit remain inorout h",
" joepattinson the eu is a loserdom leaveee ", " standing by one of \
their bigger lies right to the end they may be dishonest but at least theyre \
consistent https",
" brexit the movie fully subtitled and online for free ",
"joegregory brexit is nigh", " a flavour of the eve of referendum uk \
newspaper front pages\n\ntomorrowspaperstoday bbcpapers \n\n httpst", " new \
poll puts leaveee ahead of remain with just hours left until historic brexit \
vote brexit leaveee", " leaveee staer pack ", " the door is ajar we need \
only push it open and stride into the sunshine me for ", "central banks to \
flood market with cash in case of brexit city traders are braced for their \
most turb money",
"central banks to flood market with cash in case of brexit dailymail \
money", " on c4debate but professor its our money leavee referendum\n\n", "\
damage13 its a wishlist the people deserve a brexit manifesto the absence of \
one proves there is no political will", "in the science of civilizations \
brexit is the euan unions reckoning scientists who study long term tre ", " \
be bold be brave believe leaveee goodnight from 87 please from around \
the globe to banthebb", " major poll brexit remain referendum referendum \
leaveee lets get a real taste for tomorrow when youve voted", "if the \
weather currently hitting london is anything to go by neither vote can save \
us referendum endtimes", "put your cross in the leaveee the euan union box to \
send the strongest message ever that democracy is not for sale brexit the \
eu", " making the business case for brexit johnmillsjml blogs ",
" sollygratia june 2 your choice brexit leaveee independenceday ", " \
make scotlands voice heard were not leaveeing big day ahead for the future of \
scottish uk politics referendum https", "\n\n\n\nright wing jews caigning \
for brexit best reason so far to vote remains in todays referendum", "hands \
up if you thought ldnont mayor matt brown was going to announce his brexit \
today\n\n ", " davidcameron fuck off you twat a few years ago you were \
encouraging a better economy if we were independent you dumb", " four key \
claims made by the remain c demolished in the final hours of the referendum \
battle ", " the eu isnt perfect but leaveeing would burn bridges when we \
need to be building them greenerin strongerin referendum\n\nhttp", "wow i \
think this storm is very symbolic of the day to come referendum remainineu \
unity strongeogether strongerineu referendum", " davidcameron im an \
economist and ill tell you the majority of econ claims of remain are false or \
greatly e", " leaveee breaking the eu will open new membership talks with \
turkey on june 30th leaveee ", "ive followed both the leaveee and remain \
caigns i chose leaveee after months of research i want uk to be great again",
" uk is today characterised by a hate environment deliberately whipped \
up by media politicians ", " if youre undecided about the referendumerendum \
heres a flowcha to help\n\n\n\nremain \n\nstrongerin \n\nreferendum ", " \
wwii heroes dont give away what we fought for urging voters to back brexit \
leaveee\n\n\n\n", " there are some who believe that the uk people arent sma \
or wohy enough to enjoy full democracy dont let th", "closest i can compare \
brexit suspense in my personal experience is to the bushgore electionsfiasco \
but stakes here are bigger forex", "tory brexiteer sarah wollaston switches \
sides to remain over 3m a week claim\n\n\n\nstrongerin votein \
inorout\n\n\n\n", " 1 day to go until the referendum heres reason 1 to \
leaveee the eu to vote leaveee tomorrow\n\n1 we want to save our nhs https",
" if you thought the referendum caign has been ugly you should have \
seen the referendum ", "they should let you vote on twitter facebookpeople \
of any age should be able to vote somehow brexit leaveee remain", "brexit \
bombshell poll puts leaveee seven points ahead of remain hours before \
referendum brexit leaveee", "some truths from mr farage about the \
undemocratic eu parliament essential viewing referendum", " goodnight all \
remember if david cameron tells you to do something its probably best to do \
the complete opposite brexit", "thinking of a brexit vote consider these \
questions its a massive decision with thousands of implications no ", " \
ollytozer biukpolitics nah thanks course they want us to remain they \
benefit from our membership we d", " my three minute brexit pitch via ", "t\
rying not to view the ridiculous rain thunder and lightning currently \
happening in london as a bad omen for the referendum",
" lets see about that shall we\n\nindependenceday\n\nleaveee ", " i am \
so so so proud to be uk but if we leaveee the eu i will be hea broken \
referendum c4debate", " one thing that alarmed during brexit referendum was \
people in vox pops who genuinely expected someone independent to tell them",
" topstories khan and boris clash in referendum debate events to mark \
jo cox bihday more https", " and heres what borisjohnson said about brexit \
4 months before he thought this was his chance to be pm ",
" brexit independence day for uk i hope so endofeu ",
" on eve of brexit vote rival cs race to win over undecideds ", " the \
eu is on a one way project to a unitedstatesofeu\n\n\n\n referendum leaveee \
brexit remain inorout labour ht", "hi our site can also help the undecided \
evaluate either side of the debate ahead of the referendum ", " jkrowling i \
know ive said it before but i love john oliver watch the funniest sharpest \
thing youll see on brexit\n\n\n\n",
" what do you think the uk public will vote in next weeks referendum \
brexit", "taxi driver here in philadelphia who dropped us at the airpo was \
very informed his view brexit remain no vote no voice no input", " brexit \
fears unfounded said remain leaders c4debates referendum brexit not \
strongerin ", " lexit the movie why the left should absolutely oppose this \
neoliberal machine brexit ", "just a few minutes spare to watch video about \
referendum brexit leaveee see from 123536 re eu regulations", " highly \
likely that those who want a disintegration of eu like putin root 4 brexit \
his authoritarian buddy trump also f", " islington elitist takes a moment to \
speak to the little people in the provinces leaveee takebackcontrol httpst",
"uk vapers tempted by brexit but devil lurks in details an apparently \
large segment of the vaping community b ",
"this thunder is no joke uk ldn referendum its warning us to remain \
remain",
"sums up the debate perfectly imo vote leaveee or vote remain but do \
vote ", "sargonofakkad you can tell brexit is in the morning it caused the \
weather to go insane with all the rage about lol",
" yet another good reason to vote leaveee brexit ",
"heavy rain thunder and lightning bodes well for brexit leaveee", " lie \
lie lie another lie\n\n\n\nreferendum leaveee brexit remain inorout \
\n\nlabour voteout projectfear leaveee http", "uk this is your \
future\n\nbrexit leaveee leaveee brexitornot \n\ntomorrow independanceday ",
" baby boomers you have already robbed your children of their future \
dont make it worse by voting for brexit httpstco", " i cant trust the tories \
so im voting remain \n\n\n\nright but you can trust people whose names you \
dont know who you did", " yeah i understand im set on leaveee due to the fact \
the my dads income has been affected by eu regulations on fishing", " watch \
this before you cast your vote\n\nfor gods sake dont throw away your \
country\n\n\n\nleaveee ht",
"its sad that this a legitimate reason for some people to vote leaveee "\
, "i havent really watched the referendum debates for much the same reason \
that ive never watched a serbian film", "the weather means something i think \
its gods way of saying we should remain in the eu referendum", " uk voters \
please vote leaveee tomorrow millions fought and died for our democracy dont \
throw it away leaveee https", " the eu is on a one way project to a \
unitedstatesofeu\n\n\n\n referendum leaveee brexit remain inorout labour ht",
"eu will collapse in the not too distant future but it would be nice to \
put some distance between us and it before that happens brexit", " \
davidcameron leaveee im petrified of staying in justsaying brexit \
stayatyourperil", " referendum polling day arrives counting begins on \
postal votes from just one house in tower hamlets brexit leaveee httpst",
" uk is done if we stay\n\nleaveee ", " if uk stays will \
acknowledge the wembley goal referendum tomorrowspaperstoday ", " proeu \
labour caign says theres no going back wooooh\n\nits an attractive prospect \
for most people leaveee https",
" what do you think the uk public will vote in next weeks referendum \
brexit",
" bullshinebilly brexit facts not fear referendum brexit leaveee \
inorout", " if you dont feel like you know enough to make a decision maybe \
you might trust someone on this list referendum ", " its time to cut the \
jugular to suppressive hea of the failing eu addict to the uk pound brexit \
https", "danielbakereu and nearly all on the brexit side ", "this weather is \
god showing us whats could come if we vote brexit referendum", "if youre \
still undecided our free tool can help you evaluate the key debates ahead of \
the referendum ", " im voting leaveee tomorrow suppo your country and do the \
same vote leaveee on thursday brexit leaveee ", " margotjamesmp uk is one of \
the best countries for lgbt equality we should use influence in the eu to \
suppo equality in other", " khaledax if youre voting to leaveee the eu purely \
based on immgration dont vote xo referendum", "my sisters one comment on the \
eu referendum dont you think brexit sounds like a dank breakfast bar",
" well hes a comedian isnt he\n\nbut not one many of us would pay to \
see ", " well either be eurotrash or lonely brits the fun bit is nobody \
has a single solitary clue which is lesser evil b", " years in the euan \
union\n\n years in ireland\n\n\n\nit would be great if uk managed its exits \
in chronological order", " sjpowell sky news just had a polling expe on who \
says theyre weighting leaveee back\n\n\n\nleaveee ", " well be voting as \
tony benn would have to have our national priorities set by an elected uk \
parliament httpstc", " kofi annan on referendum what unites the people of eu \
is greater than what divides them httpst", "20 reasons you should vote to \
leaveee the euan union\[NonBreakingSpace] via referendum brexit", "vox vox \
sentences brexit through the gift shop the best arguments for and against \
the uk leaveeing the eu a ", " i agree with selina scott if remain win \
whats the point of voting any more c4debate brexit takecontrol leaveee",
"central banks to flood market with cash in case of brexit ", " leaveee \
there is a light at the end of the tunnel leaveee tomorrow for a brighter \
future c4debate\n\n",
"bruh im acc so scared that leaveee might win please uk public remain",
"today uk will vote re brexit a new future or back to olden days we will \
see i hope common sense will prevail",
" has joey essex declared yet \n\nreferendum", " leaveee lets leaveee \
and implement an australian style pointsbased immigration system takecontrol \
", " leaveee staer pack ", "absolutely devastated that bryan adams is a \
brexit suppoer you think you know someone", " proeu labour caign says theres \
no going back wooooh\n\nits an attractive prospect for most people leaveee \
https", " this photograph was taken during wwll the message on the board \
means as much now as it did then referendum leaveee http",
" lets get it over with now referendum ",
"in the science of civilizations brexit is the euan unions reckoning ",
" they also think they will get them to change their mindtonight \
referendum", "my latest blog despite the abuse i have encountered on social \
media from the remain c i am still voting brexit ", "tyger drewhoney on \
c4debate tonight proved young generation does include leaveee brexit \
suppoershats off ", "usdjpy consolidated on quiet tokyo sta despite pending \
brexitremain outcome forex ", " you dont gamble when you have you gamble \
when you dont referendum referendumerendum", "referendum on brexit ", " \
incredible the number of trendies who think voting for the status quo is some \
kind of brave progressive viuous act ", "you havent got a rational thought in \
your head hows that working out for you referendum", "hi canadiankate our \
site can also help the undecided evaluate either side of the debate ahead of \
the referendum ", "you can always rely on the ukweather to set the right tone \
apocalyptic thunderandlightning on the eve of the referendum", " a hilarious \
read for you to enjoy on the evening before the referendumerendum by bl",
" why not us is in eu leaveee",
" the iron lady telling it like it is brexit leaveee ",
" milo on brexit spread it far and wide ",
"bet on the brexit referendum get 30 free from betfred freebets ", "b\
rexit what bullshit shameful exploitation of jo cox death by remain c via ",
"lightning and thunderstorms is this an omen for brexit ", " if youre \
undecided vote in voting leaveee is a oneway ticket voting remain leaveees us \
room to decide in the future e", " people whove worked in adveising for 20 \
years bizarrely think they will win over their opponents on brexit by insult"\
, "memorde im absolutely terrified over brexit ", " flying your plane over \
the memorial tribute to jo cox in trafalgar square is beyond low have some \
self respe",
" we will get more if we leaveee \n\ntakebackcontrol leaveee ",
" what absolute shits", "this is true ", " referendum \
referendumerendum leaveee remain leaveee remain viral caign still going ", " \
leaveee insists eu nationals already in uk would be able to stay but \
immigration lawyers say its not so simple htt",
" kingdss when the country is in danger only cowards play safe brexit",
"if we dont vote to leaveee today we will remain locked in the back of \
the car driven in an unceain direction leaveee",
" ballot opens at 7ami wish u all good luck brexit leaveee", " vofeu \
noneu countries iceland and switzerland look pretty good wheres the povey the \
crime and the terrorism brexit https", " thats it for referendum meetings \
for me\n\n\n\nfarmers please do this in this order\n\n\n\n read \n\n\n\n read \
ful", "in the science of civilizations brexit is the euan unions reckoning ",
" two roads diverged in a wood i\n\ni took the one less travelled \
by\n\nand that has made all the difference\n\nleaveee http", " leaveee read \
german industry calls for free trade deal if we leaveee tomorrow ",
"this storm announcing that the brexit vote is here endofdays", " i \
choose hope over fear democracy over bureaucracy and oppounity over \
obfuscation thats why i will leaveee",
"read this people referendumerendum britexit leaveee ukindependence \
\n\n\n\n", " pms unelected advisor complains about unelected advisors spot \
the irony c4debate httpst", " and i think this will make people who are \
disabled in the uk lounder with a brexit which is great",
" remain no vote no voice no future leaveee leaveee referendum", " \
future general elections will be rather meaningless unless we takebackcontrol \
leaveee 59 of our laws from 1",
" ninmatharu uk eu referendum 20 why im voting brexit ",
" that brexit manifesto in private eye remain referendum ", "disabled \
people angry with jeremypaxman c4debate for tokenistic patronising approach \
to disability referendumerendum referendum ", " well either be eurotrash or \
lonely brits the fun bit is nobody has a single solitary clue which is \
lesser evil b", "if youre still undecided our free tool can help you \
evaluate the key debates ahead of the referendum ",
" the thunder is the looming sound of the referendum in the morning", "\
dont let xenophobes racists irrationalists and the ignorant ruin our \
relationship with our continent remain today referendum", "raaaaa is anyone \
seeing the london thunderstorms monsoon is it a sign brexit ", " referendum \
referendumerendum leaveee remain leaveee remain viral caign still going ", " \
ill be voting remain in referendum for a stronger safer fairer community i \
know who i trust with my humanrights it isnt", " leaveee insists eu \
nationals already in uk would be able to stay but immigration lawyers say \
its not so simple htt", " best of luck to our friends in the uk going to the \
polls tomorrow brexit leaveee",
" arronbanks all the arguments for remain are simply nonsensical \
leaveee", " if uk stays will acknowledge the wembley goal referendum \
tomorrowspaperstoday ",
"thor commands you not to fuck it up referendum marvel remain lightning \
", "my thoughts on the go it alone argument referendum leaveee ", "if youre \
still undecided our free tool can help you evaluate the key debates ahead of \
the referendum ", " the door is ajar we need only push it open and stride \
into the sunshine me for ", " alex massie of the spectator when you make \
the stakes high its always going to be divisive referendum skynewstonight ht"\
, " fidelsilva so you can get depoed ",
" voting to remain is effectively treason brexit leaveee ", "thunder \
and lightning over london even the weathers scripted in this referendum",
"in other news ive won the lotto referendum", " lie lie lie another \
lie\n\n\n\nreferendum leaveee brexit remain inorout \n\nlabour voteout \
projectfear leaveee http",
" uks second biggest newspaper backs leaveee \n\ngo brexit go\n\n\n\n",
"as an slt are u happy your pay is not subject to gender discrmination \
need to thank eu for that strongerin referendum ",
"not sleeping turbulent storm before referendum is this a poent remain"\
, " best wishes for a thumping brexit tomorrow uk \n\nfrom your leaveee \
south african friends\n\nleaveee for uk http", " leaveee he said we wouldnt \
pay it but we did tomorrow is our chance to leaveee and takebackcontrol ", " \
camronlondon im voting out because sadly my parents made a mistake voted \
in they are ",
"referendum take back control by fighting for eu membership via ", " \
referendum referendumerendum leaveee remain leaveee remain viral caign still \
going ", " please remain tomorrow in the referendum ",
" 2 june independence day leaveee voteout brexit referendum ", " \
s\n\no\n\nv\n\ne\n\nr\n\ne\n\ni\n\ng\n\nn\n\nt\n\ny\n\n\n\nwithout it in the \
eu uk general elections are pointless\n\n\n\nleaveee c4debate ", "apparently \
this thunder and lightning is a warning from god to those who are due to \
leaveee today", "chaing remain vs stay\n\n\n\n\n\n\n\nforex gbp gld ", "if \
youre still undecided our free tool can help you evaluate the key debates \
ahead of the referendum ", " misterbilll in the science of civilizations \
brexit is the euan unions reckoning ",
"thunderstorm happening over london referendum signal",
" beautiful graphics beautiful sentiment leaveee brexit ",
"in the science of civilizations brexit is the euan unions reckoning "\
, " farisabubakr remain or brexit", " thanks to everyone out there who has \
worked tirelessly for brexit now get out there and vote to take back control \
believei", " in eu 4 decades its the best its going to get it will not \
change i want hope quality of life leaveee voteremai", " well done to you \
for having the integrity and backbone to suppo leaveee brexit your generation \
others sal", "the storm before the shitstorm referendum", " retweet if \
youre voting to get your uk passpo back\n\n\n\nbbcdebate referendum leaveee \
brexit remain inorout h",
" last voting poll ill be posting after youve voted remain brexit",
"referendum take back control by fighting for eu membership via ",
"friday it is then brexit teamexit euro20 ", "loudest thunder ive ever \
heard currently happening in london right before the brexit vote ", " \
legendary economist who predicted financial crisis and disaster urges you to \
leaveee http", " the english working class will be the first victims of a \
brexit vote theyre the victims now ", " leaveee remain referendumerendum \
referendum freedom and democracy cant be bought and shouldnt be lost leavee \
httpstco", " the uk mood at this moment in time brexit ", "in a few hours \
ill be voting the the dismantling of the nhs and the creation of the euan \
army apparently remain brexit remain", "dont swap a tory under the eu for a \
tory to run amok you have been warned great uk referendum", " if you care \
about the nhs please put an end to an unfair eu one chance please leaveee \
thank you ",
" stuahughes please please please leaveee lets takebackcontrol ", " \
apparently this thunder and lightning is a warning from god to those who are \
due to leaveee today", " unlucky thats wrong vote leaveee is the logical \
vote logic transcends respect for bias corrupt expe",
" i hope you are not suggesting that the blonde lothario is an \
oppounist ", "battle for uk\n\n\n\nsomeone is lying and i dont think its \
juncker\n\n\n\nbrexit ", " in a desperate last minute effo to appeal to \
likeminded people brexit issue caign poster ", " watch this before you cast \
your vote\n\nfor gods sake dont throw away your country\n\n\n\nleaveee ht", " \
will you be a citizencurator again we are doing a brexit citizencurators \
project", "london lightning and thunder referendum ",
" i think thor is warning is against a brexit ",
" little guide to the timings of some of tomorrows referendum results "\
, "central banks to flood market with cash in case of brexit ", "stock \
market today brexit anxiety strikes again stocks close lower us equities \
moved lower on wednesda ", "asia stocks set for lower open as traders brace \
for brexit vote asia markets are expected to open lower on t ", " this \
appeared in a dutch newspaper today its very touching always have liked the \
dutch remain referendum httpst",
" vote leaveee tomorrow regain your sovereignty \n\nbrexit ", "breaking \
the eu will open new membership talks with turkey on june 30th leaveee ", "\
stephen glover why im voting brexit because it could rescue the eu not \
destroy it\[NonBreakingSpace] ", "today we vote on a massive change vote \
with your hea and guts make sure you vote use that right to vote referendum",
" how impoant is the referendum vote finds out in tonights \
educatingjoey 8pm what eu sayin https", "holy shit i thought were \
exaggerating when they said brexit was the end of the world thunder lightning \
london",
"the brexit god has sent storms to punish us\n\nleaveeetakebackcontrol"\
, "i try to avoid politics but brexit calling expe opinions scare tactics \
implies we shouldnt be scared or listen to expes both wrong", " uk \
newspapers have outdone themselves with referendum day front pages via ", "\
i have never heard thunder and lightening like this in london before the sky \
is crying from all the referendum hate ukstorm", "eu referendum everything \
you wanted to know about brexit but were too afraid to ask stocks fx ", " \
cry foul and let slip the eu noose from this sceptred islefreedom freedom \
freedom leaveee today is that day vo", " looking forward to watching this \
tomorrow me and my new buddy bonding over referendum ", " if uk stays \
will acknowledge the wembley goal referendum tomorrowspaperstoday ",
" its bday how the brexit referendum plays out today ", " the night \
before the vote and the ultimate brexit bombshell remain referendum", " if \
you are thinking of voting remain because you believed cameron on fuher \
referendumorm think again leaveee ", " joeyessex new educating joey essex \
what eu sayin \n\nsunday at 8pm \n\nand see my interview with referendum ",
" watch this about uk eu referendum\n\n\n\nreferendum labourinforuk \
johnoliver", " heres some of what its about in any case good night o",
" central banks to flood market with cash in case of brexit ", " the \
no referendumorm speach that has clearly not been on tv for a reason fixed \
fixed camerons plan is a lie brexit noreferendumorm", " jkrowling know your \
place successful working class boys dont sta thinking you can have opinions \
just because you made it https", " alex massie of the spectator when you \
make the stakes high its always going to be divisive referendum \
skynewstonight ht", " ukrants spotted big heading to polling station \
early\n\nwe aint scared of no damn ww3 we won the last 2\n\nbrexit https", "s\
pent the majority of my night having a heated debate with a woman who is \
voting in tomorrow and told me i was wrong leaveee", "i pledge to leaveee on \
23 june takecontrol projecthope brexit referendumerendum ", " remember to \
take your own pen to leaveee cos only pencils will be supplied", " big day \
tomorrow my opinion why i am voting to leaveee referendum here whether you \
agree or not pls", " what does have to teach about referendum in tonights \
educatingjoey on at 8pm ", " wants to leaveee the eu the sun newspaper \
suppos brexitif you need a valid reason to remain ive just giv", " imagine \
how youll feel if you wake up on friday to see remain gutted disappointed sad \
and depressed dont regret your", "thunderstorm pathetic fallacy referendum",
" callumsiddall looks like it is time for my bed cant stress enough \
leaveee brexit takebackcontrol restoredemocracy", " thinking of voting for \
brexit dont forget how the media manipulated you into believing in the iraq \
war ", "eu referendum everything you wanted to know about brexit but were too \
afraid to ask forex trading", " referendum referendumerendum leaveee remain \
leaveee remain viral caign still going ",
"in the science of civilizations brexit is the euan unions reckoning ",
" joeyessex meets at 8pm tonight on for educatingjoey in the \
referendum special what eu sayin https",
" cant wait to put my x in that box\n\nleaveee takebackcontrol", " \
tomorrow is the day finally voting with my hea my head most impoantly my \
gut remain strongerin stronge", " the fact that boris johnson nigel farage \
and michael gove are leading the brexit caign is reason enough to vote rema",
" michaelheaver 39 million watched bbc wembley debate meaning \
faragecameron on itv was most watched of entire referendum", " only 24 hours \
til we see meet for his live interview about referendum in educatingjoey \
https", "project hope of the leaveee caign\n\nsmall business free from eu \
directives free to thrive\n\nleaveee leaveee ", "wouldnt wipe my arse with \
that rag my fatherinlaw reads it but hes not stupid enough to vote to leaveee \
the eu ", " no that is an asteriod hitting iceland again if we brexit",
" boris johnson shares vision for uk science post brexit ",
" most popular migrant destination by country referendum via ", " i \
agree with selina scott if remain win whats the point of voting any more \
c4debate brexit takecontrol leaveee", "the people speak tomorrow good luck to \
both cs thats what democracy is if nothing else we share that referendum \
referendumerendum eudebate", " hey uk are you afraid of freedom making your \
own decisions\n\n\n\nreferendum remain votein votestay https", " are you an \
inny or an outty learns all about referendum on sunday 8pm in the next \
educatingjoey\n\nhttps",
"you may not have liked her but this makes sense vote ", " \
esmailabobakr crude oil prices rise due to us inventories volatile trading \
ahead of brexit un iran heal",
"please great uk dont fuck up today referendum remain", " referendum \
referendumerendum leaveee remain leaveee remain viral caign still going ",
"lordsugar racist leaveee", "maybe because they dont want the future \
generations to end up bleeding from the arsehole thats why leaveee ", "its \
almost impossible to so out an illconceived garden dig it up replant more \
beautifully ", "brexit eahquake eu fatcats fears as scandinavian meps \
suggests uknordic trading bloc woh 30 trillion gdp ",
" leaveee staer pack ", " this is boris johnson before he realised \
that brexit would be his chance to become pm\n\n ", "eu has nothing to offer \
but people \n\nwe have enough of them on our shores \n\nbrexit", " delia \
smith condemns ukips brexit poster as antihuman during channel 4 debate ",
" poll 80 of americans think uk should leaveee the eu ",
" leaveee dont forget to leaveee tomorrow polls are open from 7am m ",
" lovecatford i know everyone is joking about the brexit thunderstorm \
but has anyone looked outside recently", " ehsantoton crude oil prices rise \
due to us inventories volatile trading ahead of brexit paris euronews", " \
davidstanding large lead for leaveee in many polls now\n\nbut only if we all \
go out and vote\n\ndont regret not voting \n\nvote leaveee \n\nbrexit", " \
goodnight all remember if david cameron tells you to do something its \
probably best to do the complete opposite brexit", " everyone needs to read \
this there is more at stake than we ever understood\n\n\n\nleaveee \
\n\nremain\n\nbrexit https", " ask if remain will we have national service \
back because no idiot will join eu army voluntarily ",
" last voting poll ill be posting after youve voted remain brexit",
" how about no leaveee", " callumsiddall looks like it is time for my \
bed cant stress enough leaveee brexit takebackcontrol restoredemocracy", "bre\
xit is a fake revolt workingclass culture is being hijacked to help the \
elite paul mason ", "im nervous about tomorrow could go either way for uk i \
hope we make the right choice referendum", "please take this once in a \
lifetime oppounity to make a ve brave change for the better of our proud \
historic nation leaveee today", " alfiescott yeah i understand im set on \
leaveee due to the fact the my dads income has been affected by eu regulatio"\
, " oh so where have they shown this bit like with leaveee scaring every1 \
with their recent leaflets naming only syriairaq",
" the iron lady telling it like it is brexit leaveee ", " im dutch \
and i endorse brexit because we can be united only in freedom sovereignty \
and rule of law\n\nleaveee httpst", "the brexit vote will be rigged no way \
the club will allow the populous to have control over an exit ", " video \
my little chat with stanley johnson dad of boris about referendum and \
environment httpst", " are you leaveee or remain joel",
" and then boris johnson wrote just in feb this year about brexit ", " \
if uk stays will acknowledge the wembley goal referendum \
tomorrowspaperstoday ", " i think thor is warning us against a brexit ", " \
referendum referendumerendum leaveee remain leaveee remain viral caign still \
going ",
" whose idea was this stupid referendum in the first place referendum "\
, "usdjpy consolidated on quiet tokyo sta despite pending brexitremain \
outcome fed ", "referendum playlist stay by rihanna",
" make sure you go and leaveee tomorrow our independence day on 24 june \
", "holy cow this thunder and lightning in london is crazy pa of me thinks it \
has something to do with the referendum today apocalypse ", "brexit the uk \
decides \n\n in to win \n\nv \n\n1 out to win \n\nor money b more info ", "\
brexit the uk decides \n\n in to win \n\nv \n\n1 out to win \n\nor money b \
more info ",
" once voted am just curious thats all bbcdebate referendum", "if \
tonights weather in london is anything to go by god is mad at the state of \
the referendum", " butterflies only live for two weeks ", " well the \
problem with these people is they live in a distoed world where none of this \
would impact them from a brexit", " eu leaders contempt for democracy only \
one way out leaveee\n\n2\n\nreferendum brexit ", "are you inorout in the \
referendum crowdpacuks test says im 91 out see where you stand ", "satirist \
sma take on brexit a manifestation of deep social schism between anglosaxons \
normans ", " with just one day to go find out why the uk tech industry is \
so opposed to brexit referendum https", " please take a pen to the polling \
station with you tomorrow dont use a pencil brexit ", " so do i but thats \
not the problem its the eu administration that i want shot of eu will still \
be ther", " hope its more than that brexit",
" dont forget to vote on thursday no excuses x referendum ", " eubuster \
juncker had to resign as pm because of spy scandal yet he is eu commission \
president leaveee ",
"its just been announced on the news share share in out brexit impoant \
", " ffs naughty twitter subliminal promotion of pro eu posts blocks \
leaveee sounds about right doesnt it leavee leaveee",
" vofeu dutch poll leader gee wilders wants a nexit after a brexit ", "h\
onestly im way more excited by this storm than the referendum and its highly \
unlikely to have any effect over my future", " after all this is over we \
should make brexit something you invite a lover to do to you", " whatever \
the outcome after seeing the recent behaviour of politicians this referendum \
has staed the fight not ended it", " charltonukip uk sells more outside the \
eu for a record 12 months in a row via referendum leaveee ",
"brexit sounds like a cereal \n\ngotta have a bowl of brexit \
\n\n\n\nremain", " if uk votes for brexit ttip is coming ", " leaveee the \
eu was formed in to keep the tiger germanyinto the cage lord lawson the \
tiger is out", " uk\n\nfinland needs your help \n\nyour brexit will help \
finland fight the tyrannical eu leaveee ",
"im voting yes because imin referendum ",
"lets see if i can get this thingy to work then remain brexit", " \
yeurosceptics its very depressing that literally hours before the referendum \
they are still scaremongering pathetic leaveee https",
" final poll how will you vote in the referendum vote retweet ",
"todays the day democracy is coming home lads leaveee", " one real \
leaveee voter is better than 00 strongerin polling responses its now about \
turnout folks brexit", " why shy voters are more likely to back a vote for \
remain in uks referendum ", "something ive suspected all along the \
referendum is just another populist weapon of mass distraction ", "are you \
inorout in the referendum crowdpacuks test says im 0 out see where you stand \
\n\nbrexit not strongerin", "im voting to remain and by golly i hope you are \
too\n\n\n\n\n\n\n\nremain brexit ", " the chairman of the in caign says \
wages will go up if we leaveee tomorrow c4debate ", " leaveee retweet if you \
are going to leaveee tomorrow lets takecontrol projecthope ", " front page \
of the daily expressvote leaveee today leaveee brexit referendum ", " after \
the uk voting malin out i can honestly say i trust the uk to make the right \
decision on the brexit tomorrow l", "i love u ", "brexit referendum \
strongerin remain leaveee leaveee \n\n\n\nend times has arrived for nudist \
germans\n\n\n\n", "i fear the gods are angry brexit thunderandlightning",
"and turn around thats what its all about bbcdebate referendum ", " \
the eu is on a one way project to a unitedstatesofeu\n\n\n\n referendum \
leaveee brexit remain inorout labour ht",
"the latest charity ngo thanks to harrymoseley referendum brexit",
" brexit is a gamble in itself dont gamble on a gamble", "before you put \
your x in the box today get a cup of tea sit down and watch this referendum \
leaveee ", "please try and give 71 minutes of your time before you visit the \
polling station to watch this referendum", " lewisthomp93 this time tomorrow \
polls will be closed in the most impoant decision of our generation remember \
to leaveee and tak", " thursdays sun front page\n\nindependence \
day\n\ntomorrowspaperstoday bbcpapers referendum ",
" referendum yeah hell sensationalise anything though", " mell0ncollie \
are you inorout in the referendum crowdpacuks test says im 79 out \n\nsee \
where you stand ", " brett eahquake eu fat cats fears as swedish mep \
suggests uknordic trading bloc brexit votel",
" please remain tomorrow in the referendum ", " leaveee he said we \
wouldnt pay it but we did tomorrow is our chance to leaveee and \
takebackcontrol ", "referendum playlist stay another day by east ", " cant \
bear idea that tonight might be last night as pa of eu only when risk losing \
something do we see true value htt", "so they told norway the same \
lies\n\n\n\n\n\n\n\nireland robbie brady wwenxt thunder hoolahan brexit",
" nobody i personally know is voting in\neveryone us leaveee brexit ",
" its just been announced on the news share share in out brexit \
impoant ", "oh no the gods do exist and they are really unhappy at the \
brexit bad vibes thunder thunderandlightning remain", " finally the \
referendum vote is just a few hours away so whos made up their mind \
referendumerendum", " love this listhow can anyone vote stay ", " com brexit \
eu in or eu out together or apa follow s special coverage june 23 \n\n",
" gotta stick together bro lotta kkk around brexit", " brexit grexit \
depaugal leaveee fruckoff czechout oustria finish slovakout latervia byegium"\
, " yes for a common market mislead a lot of ppl back then we expo and we \
leaveee", " leaveee staer pack ", " double bubble for rupe murdoch \
thursdays sun promotes brexit and a new 20th century fox movie ", "11 of \
brexit voters have yet to decide which way they will vote in eu referendum \
dailymail", " have never been so anxious about a vote in my life as i am \
about the referendum growing up in a segregated society eu to m",
" brexit could trigger erosion of lgbt rights top lawyers fear via "\
, "well i love a good thunderstorm as a poent of impending doom referendum",
" shaunmills its shocking i never thought i wld hear such conversations \
people genuinely worried brexit uk not 4 them",
" more local people are voting to leaveee leaveee across posmouth ", " \
jamesj96 today is our independence day the day uk votes to leaveee the euan \
union leaveee referendum", "reluctant remainers that believe another eu is \
possible should take note of juncker referendumusing fuher negotiations \
referendum leaveee", "drinks industry news is the trade turning a blind eye \
to brexits silverlinings ", "the neopixels speak vote remain in todays brexit \
eu referendum strongerineu ", "usdjpy consolidated on quiet tokyo sta despite \
pending brexitremain outcome usdjpy ", " guptajames lily allen called me and \
30 million uk people racist i suggested she was wrong this was response \
leaveee https", " hahaha amazing such utter nonsense also i love how twitter \
is unintentionally promoting the remain caign brexit", " leaveee tomorrow is \
polling day dont miss out on your chance to leaveee polls are open from 7am \
m takecontrol https", "project hope of the leaveee caign\n\nleaveee leaveee \
leaveee snpout \n\na bright brexit future via ", " thursdays sun cover \
promotes brexit and 20th century fox film also owned by murdoch ", "referend\
um \n\n\n\nsick disabled singing \n\nin uk all across eu \n\n the world \
\n\n\n\n", "dramatic brexit", "11 of brexit voters have yet to decide which \
way they will vote in eu referendum an exclusive survey for th ",
" hansigjw mail front page nails the lies brexit ", " farrukhsair plz \
weet and see what you think abt tomorrow poll remain or leaveee to prove \
media is wrong brexit", "referendum playlist dont go by wretch ", " \
thursdays daily mail front page\n\nnailed four big eu \
lies\n\ntomorrowspaperstoday bbcpapers referendum ", "its a dead heat what \
you want to know about the brexit vote in just a few hours uk will go to the \
", " leaveee he said we wouldnt pay it but we did tomorrow is our chance to \
leaveee and takebackcontrol ", " alfiescott yeah i understand im set on \
leaveee due to the fact the my dads income has been affected by eu regulatio"\
, " bookies say its almost all over as gamblers see no brexit ", " \
apparently this thunder and lightning is a warning from god to those who are \
due to leaveee today",
" shell be forgotten by remain caigners after eu referendum leaveee", "r\
easoned argument as to why remaining is a very bad idea brexit leaveee \
referendum", " timothystanley unsurprising americans get the whole libey \
thing and our constitutional ethic is closer to theirs than eus ht", "the eu \
sends a violent thunderstorm and plague upon our houses yes angela and \
jeanclaude we will duly obey lightning referendum strongerin", " there is an \
incredible theory that a brexit wont actually happen even if the public votes \
for it", "oi ive just clocked what brexit actually stands for thought it was \
some fancy political term", " leaveee staer pack ", " in the referendum \
every vote is equal be pa of the biggest decision of a generation make your \
voice heard tomorrow htt", " if youre voting to leaveee because of \
immigration please read this referendum remain ",
" juncker contempt for greeks and brits on display ", " norwegian \
pmbrexit is wrong if they think our success is because were not in eu we are \
vsmall we are in schengen", " leaveee staer pack ", "horrible rainlondon a \
night b4 referendum \n\nr the skies weeping for the results\n\nbrexitornot \
\n\nremain\n\nor\n\nleaveee ", " are you inorout in the referendum \
crowdpacuks test says im 0 out see where you stand \n\nbrexit",
" more threats from president juncker come to heel now uk ", "it \
sounds a lot like the end of the world out there and is forecast to piss it \
down all day referendum voter lines gonna be fun", " lie lie lie another \
lie\n\n\n\nreferendum leaveee brexit remain inorout \n\nlabour voteout \
projectfear leaveee http", " a somaliland man talking about the final night \
of the referendum on itv this is my uk remain ", " dont forget those crafty \
election officials probably have ink erasers too so cast your vote on a \
concrete slab thatll", " are you leaveee or remain", "god must be really \
angry with uk its raining heavy and the thunder is intense better to leaveee \
the eu beast brexit leaveee referendumerendum", "okay so now ive found my \
favourite tweet of the whole caign referendum remain ", " why has promoted \
and remain about 5 times on my tl today and not promoted leaveee once dodgy \
methinks", " there are some who believe that the uk people arent sma or wohy \
enough to enjoy full democracy dont let th", " there are some who believe \
that the uk people arent sma or wohy enough to enjoy full democracy dont let \
th", " poll 80 of americans think uk should leaveee the eu ", "hopefully \
some good news for uk business smes entrepreneurs in todays referendum ", " \
please retweet what has the eu done for us heres reasons to remain in \
referendum\[NonBreakingSpace]", " after the uk voting malin out i can \
honestly say i trust the uk to make the right decision on the brexit tomorrow \
l",
" bullshinebilly brexit facts not fear referendum brexit leaveee \
inorout", " think about it this is the ttip eurocrat she does not \
acknowledge any democratic process brexit leaveee httpstco", "in all \
seriousness though if youre voting brexit you probably read the daily star or \
are old so its ok to be a bit racist", "hi our site can also help the \
undecided evaluate either side of the debate ahead of the referendum ", "the \
night before this referendum there is an actual ominous storm with foreboding \
thunder and everything\n\nbrexit referendum", " leaveee tomorrow lets leaveee \
and fire the unelected elites in brussels takecontrol ",
"howto in the science of civilizations brexit is the euan unions \
reckoning ", " apparently this thunder and lightning is a warning from god \
to those who are due to leaveee today",
"bizznews feds yellen says no special meetings scheduled over brexit ",
" rebeccarose everyone whos undecided or wants to vote leaveee read this \
couldnt have said it better myself leaveee httpstco", " leaveee eu is not \
about trade it is a political project the referendum is a chance to grade \
itit is a failed state https", " its sad that many young people are not \
engaged in politics itll be the older generation making decisions which will \
aff", " and just had two pretty interesting brexit interviews ", "brexit \
could spell disaster for an already absurdly underfunded nhs creeping \
privatisation loss of workers less cash remain", "people trying to connect \
the thunder and lightings in london to the referendum remainineu brexit \
leavee signs ", "leaveee our democratic right to vote is our first right \
if we loose this no pay truly exists leaveee", " stay in and we will be as \
economically dry as greece by leaveee ukmoneytoukfarmers ukindustry ",
" just one more thing referendum brexit lexit watch full video or \
ht", " the sun seems to be suggesting the first consequence of brexit will \
be a nuclear strike on nohern scotland httpst", " make sure you know this \
before you vote to remain kidding yourselves eu can be referendumormed\n\nnot \
strongerin brexit https", "im in because remain referendum imin ", "gain from \
movement in these buzzing assets fintech blockchain brexit gbpusd ", " \
classy from germanys big offer if you vote remain we will accept 1966 \
wembley goal went over the line\n\nhttps", "as pound seesaws over brexit \
should you buy holiday money today\[NonBreakingSpace]\n\n via ", "make today \
uks independence day from juncker schulz and the rest of those domineering eu \
weasels referendum\n\n", " guptajames \n\nwell put\n\nim not voting brexit \
cos i want to stop immigrationbut cos i want to manage it",
"woken up by the loudest thunder ive ever heard clearly brexit went too \
far ", " vote leaveee brexit", " profieuanellis uk university leaders \
confirm suppo for remainineu huge benefit for uk from eu students eu \
research https", " uk \n\nwe are counting on you to brexit\n\nit will set us \
all free\n\nall euan nations\n\nbrexit leaveee eu httpst",
"transylvania joining eu could see one million vires in uk by \
\n\nbrexit", "as a true brit ive seen my country decimated financially by the \
eu its time to take back control as a world leader ", "confused about the \
thunder this is natures way of reducing us to nothing and telling us to vote \
remain in the referendum", " lets make uk great again and vote \
brexit\n\nleaveee nothankseu referendumerendum strongerin remain remain ht",
" youre far more likely to have an eu migrant treating you in the nhs \
than queuing up behind you greenerin referendum\n\nhttp", " turner \
prizewinner wolfgang tillmans wrote us a brilliant column all about brexit \
and his recent poster caign https", " davidcameron im an economist and ill \
tell you the majority of econ claims of remain are false or greatly e",
"its the day leaveee",
"nasty thunderstorm will rain stop play referendum", "tomorrow we face a \
choice defy fearmongering lies and corporatism by choosing to leaveeebrexit \
or defy logic by choosing remain", " i c this trend in news where leaveeing \
of someone or something is headlined as rexit or brexitso if i leaveee from \
sumwhere am i", " final message of referendum from get out there vote \
remain dont let someone else decide your future https",
" this aicle summarises quite well ", " want the latest on the brexit \
polling for the referendum look no fuher ", " looks like the sun will keep \
shinning after brexit\n\n\n\n referendum leaveee inorout imin imout remain \
leaveee https", " thetuc brexit would hit the economy hit wages and \
livelihoods dont gamble your rights away \n\nhttpst", " boris at his best \
what a rousing speech people need to believe in the uk and leaveee leavee", "\
sometimes when you really love something its just best to let it go \
peacefully leaveee brexit euthanisetheeu ", "madeofst0ne the right choice is \
to leaveee the eu serves the cooperate interest not the people", "if youre \
still undecided jakedoolin our free tool can help you evaluate the key \
debates ahead of the referendum ", " farisabubakr logic dictates remain but \
who knows if a brexit happens i stand to lose major", " americas special \
relationship with uk at stake in brexit vote against antiamerican eu ht", " \
jkrowling i know ive said it before but i love john oliver watch the funniest \
sharpest thing youll see on brexit\n\n\n\n", "if undecided this may influence \
you id already decided to leaveee but this confirmed my decision even more ",
"i had a blast east referendum ", " independenceday fingerscrossed \
leaveee leaveeetakecontrol i think that covers it",
"sleepless in surrey referendum storm london ", " cant bear idea that \
tonight might be last night as pa of eu only when risk losing something do we \
see true value htt", "last week tonight with john oliver brexit hbo via ",
" make sure you go and leaveee tomorrow our independence day on 24 \
june ",
" sircornflake bullshit all just spin leaveee were better than the eu "\
, "independence day resurgence is a film depicting the obliteration of the \
united kingdom ", "retweeted marc stevens marcste240677\n\n\n\n make sure \
you go and leaveee tomorrow our ", " will you be a citizencurator again we \
are doing a brexit citizencurators project", " i c this trend in news where \
leaveeing of someone or something is headlined as rexit or brexitso if i \
leaveee from sumwhere am i", " if youre voting to leaveee because of \
immigration please read this referendum remain ", " lie lie lie another \
lie\n\n\n\nreferendum leaveee brexit remain inorout \n\nlabour voteout \
projectfear leaveee http", "retweeted marc stevens marcste240677\n\n\n\n \
german cbi no tariffs after we leaveee die ", " looks like scots voters will \
keep england in eu most scots back eu eu referendum brexit ", " all those \
who are remain remember you are voting on friday brexit leaveee \
referendumerendum referendum ",
"brexit vote count what to watch for as the night unfolds ", "tuc boss \
attacks brexit fibbers and fakes over claims of nhs cash \
boost\n\n\n\nstrongerin votein referendum inorout\n\n\n\n", " also why isnt \
there a shake it all about option on the ballot disappointed referendum",
"sp says brexit would prompt swift downgrade of uk bild reuters ",
"michael burns thanks for the follow the lefts case for brexit ", " we \
the people are the only ones who are going to suffer by staying within the eu \
brexit ", "i really just want the referendum to be over now getting tired of \
the vitriol i wish people could just go about these things in truth peace",
"suitably apocalyptic weather in london on eve of poll for referendum \
brexit patheticfallacy pathetic", " eu vote im voting remain for science \
trade jobs security human rights working with allies the environment prospe",
" thursdays sun front page\n\nindependence day\n\ntomorrowspaperstoday \
bbcpapers referendum ",
" lets see about that shall we\n\nindependenceday\n\nleaveee ", "this \
thunder is insane the gods do exist and they are not happy with this brexit \
malarkey londonthunder", "femalepressure thnx for the referendum ", " \
maindurkin \n\nloved your brexit movie and your talk at the battle of ideas \
real sense in both occasions ",
"either way come friday one side will be left fuming referendum",
" that brexit manifesto in private eye remain referendum ",
"the latest accounting daily thanks to charity referendum",
"its a sign the end is nigh referendum ", " lordsugar why dont you shut \
your mouth who the hell do you think you are you are a nobody get over it ",
" looks like the sun will keep shinning after brexit\n\n\n\n referendum \
leaveee inorout imin imout remain leaveee https",
" on c4debate but professor its our money leavee referendum\n\n", " \
thursdays sun cover promotes brexit and 20th century fox film also owned by \
murdoch ", "advance britannia leaveee ", "economist patrick minford backs \
brexit exactly why im voting leaveee economics referendum ", " the big day \
im voting remain because i believe we are stronger together referendum ", " \
hmsbob are you inorout in the referendum crowdpacuks test says im 92 out see \
where you stand ", " catch breitba news eu manufacturers order eu to do 0 \
tariffs deal with uk eu has threatened uk now it wants to do",
" how about no leaveee", "stephen glover why im voting brexit because \
it could rescue the e magazine news ", " euan cities are lighting up with \
the colours of the union jack to show suppo for the remain caign referendum \
htt", " eu youth unemployment \n\nwhat hope do the children of eu have \
\n\n\n\nreferendum leavee leaveee brexit strongerin h", " why would you want \
your country controlled by the anti democratic eu \n\n\n\n referendum leaveee \
brexit remain inorout h", "many before us have fought so democracy can \
flourish we should seize and treasure this oppounity either way follow your \
gut uk referendum", "hi our site can also help the undecided evaluate either \
side of the debate ahead of the referendum ", " alfiescott yeah i understand \
im set on leaveee due to the fact the my dads income has been affected by eu \
regulatio", " why brexit would be terrible for our caigns for trade food \
energy migration justice \n\n h", " danhannanmep my three minute brexit \
pitch via referendum inorout strongerin remain", "if you really think \
brexit means going back to a time like the pics in peter jane books where \
the commonwealth has waited your mistaken", " if youre in with \
jeremy\n\n\n\nvote remain on thursday\n\n\n\nreferendum \
\n\nincrowd\n\nlabourin ", " cant bear idea that tonight might be last night \
as pa of eu only when risk losing something do we see true value htt", " \
tomorrows is on of the most impoant days in recent uk history every vote will \
count i urge everyone to have their say an", " if we werent in the eu and \
tomorrows vote was to join the eu would you\n\nreferendum referendumerendum \
leaveee remain", " so so sick of being lectured for decades by pricks like \
this this is our chance to say enough leaveee ", " best quote about us prez \
election its the aicle versus the comments section brexit debate mostly \
just a subreddi",
"very impoant just been announced on the news share brexit in out ",
" inst4studies this guy will be voting remain a charlatan voting for \
charlatans unacceptable brexit ",
"in brexit vote david cameron faces problem of his own making via ", "i\
ts not brexit but bratus quo watch john oliver hilariously take on the uks \
leavee brigade via scrollin", "polls open at 7am til m ill be voting leaveee \
brexit what about you voting in eu referendum", "stoked for the \
haarpilluminati based conspiracy theories re this monster storm hitting uk on \
eve of brexit vote", "did know who the hell you are you are barely relevant \
to a politics hack\n\nc4debate \n\n", " where does everyone stand 7 hours \
from polling station openingreferendumerendum c4debate leaveee remain \
referendum", " its your choice \n\nthe big migration debate \n\n\n\n \
referendum leaveee brexit remain inorout labour voteout https",
"gods angry at us proper thunder n lightning referendum", "this \
thunderstorm is the most aggressive i think ive ever seen trying not to see \
this as bad brexit omen for later remain", " hannahbax992 if we vote to \
leaveee we have 2 yrs to agree terms inc trade movement of people its likely \
well still have freedom of m", " jamesj96 today is our independence day the \
day uk votes to leaveee the euan union leaveee referendum", " lucyavfc just \
because someone chooses to leaveee it doesnt automatically make them \
xenophobic or racist", " hannahbax992 we do send money to the eu but its more \
like 190million after and they send back to help our own farming science r"\
, "if we leaveee boris gove ids grayling liamfox etc will be in charge the \
tories who want to privatise the nhs remain",
"the latest i knew did you daily brexit cnntownhall", "jeremy clarkson \
and james may back remain caign \[NonBreakingSpace]video referendum remain \
strongerin remain ", " kofi annan on referendum what unites the people of \
eu is greater than what divides them httpst", " your country needs you vote \
leaveee today to make uk even greater brexit leaveee voteout eur",
" jakirkhan basically are you in or out referendum leaveee remain", " \
the nhs is a national health service not an international health \
service\n\n\n\nnigelfarage leaveee remain leaveee ht", "uks independence day \
hopefully today come on independenceday leaveee leaveeetakecontrol", " \
brexit isnt about nostalgia its about ambition trust me im a historian via \
",
" murdochs rewrites news and facts for antimigrant probrexit agenda mt "\
, " thursdays sun front page\n\nindependence day\n\ntomorrowspaperstoday \
bbcpapers referendum ", "the instagram photos of glasto are actually making \
me cry that im not there i blame brexit",
" man said what u avin for brexit", "a little reminder from mother \
nature about who really has the power on this planet storm thunder brexit \
referendum sameshitdifferentday",
" chrisgiles free to read the economics of brexit in seven chas ",
"it has been half century turkey is waiting for eu membership ", "well \
i was polled once on the phone about referendum but i told a whopper and said \
id leaveee justfohesheerhellofit oops", "people god is angry with us for \
considering brexit is punishing us with ukstorm thats how this theory works \
right remain", " please vote tomorrow\n\ndont let war criminal blair \
meddling eu bureaucrats mad merkel have a good day\n\nleaveee htt", "hope \
this crazy deluge and lightning storm over london is not poentous of days \
ahead for uk referendum ",
"and to think the intellectuallydishonest porayed us as worse \
seldomequals ", " 4 reasons why you should leaveee at the uk brexit \
referendum on june 2 this is not our uk anymore http", "leaveeing eu is the \
biggest domestic risk to our financial stability can you risk that \
strongerin referendum cwu",
"its armageddon in the uk thunder brexit vs remain the heavens have \
opened", "til ill be over the atlantic when the referendum result comes out \
might ask cabin crew if they can get pilots to radio down and find out", "mar\
kets caught in limbo ahead of brexit vote wall street is battening down the \
hatches as britons head to th ", "retweeted louise mensch \
louisemensch\n\n\n\ngerman cbi no tariffs after we leaveee die welt newspaper \
endorses ", " oh no the gods do exist and they are really unhappy at the \
brexit bad vibes thunder thunderandlightning remain",
"my beting remain as brexit \n\nlets see", " dad fought germans and \
japs for our freedom and democracy get it back tomorrow leaveee takecontrol "\
, " theyre all out tonight full moon big thunder storm in london referendum \
nobillnobreak right wing horrors worldwide", " thursdays daily telegraph \
front page\n\nthe time has come\n\ntomorrowspaperstoday bbcpapers referendum \